Symfony Exception

ErrorException ViewException ViewException ViewException

HTTP 500 Internal Server Error

opendir(/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options//251): Failed to open directory: No such file or directory (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/partials/head.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/partials/head.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/partials/head.blade.php)

Exceptions 4

Illuminate\View\ ViewException

Show exception properties
Illuminate\View\ViewException {#4308
  #severity: E_ERROR
}
  1.      * @param bool   $remove  Remove.
  2.      *
  3.      * @return void
  4.      */
  5.     public static function rmdir$path$exclude = array(), $remove true ) {
  6.         $dir file_exists$path ) ? opendir$path ) : false;
  7.         if ( $dir ) {
  8.             $entry = @readdir$dir );
  9.             while ( false !== $entry ) {
  10.                 if ( '.' === $entry || '..' === $entry ) {
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
include('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/index.php (line 17)
  1.  * @var bool
  2.  */
  3. define'WP_USE_THEMES'true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ '/wp-blog-header.php';

Illuminate\View\ ViewException

opendir(/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options//251): Failed to open directory: No such file or directory (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/partials/head.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/partials/head.blade.php)

  1.      * @param bool   $remove  Remove.
  2.      *
  3.      * @return void
  4.      */
  5.     public static function rmdir$path$exclude = array(), $remove true ) {
  6.         $dir file_exists$path ) ? opendir$path ) : false;
  7.         if ( $dir ) {
  8.             $entry = @readdir$dir );
  9.             while ( false !== $entry ) {
  10.                 if ( '.' === $entry || '..' === $entry ) {
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.       <?php echo $__env->make('components/next'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  2.     </div>
  3.   </div>
  4. <?php $__env->stopSection(); ?>
  5. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/single-work.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
include('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/index.php (line 17)
  1.  * @var bool
  2.  */
  3. define'WP_USE_THEMES'true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ '/wp-blog-header.php';

Illuminate\View\ ViewException

opendir(/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options//251): Failed to open directory: No such file or directory (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/partials/head.blade.php)

  1.      * @param bool   $remove  Remove.
  2.      *
  3.      * @return void
  4.      */
  5.     public static function rmdir$path$exclude = array(), $remove true ) {
  6.         $dir file_exists$path ) ? opendir$path ) : false;
  7.         if ( $dir ) {
  8.             $entry = @readdir$dir );
  9.             while ( false !== $entry ) {
  10.                 if ( '.' === $entry || '..' === $entry ) {
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.   $gtm get_field('google_tag_manager''options');
  2. ?>
  3. <!doctype html>
  4. <html class="html" <?php echo e(language_attributes()); ?>>
  5.   <?php echo $__env->make('partials.head'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  6.   <body class="<?php if($debug): ?><?php echo e('has-debug'); ?><?php endif; ?>" style="--color-primary: <?php echo e($primary_color); ?>;">
  7.     
  8.     <?php if($gtm): ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.       <?php echo $__env->make('components/next'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  2.     </div>
  3.   </div>
  4. <?php $__env->stopSection(); ?>
  5. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/single-work.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
include('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/index.php (line 17)
  1.  * @var bool
  2.  */
  3. define'WP_USE_THEMES'true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ '/wp-blog-header.php';

ErrorException

opendir(/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options//251): Failed to open directory: No such file or directory

  1.      * @param bool   $remove  Remove.
  2.      *
  3.      * @return void
  4.      */
  5.     public static function rmdir$path$exclude = array(), $remove true ) {
  6.         $dir file_exists$path ) ? opendir$path ) : false;
  7.         if ( $dir ) {
  8.             $entry = @readdir$dir );
  9.             while ( false !== $entry ) {
  10.                 if ( '.' === $entry || '..' === $entry ) {
  1.      * @throws \ErrorException
  2.      */
  3.     public function handleError($level$message$file ''$line 0$context = [])
  4.     {
  5.         try {
  6.             parent::handleError($level$message$file$line$context);
  7.         } catch (Throwable $e) {
  8.             if (! apply_filters('acorn/throw_error_exception'true$e)) {
  9.                 return false;
  10.             }
HandleExceptions->handleError(2, 'opendir(/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options//251): Failed to open directory: No such file or directory', '/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/Util_File.php', 158)
opendir('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options//251') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/Util_File.php (line 158)
  1.      * @param bool   $remove  Remove.
  2.      *
  3.      * @return void
  4.      */
  5.     public static function rmdir$path$exclude = array(), $remove true ) {
  6.         $dir file_exists$path ) ? opendir$path ) : false;
  7.         if ( $dir ) {
  8.             $entry = @readdir$dir );
  9.             while ( false !== $entry ) {
  10.                 if ( '.' === $entry || '..' === $entry ) {
Util_File::rmdir('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options//251', array()) in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/Util_File.php (line 178)
  1.                 }
  2.                 $full_path $path DIRECTORY_SEPARATOR $entry;
  3.                 if ( @is_dir$full_path ) ) {
  4.                     self::rmdir$full_path$exclude );
  5.                 } else {
  6.                     @unlink$full_path );
  7.                 }
  8.                 $entry = @readdir$dir );
Util_File::rmdir('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options/', array(), false) in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/Util_File.php (line 203)
  1.      * @param array  $exclude Exclude.
  2.      *
  3.      * @return void
  4.      */
  5.     public static function emptydir$path$exclude = array() ) {
  6.         self::rmdir$path$excludefalse );
  7.     }
  8.     /**
  9.      * Check if file is write-able
  10.      *
Util_File::emptydir('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options/', array()) in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/Cache_File.php (line 358)
  1.             $config        Dispatcher::config();
  2.             $sitemap_regex $config->get_string'pgcache.purge.sitemap_regex' );
  3.             $this->_flush_based_on_regex$sitemap_regex );
  4.         } else {
  5.             $flush_dir $group $this->_cache_dir DIRECTORY_SEPARATOR $group DIRECTORY_SEPARATOR $this->_flush_dir;
  6.             Util_File::emptydir$flush_dir$this->_exclude );
  7.         }
  8.         return true;
  9.     }
  1.         foreach ( $flush_groups as $f_group => $nothing ) {
  2.             if ( $this->debug ) {
  3.                 $filename Util_Debug::log'dbcache''flush group ' $f_group );
  4.             }
  5.             $v &= $cache->flush$f_group );
  6.         }
  7.         $this->time_total += $this->wpdb_mixin->timer_stop();
  8.         return $v;
DbCache_WpdbInjection_QueryCaching->_flush_cache_for_sql_group('options', array('wpdb_update' => 'wp_options')) in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/DbCache_WpdbInjection_QueryCaching.php (line 360)
  1.      *
  2.      * @return bool True on success, false on failure.
  3.      */
  4.     public function update$table$data$where$format null$where_format null ) {
  5.         $group $this->_get_group$table );
  6.         $this->_flush_cache_for_sql_group$group, array( 'wpdb_update' => $table ) );
  7.         return $this->next_injection->update$table$data$where$format$where_format );
  8.     }
  9.     /**
  10.      * Deletes data from a database table.
DbCache_WpdbInjection_QueryCaching->update('wp_options', array('option_value' => 'a:2:{s:4:"hash";s:32:"53c257515b155dd437111e7c555ae57b";s:6:"blocks";a:5:{s:11:"core/button";s:0:"";s:14:"core/site-logo";s:0:"";s:18:"core/post-template";s:120:":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}";s:12:"core/columns";s:102:":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}";s:14:"core/pullquote";s:69:":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}";}}'), array('option_name' => '_transient_wp_styles_for_blocks'), null, null) in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/DbCache_WpdbNew.php (line 269)
  1.      *
  2.      * @return mixed The result of the update operation.
  3.      */
  4.     public function update$table$data$where$format null$where_format null ) {
  5.         do_action'w3tc_db_update'$table$data$where$format$where_format );
  6.         return $this->active_processor->update$table$data$where$format$where_format );
  7.     }
  8.     /**
  9.      * Deletes data from a specified table.
  10.      *
DbCache_WpdbNew->update('wp_options', array('option_value' => 'a:2:{s:4:"hash";s:32:"53c257515b155dd437111e7c555ae57b";s:6:"blocks";a:5:{s:11:"core/button";s:0:"";s:14:"core/site-logo";s:0:"";s:18:"core/post-template";s:120:":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}";s:12:"core/columns";s:102:":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}";s:14:"core/pullquote";s:69:":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}";}}'), array('option_name' => '_transient_wp_styles_for_blocks')) in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/option.php (line 964)
  1.                 $update_args['autoload'] = $autoload;
  2.             }
  3.         }
  4.     }
  5.     $result $wpdb->update$wpdb->options$update_args, array( 'option_name' => $option ) );
  6.     if ( ! $result ) {
  7.         return false;
  8.     }
  9.     $notoptions wp_cache_get'notoptions''options' );
update_option('_transient_wp_styles_for_blocks', array('hash' => '53c257515b155dd437111e7c555ae57b', 'blocks' => array('core/button' => '', 'core/site-logo' => '', 'core/post-template' => ':where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}', 'core/columns' => ':where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}', 'core/pullquote' => ':root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}'))) in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/option.php (line 1574)
  1.                     update_option$transient_timeouttime() + $expiration );
  2.                 }
  3.             }
  4.             if ( $update ) {
  5.                 $result update_option$transient_option$value );
  6.             }
  7.         }
  8.     }
  9.     if ( $result ) {
set_transient('wp_styles_for_blocks', array('hash' => '53c257515b155dd437111e7c555ae57b', 'blocks' => array('core/button' => '', 'core/site-logo' => '', 'core/post-template' => ':where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}', 'core/columns' => ':where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}', 'core/pullquote' => ':root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}'))) in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/global-styles-and-settings.php (line 348)
  1.             }
  2.         }
  3.     }
  4.     if ( $update_cache ) {
  5.         set_transient$cache_key$cached );
  6.     }
  7. }
  8. /**
  9.  * Gets the block name from a given theme.json path.
  1.     wp_register_style'global-styles'false );
  2.     wp_add_inline_style'global-styles'$stylesheet );
  3.     wp_enqueue_style'global-styles' );
  4.     // Add each block as an inline css.
  5.     wp_add_global_styles_for_blocks();
  6. }
  7. /**
  8.  * Checks if the editor scripts and styles for all registered block types
  9.  * should be enqueued on the current screen.
  1.                 // Avoid the array_slice() if possible.
  2.                 if ( === $the_['accepted_args'] ) {
  3.                     $value call_user_func$the_['function'] );
  4.                 } elseif ( $the_['accepted_args'] >= $num_args ) {
  5.                     $value call_user_func_array$the_['function'], $args );
  6.                 } else {
  7.                     $value call_user_func_array$the_['function'], array_slice$args0$the_['accepted_args'] ) );
  8.                 }
  9.             }
  10.         } while ( false !== next$this->iterations$nesting_level ] ) );
  1.      *
  2.      * @param array $args Parameters to pass to the callback functions.
  3.      */
  4.     public function do_action$args ) {
  5.         $this->doing_action true;
  6.         $this->apply_filters''$args );
  7.         // If there are recursive calls to the current action, we haven't finished it until we get to the last one.
  8.         if ( ! $this->nesting_level ) {
  9.             $this->doing_action false;
  10.         }
  1.     } elseif ( is_array$arg[0] ) && === count$arg[0] ) && isset( $arg[0][0] ) && is_object$arg[0][0] ) ) {
  2.         // Backward compatibility for PHP4-style passing of `array( &$this )` as action `$arg`.
  3.         $arg[0] = $arg[0][0];
  4.     }
  5.     $wp_filter$hook_name ]->do_action$arg );
  6.     array_pop$wp_current_filter );
  7. }
  8. /**
  1.     /**
  2.      * Fires when scripts and styles are enqueued.
  3.      *
  4.      * @since 2.8.0
  5.      */
  6.     do_action'wp_enqueue_scripts' );
  7. }
  8. /**
  9.  * Prints the styles queue in the HTML head on admin pages.
  10.  *
  1.                 // Avoid the array_slice() if possible.
  2.                 if ( === $the_['accepted_args'] ) {
  3.                     $value call_user_func$the_['function'] );
  4.                 } elseif ( $the_['accepted_args'] >= $num_args ) {
  5.                     $value call_user_func_array$the_['function'], $args );
  6.                 } else {
  7.                     $value call_user_func_array$the_['function'], array_slice$args0$the_['accepted_args'] ) );
  8.                 }
  9.             }
  10.         } while ( false !== next$this->iterations$nesting_level ] ) );
  1.      *
  2.      * @param array $args Parameters to pass to the callback functions.
  3.      */
  4.     public function do_action$args ) {
  5.         $this->doing_action true;
  6.         $this->apply_filters''$args );
  7.         // If there are recursive calls to the current action, we haven't finished it until we get to the last one.
  8.         if ( ! $this->nesting_level ) {
  9.             $this->doing_action false;
  10.         }
  1.     } elseif ( is_array$arg[0] ) && === count$arg[0] ) && isset( $arg[0][0] ) && is_object$arg[0][0] ) ) {
  2.         // Backward compatibility for PHP4-style passing of `array( &$this )` as action `$arg`.
  3.         $arg[0] = $arg[0][0];
  4.     }
  5.     $wp_filter$hook_name ]->do_action$arg );
  6.     array_pop$wp_current_filter );
  7. }
  8. /**
  1.     /**
  2.      * Prints scripts or data in the head tag on the front end.
  3.      *
  4.      * @since 1.5.0
  5.      */
  6.     do_action'wp_head' );
  7. }
  8. /**
  9.  * Fires the wp_footer action.
  10.  *
  1.   <link rel="preload" href="<?= \Roots\asset('fonts/Baikal-UltraCondExtBd.woff2'); ?>" as="font" type="font/woff2" crossorigin="anonymous">
  2.   <meta name="msapplication-TileColor" content="#ffffff">
  3.   <meta name="msapplication-TileImage" content="/wp-content/themes/gl/resourcesfavicon/mstile-144x144.png">
  4.   <meta name="theme-color" content="#ffffff">
  5.   
  6.   <?php echo e(wp_head()); ?>
  7. </head><?php /**PATH /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/partials/head.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.   $gtm get_field('google_tag_manager''options');
  2. ?>
  3. <!doctype html>
  4. <html class="html" <?php echo e(language_attributes()); ?>>
  5.   <?php echo $__env->make('partials.head'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  6.   <body class="<?php if($debug): ?><?php echo e('has-debug'); ?><?php endif; ?>" style="--color-primary: <?php echo e($primary_color); ?>;">
  7.     
  8.     <?php if($gtm): ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.       <?php echo $__env->make('components/next'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  2.     </div>
  3.   </div>
  4. <?php $__env->stopSection(); ?>
  5. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/single-work.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
include('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/index.php (line 17)
  1.  * @var bool
  2.  */
  3. define'WP_USE_THEMES'true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ '/wp-blog-header.php';

Stack Traces 4

[4/4] ViewException
Illuminate\View\ViewException:
opendir(/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options//251): Failed to open directory: No such file or directory (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/partials/head.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/partials/head.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/partials/head.blade.php)

  at /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/Util_File.php:158
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ViewException), 2)
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/2f1c063a93e84021014156743b21975f88680ac7.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/single-work.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php:1)
  at include('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php:106)
  at require_once('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php:19)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/index.php:17)                
[3/4] ViewException
Illuminate\View\ViewException:
opendir(/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options//251): Failed to open directory: No such file or directory (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/partials/head.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/partials/head.blade.php)

  at /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/Util_File.php:158
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ViewException), 3)
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/a8f25698db2786721ec0b39a8c54cf80d6adcd3a.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/layouts/app.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/2f1c063a93e84021014156743b21975f88680ac7.php:11)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/2f1c063a93e84021014156743b21975f88680ac7.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/2f1c063a93e84021014156743b21975f88680ac7.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/2f1c063a93e84021014156743b21975f88680ac7.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/single-work.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php:1)
  at include('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php:106)
  at require_once('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php:19)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/index.php:17)                
[2/4] ViewException
Illuminate\View\ViewException:
opendir(/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options//251): Failed to open directory: No such file or directory (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/partials/head.blade.php)

  at /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/Util_File.php:158
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ErrorException), 4)
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/c8f1aa6014f2e56e821d31cc1d0f89846066acc6.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)', 'gtm' => ''))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/partials/head.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)', 'gtm' => ''))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/a8f25698db2786721ec0b39a8c54cf80d6adcd3a.php:7)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/a8f25698db2786721ec0b39a8c54cf80d6adcd3a.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/a8f25698db2786721ec0b39a8c54cf80d6adcd3a.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/a8f25698db2786721ec0b39a8c54cf80d6adcd3a.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/layouts/app.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/2f1c063a93e84021014156743b21975f88680ac7.php:11)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/2f1c063a93e84021014156743b21975f88680ac7.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/2f1c063a93e84021014156743b21975f88680ac7.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/2f1c063a93e84021014156743b21975f88680ac7.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/single-work.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php:1)
  at include('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php:106)
  at require_once('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php:19)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/index.php:17)                
[1/4] ErrorException
ErrorException:
opendir(/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options//251): Failed to open directory: No such file or directory

  at /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/Util_File.php:158
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2, 'opendir(/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options//251): Failed to open directory: No such file or directory', '/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/Util_File.php', 158, array())
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/roots/acorn/src/Roots/Acorn/Bootstrap/HandleExceptions.php:49)
  at Roots\Acorn\Bootstrap\HandleExceptions->handleError(2, 'opendir(/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options//251): Failed to open directory: No such file or directory', '/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/Util_File.php', 158)
  at opendir('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options//251')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/Util_File.php:158)
  at W3TC\Util_File::rmdir('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options//251', array())
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/Util_File.php:178)
  at W3TC\Util_File::rmdir('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options/', array(), false)
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/Util_File.php:203)
  at W3TC\Util_File::emptydir('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/db/options/', array())
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/Cache_File.php:358)
  at W3TC\Cache_File->flush('options')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/DbCache_WpdbInjection_QueryCaching.php:426)
  at W3TC\DbCache_WpdbInjection_QueryCaching->_flush_cache_for_sql_group('options', array('wpdb_update' => 'wp_options'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/DbCache_WpdbInjection_QueryCaching.php:360)
  at W3TC\DbCache_WpdbInjection_QueryCaching->update('wp_options', array('option_value' => 'a:2:{s:4:"hash";s:32:"53c257515b155dd437111e7c555ae57b";s:6:"blocks";a:5:{s:11:"core/button";s:0:"";s:14:"core/site-logo";s:0:"";s:18:"core/post-template";s:120:":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}";s:12:"core/columns";s:102:":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}";s:14:"core/pullquote";s:69:":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}";}}'), array('option_name' => '_transient_wp_styles_for_blocks'), null, null)
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/plugins/w3-total-cache/DbCache_WpdbNew.php:269)
  at W3TC\DbCache_WpdbNew->update('wp_options', array('option_value' => 'a:2:{s:4:"hash";s:32:"53c257515b155dd437111e7c555ae57b";s:6:"blocks";a:5:{s:11:"core/button";s:0:"";s:14:"core/site-logo";s:0:"";s:18:"core/post-template";s:120:":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}";s:12:"core/columns";s:102:":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}";s:14:"core/pullquote";s:69:":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}";}}'), array('option_name' => '_transient_wp_styles_for_blocks'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/option.php:964)
  at update_option('_transient_wp_styles_for_blocks', array('hash' => '53c257515b155dd437111e7c555ae57b', 'blocks' => array('core/button' => '', 'core/site-logo' => '', 'core/post-template' => ':where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}', 'core/columns' => ':where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}', 'core/pullquote' => ':root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}')))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/option.php:1574)
  at set_transient('wp_styles_for_blocks', array('hash' => '53c257515b155dd437111e7c555ae57b', 'blocks' => array('core/button' => '', 'core/site-logo' => '', 'core/post-template' => ':where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}', 'core/columns' => ':where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}', 'core/pullquote' => ':root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}')))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/global-styles-and-settings.php:348)
  at wp_add_global_styles_for_blocks()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/script-loader.php:2567)
  at wp_enqueue_global_styles('')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/class-wp-hook.php:324)
  at WP_Hook->apply_filters(null, array(''))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/class-wp-hook.php:348)
  at WP_Hook->do_action(array(''))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/plugin.php:517)
  at do_action('wp_enqueue_scripts')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/script-loader.php:2299)
  at wp_enqueue_scripts('')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/class-wp-hook.php:324)
  at WP_Hook->apply_filters('', array(''))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/class-wp-hook.php:348)
  at WP_Hook->do_action(array(''))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/plugin.php:517)
  at do_action('wp_head')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/general-template.php:3192)
  at wp_head()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/c8f1aa6014f2e56e821d31cc1d0f89846066acc6.php:48)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/c8f1aa6014f2e56e821d31cc1d0f89846066acc6.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/c8f1aa6014f2e56e821d31cc1d0f89846066acc6.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)', 'gtm' => ''))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/c8f1aa6014f2e56e821d31cc1d0f89846066acc6.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)', 'gtm' => ''))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/partials/head.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)', 'gtm' => ''))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/a8f25698db2786721ec0b39a8c54cf80d6adcd3a.php:7)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/a8f25698db2786721ec0b39a8c54cf80d6adcd3a.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/a8f25698db2786721ec0b39a8c54cf80d6adcd3a.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/a8f25698db2786721ec0b39a8c54cf80d6adcd3a.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/layouts/app.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/2f1c063a93e84021014156743b21975f88680ac7.php:11)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/2f1c063a93e84021014156743b21975f88680ac7.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/2f1c063a93e84021014156743b21975f88680ac7.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/2f1c063a93e84021014156743b21975f88680ac7.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/single-work.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'CA next bank', 'hide' => false, 'title-hn' => array('hn' => 'h1'), 'thumbnail' => 1217, 'loop' => false, 'color' => '#00f9bf', 'time' => '', 'highlight-media' => array(array('type' => 'image', 'image' => 1218, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1219, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1220, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1221, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1222, 'video' => false, 'awards' => false), array('type' => 'image', 'image' => 1223, 'video' => false, 'awards' => false)), 'blocks' => array(array('acf_fc_layout' => 'media-grid', 'ratio_ratio' => '1.25', 'medias' => array(array('media_type' => 'image', 'media_image' => 1218, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1219, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1220, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1221, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1222, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('media_type' => 'image', 'media_image' => 1223, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'content-awards', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'content' => '<div class="grid row fx-item fx-visible"><div class="section-content col s6 m6 offset-s1 offset-m1"><p>CA next bank is a bank defined as 100% human and 100% digital. It offers its clients high-value services, both in-person and remotely, through multilingual advisors and easy-to-use digital tools. Iconiste energizes the brand’s visual and editorial identity, creating a clear break from traditional banking codes.</p></div></div>', 'awards' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'video', 'media_image' => false, 'media_player' => false, 'media_contain' => false, 'media_video' => array('ID' => 1233, 'id' => 1233, 'title' => 'CAB_VIDEO_HD.webmhd', 'filename' => 'CAB_VIDEO_HD.webmhd.mp4', 'filesize' => 6868922, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/07/CAB_VIDEO_HD.webmhd.mp4', 'link' => 'https://iconiste.studio/work/ca-next-bank/cab_video_hd-webmhd-2/', 'alt' => '', 'author' => '8', 'description' => '', 'caption' => '', 'name' => 'cab_video_hd-webmhd-2', 'status' => 'inherit', 'uploaded_to' => 1216, 'date' => '2025-07-24 07:27:30', 'modified' => '2025-07-24 07:27:30', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 606), 'media_vimeo' => '', 'media_poster' => 1232), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1224, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1225, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1226, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'three-columns-content', 'suptitle' => array('hn' => 'div', 'text-left' => '', 'text-right' => ''), 'columns' => array(array('hn' => 'h2', 'title' => 'Context', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>CA next bank offers a premium, digital positioning. Its digital tools provide multiple ways to connect with advisors or access other services. As a subsidiary of one of Europe’s leading banks and embedded in a multi-currency territory, it aims to simplify life for increasingly active and mobile clients.</p></div></div>'), array('hn' => 'h2', 'title' => 'Challenge', 'content' => '<div class="block-col fx-item fx-visible"><div class="text"><p>How do you differentiate the brand from competitors and develop a visually recognizable universe that clearly emphasizes its competitive advantages? How do you create a comprehensive identity (colors, visuals, graphics, layouts, editorial tone of voice) that reflects this focus on client proximity?</p></div></div>'), array('hn' => 'h2', 'title' => 'Résultat', 'content' => '<section class="section section-content-cols"><div class="grid row"><div class="section-content col s6 m6 offset-s1 offset-m1 fx-group fx-visible"><div class="block-col fx-item fx-visible"><div class="text"><p>Iconiste challenges traditional banking codes and creates a stylistic rupture from conventional communication habits. The agency builds on the current strategy to reinvent visual codes, create the first applications (posters, digital films, website), rethink the brand’s tone of voice, standardize the entire ecosystem, and support the bank throughout its implementation.</p></div></div></div></div></section>'))), array('acf_fc_layout' => 'media-two-columns', 'ratio_ratio' => '1.25', 'medias-left' => array(array('media_type' => 'image', 'media_image' => 1227, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false)), 'medias-right' => array(array('media_type' => 'image', 'media_image' => 1228, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false))), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '5', 'media_type' => 'image', 'media_image' => 1229, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1230, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'media-fullwidth', 'ratio_ratio' => '', 'media_type' => 'image', 'media_image' => 1231, 'media_player' => false, 'media_contain' => false, 'media_video' => false, 'media_vimeo' => '', 'media_poster' => false), array('acf_fc_layout' => 'credits', 'suptitle' => array('text-left' => ''), 'credits-left' => array(array('select-role' => 'Creative Director', 'job' => 'Art Direction', 'name' => 'Paul Brandli'), array('select-role' => 'Creative Director', 'job' => 'Project Managment', 'name' => 'Alexia Albuquerque'), array('select-role' => 'Creative Director', 'job' => 'Copywriting Lead', 'name' => 'Alexis Malalan'), array('select-role' => 'Creative Director', 'job' => 'Strategy and Creative Direction', 'name' => 'David Bader')), 'credits-right' => array(array('select-role' => 'Creative Director', 'job' => 'Motion Design', 'name' => 'Pauline Flahaut'), array('select-role' => 'Creative Director', 'job' => 'Client Management', 'name' => 'Helena Zussini'), array('select-role' => 'Creative Director', 'job' => 'Copywriting DE', 'name' => 'Tim Boin, Helena Zaug'))))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php:1)
  at include('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php:106)
  at require_once('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php:19)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/index.php:17)