Symfony Exception

Trying to access array offset on value of type bool (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php)

Exceptions 5

Illuminate\View\ ViewException

Show exception properties
Illuminate\View\ViewException {#4358
  #severity: E_ERROR
}
  1.         '2560w' => wp_get_attachment_image_url($id'2k')
  2.       );
  3.       $imageData wp_get_attachment_metadata($id);
  4.       $this->ratio $imageData['height'] / $imageData['width'];
  5.       $this->width $imageData['width'];
  6.       $this->height $imageData['height'];
  7.     }
  8.     /**
  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

Trying to access array offset on value of type bool (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php)

  1.         '2560w' => wp_get_attachment_image_url($id'2k')
  2.       );
  3.       $imageData wp_get_attachment_metadata($id);
  4.       $this->ratio $imageData['height'] / $imageData['width'];
  5.       $this->width $imageData['width'];
  6.       $this->height $imageData['height'];
  7.     }
  8.     /**
  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 $__env->startSection('content'); ?>
  2.   <div data-taxi-view>
  3.     <div class="home">
  4.       <?php echo $__env->make('blocks/cover-home', ['data' => $fields['cover-home']], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  5.       <?php echo $__env->make('components/flexible', ['data' => $fields['blocks']['blocks']], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  6.       <?php echo $__env->make('partials/footer'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  7.     </div>
  8.   </div>
  9. <?php $__env->stopSection(); ?>
  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

Trying to access array offset on value of type bool (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php)

  1.         '2560w' => wp_get_attachment_image_url($id'2k')
  2.       );
  3.       $imageData wp_get_attachment_metadata($id);
  4.       $this->ratio $imageData['height'] / $imageData['width'];
  5.       $this->width $imageData['width'];
  6.       $this->height $imageData['height'];
  7.     }
  8.     /**
  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 if(view()->exists($block_name)): ?>
  2.       <?php echo $__env->make($block_name, [
  3.         'data' => $block,
  4.         'index' => $index
  5.       ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  6.       
  7.       <?php
  8.         if (isset($block['suptitle']) && is_array($block['suptitle']) && array_filter($block['suptitle'], fn($v) => !empty($v))) {
  9.           $index++;
  10.         }
  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 $__env->startSection('content'); ?>
  2.   <div data-taxi-view>
  3.     <div class="home">
  4.       <?php echo $__env->make('blocks/cover-home', ['data' => $fields['cover-home']], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  5.       <?php echo $__env->make('components/flexible', ['data' => $fields['blocks']['blocks']], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  6.       <?php echo $__env->make('partials/footer'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  7.     </div>
  8.   </div>
  9. <?php $__env->stopSection(); ?>
  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

Trying to access array offset on value of type bool (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php)

  1.         '2560w' => wp_get_attachment_image_url($id'2k')
  2.       );
  3.       $imageData wp_get_attachment_metadata($id);
  4.       $this->ratio $imageData['height'] / $imageData['width'];
  5.       $this->width $imageData['width'];
  6.       $this->height $imageData['height'];
  7.     }
  8.     /**
  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.             if ($view instanceof View) {
  2.                 return $view->with($data)->render();
  3.             } elseif ($view instanceof Htmlable) {
  4.                 return $view->toHtml();
  5.             } else {
  6.                 return $this->make($view$data)->render();
  7.             }
  8.         } finally {
  9.             $this->currentComponentData $previousComponentData;
  10.         }
  11.     }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(Illuminate\View\AnonymousComponent::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes(['works' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($data['works'])]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4)): ?>
  9. <?php $component $__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4?>
  10. <?php unset($__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4); ?>
  11. <?php endif; ?>
  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 if(view()->exists($block_name)): ?>
  2.       <?php echo $__env->make($block_name, [
  3.         'data' => $block,
  4.         'index' => $index
  5.       ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  6.       
  7.       <?php
  8.         if (isset($block['suptitle']) && is_array($block['suptitle']) && array_filter($block['suptitle'], fn($v) => !empty($v))) {
  9.           $index++;
  10.         }
  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 $__env->startSection('content'); ?>
  2.   <div data-taxi-view>
  3.     <div class="home">
  4.       <?php echo $__env->make('blocks/cover-home', ['data' => $fields['cover-home']], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  5.       <?php echo $__env->make('components/flexible', ['data' => $fields['blocks']['blocks']], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  6.       <?php echo $__env->make('partials/footer'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  7.     </div>
  8.   </div>
  9. <?php $__env->stopSection(); ?>
  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

Trying to access array offset on value of type bool

  1.         '2560w' => wp_get_attachment_image_url($id'2k')
  2.       );
  3.       $imageData wp_get_attachment_metadata($id);
  4.       $this->ratio $imageData['height'] / $imageData['width'];
  5.       $this->width $imageData['width'];
  6.       $this->height $imageData['height'];
  7.     }
  8.     /**
  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, 'Trying to access array offset on value of type bool', '/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php', 83) in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php (line 83)
  1.         '2560w' => wp_get_attachment_image_url($id'2k')
  2.       );
  3.       $imageData wp_get_attachment_metadata($id);
  4.       $this->ratio $imageData['height'] / $imageData['width'];
  5.       $this->width $imageData['width'];
  6.       $this->height $imageData['height'];
  7.     }
  8.     /**
Image->__construct(null, '100vw', '', null, false, 'cover')
  1.             throw $e;
  2.         }
  3.         array_pop($this->buildStack);
  4.         return $reflector->newInstanceArgs($instances);
  5.     }
  6.     /**
  7.      * Resolve all of the dependencies from the ReflectionParameters.
  8.      *
  1.         // We're ready to instantiate an instance of the concrete type registered for
  2.         // the binding. This will instantiate the types, as well as resolve any of
  3.         // its "nested" dependencies recursively until all have gotten resolved.
  4.         if ($this->isBuildable($concrete$abstract)) {
  5.             $object $this->build($concrete);
  6.         } else {
  7.             $object $this->make($concrete);
  8.         }
  9.         // If we defined any extenders for this type, we'll need to spin through them
  1.      */
  2.     protected function resolve($abstract$parameters = [], $raiseEvents true)
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::resolve($abstract$parameters$raiseEvents);
  6.     }
  7.     /**
  8.      * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
  9.      *
  1.      *
  2.      * @throws \Illuminate\Contracts\Container\BindingResolutionException
  3.      */
  4.     public function make($abstract, array $parameters = [])
  5.     {
  6.         return $this->resolve($abstract$parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.      */
  2.     public function make($abstract, array $parameters = [])
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::make($abstract$parameters);
  6.     }
  7.     /**
  8.      * Resolve the given type from the container.
  9.      *
  1.         if (empty(array_diff($parameters$dataKeys))) {
  2.             return new static(...array_intersect_key($dataarray_flip($parameters)));
  3.         }
  4.         return Container::getInstance()->make(static::class, $data);
  5.     }
  6.     /**
  7.      * Extract the constructor parameters for the component.
  8.      *
Component::resolve(array('id' => null, 'maxWidth' => '100vw', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412))) in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/d19f05dcb147aafa712d0a7bca503116d0705ba0.php (line 23)
  1.               <video autoplay muted loop playsinline class="lazy w-full h-full object-cover">
  2.                 <source data-src="<?php echo e($highlight_video['url']); ?>" media="(max-width: 1024px)" type="video/mp4">
  3.               </video>
  4.             <?php else: ?>
  5.               <?php if (isset($component)) { $__componentOriginalcf1fde6bef2907c23498101ce01c0f3f2594e0bd $component; } ?>
  6. <?php $component App\View\Components\Image::resolve(['id' => $thumbnail,'maxWidth' => '100vw'] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
  7. <?php $component->withName('image'); ?>
  8. <?php if ($component->shouldRender()): ?>
  9. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  10. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Image::class))->getConstructor()): ?>
  11. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  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.             if ($view instanceof View) {
  2.                 return $view->with($data)->render();
  3.             } elseif ($view instanceof Htmlable) {
  4.                 return $view->toHtml();
  5.             } else {
  6.                 return $this->make($view$data)->render();
  7.             }
  8.         } finally {
  9.             $this->currentComponentData $previousComponentData;
  10.         }
  11.     }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(Illuminate\View\AnonymousComponent::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes(['works' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($data['works'])]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4)): ?>
  9. <?php $component $__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4?>
  10. <?php unset($__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4); ?>
  11. <?php endif; ?>
  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 if(view()->exists($block_name)): ?>
  2.       <?php echo $__env->make($block_name, [
  3.         'data' => $block,
  4.         'index' => $index
  5.       ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  6.       
  7.       <?php
  8.         if (isset($block['suptitle']) && is_array($block['suptitle']) && array_filter($block['suptitle'], fn($v) => !empty($v))) {
  9.           $index++;
  10.         }
  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 $__env->startSection('content'); ?>
  2.   <div data-taxi-view>
  3.     <div class="home">
  4.       <?php echo $__env->make('blocks/cover-home', ['data' => $fields['cover-home']], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  5.       <?php echo $__env->make('components/flexible', ['data' => $fields['blocks']['blocks']], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  6.       <?php echo $__env->make('partials/footer'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  7.     </div>
  8.   </div>
  9. <?php $__env->stopSection(); ?>
  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 5

[5/5] ViewException
Illuminate\View\ViewException:
Trying to access array offset on value of type bool (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php)

  at /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php:83
  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/b7111cbeb9a0603211114776f90793a51f7b24b8.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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/front-page.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)                
[4/5] ViewException
Illuminate\View\ViewException:
Trying to access array offset on value of type bool (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php)

  at /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php:83
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ViewException), 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/4f14650d20254a925e2dc468b0b1a71979b23f57.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))))
     (/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/components/flexible.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))))
     (/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/b7111cbeb9a0603211114776f90793a51f7b24b8.php:5)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/b7111cbeb9a0603211114776f90793a51f7b24b8.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/b7111cbeb9a0603211114776f90793a51f7b24b8.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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/b7111cbeb9a0603211114776f90793a51f7b24b8.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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/front-page.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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/5] ViewException
Illuminate\View\ViewException:
Trying to access array offset on value of type bool (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php)

  at /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php:83
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ViewException), 5)
     (/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/fd73681124f25f8a3d5c74a909dcd34e0abcc0c7.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'index' => 2, '__currentLoopData' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => '')), 'block' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'loop' => object(stdClass), 'block_name' => 'blocks.works'))
     (/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/blocks/works.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'index' => 2, '__currentLoopData' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => '')), 'block' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'loop' => object(stdClass), 'block_name' => 'blocks.works'))
     (/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/4f14650d20254a925e2dc468b0b1a71979b23f57.php:13)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/4f14650d20254a925e2dc468b0b1a71979b23f57.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/4f14650d20254a925e2dc468b0b1a71979b23f57.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))))
     (/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/4f14650d20254a925e2dc468b0b1a71979b23f57.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))))
     (/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/components/flexible.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))))
     (/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/b7111cbeb9a0603211114776f90793a51f7b24b8.php:5)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/b7111cbeb9a0603211114776f90793a51f7b24b8.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/b7111cbeb9a0603211114776f90793a51f7b24b8.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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/b7111cbeb9a0603211114776f90793a51f7b24b8.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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/front-page.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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/5] ViewException
Illuminate\View\ViewException:
Trying to access array offset on value of type bool (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/components/scroll-works.blade.php)

  at /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php:83
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ErrorException), 6)
     (/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/d19f05dcb147aafa712d0a7bca503116d0705ba0.php', array('__env' => object(Factory), 'app' => object(Application), 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412), 'attributes' => object(ComponentAttributeBag), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
     (/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/components/scroll-works.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412), 'attributes' => object(ComponentAttributeBag), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
     (/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/vendor/illuminate/view/Concerns/ManagesComponents.php:104)
  at Illuminate\View\Factory->renderComponent()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/fd73681124f25f8a3d5c74a909dcd34e0abcc0c7.php:45)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/fd73681124f25f8a3d5c74a909dcd34e0abcc0c7.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/fd73681124f25f8a3d5c74a909dcd34e0abcc0c7.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'index' => 2, '__currentLoopData' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => '')), 'block' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'loop' => object(stdClass), 'block_name' => 'blocks.works'))
     (/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/fd73681124f25f8a3d5c74a909dcd34e0abcc0c7.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'index' => 2, '__currentLoopData' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => '')), 'block' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'loop' => object(stdClass), 'block_name' => 'blocks.works'))
     (/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/blocks/works.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'index' => 2, '__currentLoopData' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => '')), 'block' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'loop' => object(stdClass), 'block_name' => 'blocks.works'))
     (/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/4f14650d20254a925e2dc468b0b1a71979b23f57.php:13)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/4f14650d20254a925e2dc468b0b1a71979b23f57.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/4f14650d20254a925e2dc468b0b1a71979b23f57.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))))
     (/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/4f14650d20254a925e2dc468b0b1a71979b23f57.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))))
     (/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/components/flexible.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))))
     (/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/b7111cbeb9a0603211114776f90793a51f7b24b8.php:5)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/b7111cbeb9a0603211114776f90793a51f7b24b8.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/b7111cbeb9a0603211114776f90793a51f7b24b8.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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/b7111cbeb9a0603211114776f90793a51f7b24b8.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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/front-page.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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/5] ErrorException
ErrorException:
Trying to access array offset on value of type bool

  at /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php:83
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2, 'Trying to access array offset on value of type bool', '/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php', 83, 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, 'Trying to access array offset on value of type bool', '/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php', 83)
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php:83)
  at App\View\Components\Image->__construct(null, '100vw', '', null, false, 'cover')
  at ReflectionClass->newInstanceArgs(array(null, '100vw', '', null, false, 'cover'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/container/Container.php:929)
  at Illuminate\Container\Container->build('App\\View\\Components\\Image')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/container/Container.php:770)
  at Illuminate\Container\Container->resolve('App\\View\\Components\\Image', array('id' => null, 'maxWidth' => '100vw', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), true)
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/roots/acorn/src/Illuminate/Foundation/Application.php:856)
  at Illuminate\Foundation\Application->resolve('App\\View\\Components\\Image', array('id' => null, 'maxWidth' => '100vw', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/container/Container.php:706)
  at Illuminate\Container\Container->make('App\\View\\Components\\Image', array('id' => null, 'maxWidth' => '100vw', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/roots/acorn/src/Illuminate/Foundation/Application.php:841)
  at Illuminate\Foundation\Application->make('App\\View\\Components\\Image', array('id' => null, 'maxWidth' => '100vw', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Component.php:105)
  at Illuminate\View\Component::resolve(array('id' => null, 'maxWidth' => '100vw', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/d19f05dcb147aafa712d0a7bca503116d0705ba0.php:23)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/d19f05dcb147aafa712d0a7bca503116d0705ba0.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/d19f05dcb147aafa712d0a7bca503116d0705ba0.php', array('__env' => object(Factory), 'app' => object(Application), 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412), 'attributes' => object(ComponentAttributeBag), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
     (/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/d19f05dcb147aafa712d0a7bca503116d0705ba0.php', array('__env' => object(Factory), 'app' => object(Application), 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412), 'attributes' => object(ComponentAttributeBag), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
     (/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/components/scroll-works.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412), 'attributes' => object(ComponentAttributeBag), 'slot' => object(HtmlString), '__laravel_slots' => array('__default' => object(HtmlString))))
     (/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/vendor/illuminate/view/Concerns/ManagesComponents.php:104)
  at Illuminate\View\Factory->renderComponent()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/fd73681124f25f8a3d5c74a909dcd34e0abcc0c7.php:45)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/fd73681124f25f8a3d5c74a909dcd34e0abcc0c7.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/fd73681124f25f8a3d5c74a909dcd34e0abcc0c7.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'index' => 2, '__currentLoopData' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => '')), 'block' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'loop' => object(stdClass), 'block_name' => 'blocks.works'))
     (/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/fd73681124f25f8a3d5c74a909dcd34e0abcc0c7.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'index' => 2, '__currentLoopData' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => '')), 'block' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'loop' => object(stdClass), 'block_name' => 'blocks.works'))
     (/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/blocks/works.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'index' => 2, '__currentLoopData' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => '')), 'block' => array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), 'loop' => object(stdClass), 'block_name' => 'blocks.works'))
     (/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/4f14650d20254a925e2dc468b0b1a71979b23f57.php:13)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/4f14650d20254a925e2dc468b0b1a71979b23f57.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/4f14650d20254a925e2dc468b0b1a71979b23f57.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))))
     (/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/4f14650d20254a925e2dc468b0b1a71979b23f57.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))))
     (/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/components/flexible.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)', 'data' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))))
     (/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/b7111cbeb9a0603211114776f90793a51f7b24b8.php:5)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/b7111cbeb9a0603211114776f90793a51f7b24b8.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/b7111cbeb9a0603211114776f90793a51f7b24b8.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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/b7111cbeb9a0603211114776f90793a51f7b24b8.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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/front-page.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => ' ', 'loop' => 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), 'blocks' => array('blocks' => array(array('acf_fc_layout' => 'simple-content', 'suptitle' => array('hn' => 'h1', 'text-left' => 'Strategy & Branding', 'text-right' => 'Iconiste'), 'title' => 'Hello There !', 'fullwidth' => true, 'content' => '<p class="p1">Since 2026, Bader Création has become Studio Iconiste. Same capabilities, same team, more punch, always more independent, and now far more agile!</p><p class="p1">Our strategy, design, and branding team has expanded with specialists and high end photo and video production capabilities. Clients can now entrust us with their entire ecosystem, from brand strategy to the full scope of communications.</p><p class="p1">We’re crazy about creativity, passionate about branding, and creators of global brand communication. What we do is design, copywriting, strategy, and photo and video direction and production.</p><p class="p1">We transform brands to make them ultra strong. With our explosive methodology, we energize their image.</p>', 'slider' => false, 'list' => false, 'link' => array('title' => 'Studio', 'url' => 'https://iconiste.studio/studio/', 'target' => '')), array('acf_fc_layout' => 'works', 'suptitle' => array('hn' => 'h4', 'text-left' => 'Our Work', 'text-right' => 'take a look'), 'hn' => 'h2', 'content' => 'We work on our projects, we cherish them, we perfect them. We want what we present to truly reflect what we’ve created for our clients. Our goal is to see what we’ve built together come to life and grow. Discover our cases.', 'works' => array(2050, 1401, 1946, 1402, 1443, 1441, 1411, 1412)), array('acf_fc_layout' => 'image-content', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Process', 'text-right' => 'not to be rushed'), 'image' => 1949, 'hn' => 'h3', 'title' => 'What really matters', 'type' => 'list', 'content' => '', 'list' => array(array('hn' => 'h2', 'title' => 'Strategy above all!', 'content' => '<p>Strategy is the foundation. A brand is first and foremost a mindset, and it’s also about your audience’s expectations. Positioning is just that: finding your essence and making it align. A good strategy is one that shakes things up.</p>'), array('hn' => 'h2', 'title' => 'Creativity without limit', 'content' => '<p>When we rethink a brand, anything is possible. And that’s exactly what we should do: imagine every aspect of your brand. There’s so much to create, yet too often there’s little courage to do it. We’re here to make choices together that are as thoughtful as they are bold.</p>'), array('hn' => 'h2', 'title' => 'The content? Huge!', 'content' => '<p>Advertising, events, social media, websites. There are so many media. Imagine having a brand logic that coordinates all of this to deliver a single key. A way of working that’s a thousand times more agile, active, and inspiring. This is our Iconic Brand System.</p>'), array('hn' => 'h2', 'title' => 'It\'s you, it\'s us', 'content' => '<p>People are everything. We love creating connections that are, above all, friendly. But meaningful exchange takes cultivation. What if we moved from a studio–client setup to a small group in a very big playground? Branding is a mindset. It’s about working agilely, experimenting, adjusting, and collaborating.</p>')), 'shape' => array('ID' => 327, 'id' => 327, 'title' => 'shape', 'filename' => 'shape.svg', 'filesize' => 1235, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'link' => 'https://iconiste.studio/accueil/shape/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'shape', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-24 17:40:45', 'modified' => '2025-04-24 17:40:45', 'menu_order' => 0, 'mime_type' => 'image/svg+xml', 'type' => 'image', 'subtype' => 'svg+xml', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 217, 'height' => 217, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'medium_large-width' => 217, 'medium_large-height' => 217, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'large-width' => 1024, 'large-height' => 1024, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'sm-width' => 217, 'sm-height' => 217, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'md-width' => 217, 'md-height' => 217, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xl-width' => 217, 'xl-height' => 217, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'xxxl-width' => 217, 'xxxl-height' => 217, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', 'hd-width' => 217, 'hd-height' => 217, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/shape.svg', '2k-width' => 217, '2k-height' => 217))), array('acf_fc_layout' => 'text-highlight', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Vision', 'text-right' => 'creative studio'), 'hn' => 'h2', 'title' => 'Our job? Transforming brands.', 'content' => '<p>We transform brands—whether they’re international, SMEs, or very small businesses. It’s our passion: giving them a unique style that truly represents them. We craft, refine, and imagine your campaigns of tomorrow. But behind this work, there’s you—what drives you forward. And our job is to make that flame visible, dazzling, striking, mesmerizing. Branding is a philosophy of alignment between you, your values, and your audience.</p>', 'has_gallery' => true, 'gallery' => array(1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331)), array('acf_fc_layout' => 'clients', 'color' => 'black', 'suptitle' => array('hn' => 'h2', 'text-left' => 'Our Clients', 'text-right' => 'Thank you!'), 'hn' => 'h3', 'title' => 'Some of our clients', 'logos' => array(array('ID' => 98, 'id' => 98, 'title' => 'path15912', 'filename' => 'path15912.png', 'filesize' => 1301, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'link' => 'https://iconiste.studio/accueil/path15912/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => 'path15912', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-06 19:42:34', 'modified' => '2025-04-06 19:42:34', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 95, 'height' => 27, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'thumbnail-width' => 95, 'thumbnail-height' => 27, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium-width' => 95, 'medium-height' => 27, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'medium_large-width' => 95, 'medium_large-height' => 27, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'large-width' => 95, 'large-height' => 27, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'sm-width' => 95, 'sm-height' => 27, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'md-width' => 95, 'md-height' => 27, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xl-width' => 95, 'xl-height' => 27, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'xxxl-width' => 95, 'xxxl-height' => 27, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', 'hd-width' => 95, 'hd-height' => 27, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/04/path15912.png', '2k-width' => 95, '2k-height' => 27)), array('ID' => 1357, 'id' => 1357, 'title' => 'Morand', 'filename' => 'Morand.png', 'filesize' => 12529, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'link' => 'https://iconiste.studio/accueil/morand/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'morand', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:17', 'modified' => '2025-08-11 16:12:43', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 317, 'height' => 159, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'medium_large-width' => 317, 'medium_large-height' => 159, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'large-width' => 317, 'large-height' => 159, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'sm-width' => 317, 'sm-height' => 159, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'md-width' => 317, 'md-height' => 159, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xl-width' => 317, 'xl-height' => 159, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'xxxl-width' => 317, 'xxxl-height' => 159, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', 'hd-width' => 317, 'hd-height' => 159, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Morand.png', '2k-width' => 317, '2k-height' => 159)), array('ID' => 1348, 'id' => 1348, 'title' => 'Logo_Eldora_700x420', 'filename' => 'Logo_Eldora_700x420.png', 'filesize' => 17837, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'link' => 'https://iconiste.studio/accueil/logo_eldora_700x420/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo_eldora_700x420', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 150, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420-300x113.png', 'medium-width' => 300, 'medium-height' => 113, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'medium_large-width' => 400, 'medium_large-height' => 150, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'large-width' => 400, 'large-height' => 150, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'sm-width' => 400, 'sm-height' => 150, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'md-width' => 400, 'md-height' => 150, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xl-width' => 400, 'xl-height' => 150, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'xxxl-width' => 400, 'xxxl-height' => 150, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', 'hd-width' => 400, 'hd-height' => 150, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo_Eldora_700x420.png', '2k-width' => 400, '2k-height' => 150)), array('ID' => 1350, 'id' => 1350, 'title' => 'Logo', 'filename' => 'Logo.png', 'filesize' => 12587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'link' => 'https://iconiste.studio/accueil/logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 114, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-150x114.png', 'thumbnail-width' => 150, 'thumbnail-height' => 114, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo-300x86.png', 'medium-width' => 300, 'medium-height' => 86, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'medium_large-width' => 400, 'medium_large-height' => 114, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'large-width' => 400, 'large-height' => 114, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'sm-width' => 400, 'sm-height' => 114, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'md-width' => 400, 'md-height' => 114, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xl-width' => 400, 'xl-height' => 114, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'xxxl-width' => 400, 'xxxl-height' => 114, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', 'hd-width' => 400, 'hd-height' => 114, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Logo.png', '2k-width' => 400, '2k-height' => 114)), array('ID' => 1349, 'id' => 1349, 'title' => 'logo-sinerg-1', 'filename' => 'logo-sinerg-1.png', 'filesize' => 6938, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'link' => 'https://iconiste.studio/accueil/logo-sinerg-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'logo-sinerg-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:13', 'modified' => '2025-08-11 16:10:13', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 298, 'height' => 124, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1-150x124.png', 'thumbnail-width' => 150, 'thumbnail-height' => 124, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium-width' => 298, 'medium-height' => 124, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'medium_large-width' => 298, 'medium_large-height' => 124, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'large-width' => 298, 'large-height' => 124, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'sm-width' => 298, 'sm-height' => 124, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'md-width' => 298, 'md-height' => 124, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xl-width' => 298, 'xl-height' => 124, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'xxxl-width' => 298, 'xxxl-height' => 124, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', 'hd-width' => 298, 'hd-height' => 124, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/logo-sinerg-1.png', '2k-width' => 298, '2k-height' => 124)), array('ID' => 1351, 'id' => 1351, 'title' => 'maison-gilliard-social', 'filename' => 'maison-gilliard-social.png', 'filesize' => 53666, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'link' => 'https://iconiste.studio/accueil/maison-gilliard-social/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'maison-gilliard-social', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 448, 'height' => 416, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social-300x279.png', 'medium-width' => 300, 'medium-height' => 279, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'medium_large-width' => 448, 'medium_large-height' => 416, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'large-width' => 448, 'large-height' => 416, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'sm-width' => 448, 'sm-height' => 416, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'md-width' => 448, 'md-height' => 416, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xl-width' => 448, 'xl-height' => 416, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'xxxl-width' => 448, 'xxxl-height' => 416, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', 'hd-width' => 448, 'hd-height' => 416, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/maison-gilliard-social.png', '2k-width' => 448, '2k-height' => 416)), array('ID' => 1343, 'id' => 1343, 'title' => 'CANextBank', 'filename' => 'CANextBank.png', 'filesize' => 22433, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'link' => 'https://iconiste.studio/accueil/canextbank/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'canextbank', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:10', 'modified' => '2025-08-11 16:10:10', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 512, 'height' => 512, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'medium_large-width' => 512, 'medium_large-height' => 512, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'large-width' => 512, 'large-height' => 512, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank-480x480.png', 'sm-width' => 480, 'sm-height' => 480, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'md-width' => 512, 'md-height' => 512, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xl-width' => 512, 'xl-height' => 512, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'xxxl-width' => 512, 'xxxl-height' => 512, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', 'hd-width' => 512, 'hd-height' => 512, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/CANextBank.png', '2k-width' => 512, '2k-height' => 512)), array('ID' => 1342, 'id' => 1342, 'title' => 'SATIGNY', 'filename' => 'SATIGNY.png', 'filesize' => 23255, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'link' => 'https://iconiste.studio/accueil/satigny/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'satigny', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:08', 'modified' => '2025-09-10 14:27:52', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 281, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-300x169.png', 'medium-width' => 300, 'medium-height' => 169, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'medium_large-width' => 500, 'medium_large-height' => 281, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'large-width' => 500, 'large-height' => 281, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY-480x270.png', 'sm-width' => 480, 'sm-height' => 270, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'md-width' => 500, 'md-height' => 281, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xl-width' => 500, 'xl-height' => 281, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'xxxl-width' => 500, 'xxxl-height' => 281, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', 'hd-width' => 500, 'hd-height' => 281, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/SATIGNY.png', '2k-width' => 500, '2k-height' => 281)), array('ID' => 1352, 'id' => 1352, 'title' => 'Sans-titre-1', 'filename' => 'Sans-titre-1.png', 'filesize' => 19563, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'link' => 'https://iconiste.studio/accueil/sans-titre-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'sans-titre-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:14', 'modified' => '2025-08-11 16:10:14', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 116, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-150x116.png', 'thumbnail-width' => 150, 'thumbnail-height' => 116, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1-300x87.png', 'medium-width' => 300, 'medium-height' => 87, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'medium_large-width' => 400, 'medium_large-height' => 116, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'large-width' => 400, 'large-height' => 116, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'sm-width' => 400, 'sm-height' => 116, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'md-width' => 400, 'md-height' => 116, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xl-width' => 400, 'xl-height' => 116, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'xxxl-width' => 400, 'xxxl-height' => 116, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', 'hd-width' => 400, 'hd-height' => 116, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Sans-titre-1.png', '2k-width' => 400, '2k-height' => 116)), array('ID' => 1354, 'id' => 1354, 'title' => 'spg-logo-rvb.png', 'filename' => 'spg-logo-rvb.png.png', 'filesize' => 20639, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'link' => 'https://iconiste.studio/accueil/spg-logo-rvb-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'spg-logo-rvb-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/spg-logo-rvb.png.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1344, 'id' => 1344, 'title' => 'Constellium', 'filename' => 'Constellium.png', 'filesize' => 12334, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'link' => 'https://iconiste.studio/accueil/constellium-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'constellium-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 115, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-150x115.png', 'thumbnail-width' => 150, 'thumbnail-height' => 115, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-300x69.png', 'medium-width' => 300, 'medium-height' => 69, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'medium_large-width' => 500, 'medium_large-height' => 115, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'large-width' => 500, 'large-height' => 115, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium-480x110.png', 'sm-width' => 480, 'sm-height' => 110, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'md-width' => 500, 'md-height' => 115, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xl-width' => 500, 'xl-height' => 115, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'xxxl-width' => 500, 'xxxl-height' => 115, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', 'hd-width' => 500, 'hd-height' => 115, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Constellium.png', '2k-width' => 500, '2k-height' => 115)), array('ID' => 1345, 'id' => 1345, 'title' => 'Fkg', 'filename' => 'Fkg.png', 'filesize' => 27001, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'link' => 'https://iconiste.studio/accueil/fkg-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fkg-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:11', 'modified' => '2025-08-11 16:10:11', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 215, 'height' => 300, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium-width' => 215, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'medium_large-width' => 215, 'medium_large-height' => 300, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'large-width' => 215, 'large-height' => 300, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'sm-width' => 215, 'sm-height' => 300, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'md-width' => 215, 'md-height' => 300, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xl-width' => 215, 'xl-height' => 300, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'xxxl-width' => 215, 'xxxl-height' => 300, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', 'hd-width' => 215, 'hd-height' => 300, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fkg.png', '2k-width' => 215, '2k-height' => 300)), array('ID' => 1353, 'id' => 1353, 'title' => 'Schenk', 'filename' => 'Schenk.png', 'filesize' => 59848, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'link' => 'https://iconiste.studio/accueil/schenk/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'schenk', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:15', 'modified' => '2025-08-11 16:10:15', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 706, 'height' => 346, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-300x147.png', 'medium-width' => 300, 'medium-height' => 147, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'medium_large-width' => 706, 'medium_large-height' => 346, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'large-width' => 706, 'large-height' => 346, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk-480x235.png', 'sm-width' => 480, 'sm-height' => 235, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'md-width' => 706, 'md-height' => 346, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xl-width' => 706, 'xl-height' => 346, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'xxxl-width' => 706, 'xxxl-height' => 346, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', 'hd-width' => 706, 'hd-height' => 346, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Schenk.png', '2k-width' => 706, '2k-height' => 346)), array('ID' => 1356, 'id' => 1356, 'title' => '504-armin-strom-logo-juwelierlauferminden', 'filename' => '504-armin-strom-logo-juwelierlauferminden.png', 'filesize' => 12247, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'link' => 'https://iconiste.studio/accueil/504-armin-strom-logo-juwelierlauferminden/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => '504-armin-strom-logo-juwelierlauferminden', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:10:16', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden-300x150.png', 'medium-width' => 300, 'medium-height' => 150, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'medium_large-width' => 400, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'large-width' => 400, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'sm-width' => 400, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'md-width' => 400, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xl-width' => 400, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'xxxl-width' => 400, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', 'hd-width' => 400, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/504-armin-strom-logo-juwelierlauferminden.png', '2k-width' => 400, '2k-height' => 200)), array('ID' => 1347, 'id' => 1347, 'title' => 'Cotecna', 'filename' => 'Cotecna.png', 'filesize' => 10080, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'link' => 'https://iconiste.studio/accueil/cotecna/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'cotecna', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 492, 'height' => 102, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-150x102.png', 'thumbnail-width' => 150, 'thumbnail-height' => 102, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-300x62.png', 'medium-width' => 300, 'medium-height' => 62, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'medium_large-width' => 492, 'medium_large-height' => 102, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'large-width' => 492, 'large-height' => 102, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna-480x100.png', 'sm-width' => 480, 'sm-height' => 100, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'md-width' => 492, 'md-height' => 102, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xl-width' => 492, 'xl-height' => 102, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'xxxl-width' => 492, 'xxxl-height' => 102, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', 'hd-width' => 492, 'hd-height' => 102, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Cotecna.png', '2k-width' => 492, '2k-height' => 102)), array('ID' => 1346, 'id' => 1346, 'title' => 'RETRIPA', 'filename' => 'RETRIPA.png', 'filesize' => 32457, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'link' => 'https://iconiste.studio/accueil/retripa/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'retripa', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:12', 'modified' => '2025-08-11 16:10:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 480, 'height' => 268, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA-300x168.png', 'medium-width' => 300, 'medium-height' => 168, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'medium_large-width' => 480, 'medium_large-height' => 268, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'large-width' => 480, 'large-height' => 268, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'sm-width' => 480, 'sm-height' => 268, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'md-width' => 480, 'md-height' => 268, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xl-width' => 480, 'xl-height' => 268, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'xxxl-width' => 480, 'xxxl-height' => 268, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', 'hd-width' => 480, 'hd-height' => 268, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/RETRIPA.png', '2k-width' => 480, '2k-height' => 268)), array('ID' => 1355, 'id' => 1355, 'title' => 'Unknown-1', 'filename' => 'Unknown-1.png', 'filesize' => 28315, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'link' => 'https://iconiste.studio/accueil/unknown-1/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'unknown-1', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:10:16', 'modified' => '2025-08-11 16:14:33', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 547, 'height' => 101, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-150x101.png', 'thumbnail-width' => 150, 'thumbnail-height' => 101, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-300x55.png', 'medium-width' => 300, 'medium-height' => 55, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'medium_large-width' => 547, 'medium_large-height' => 101, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'large-width' => 547, 'large-height' => 101, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1-480x89.png', 'sm-width' => 480, 'sm-height' => 89, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'md-width' => 547, 'md-height' => 101, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xl-width' => 547, 'xl-height' => 101, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'xxxl-width' => 547, 'xxxl-height' => 101, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', 'hd-width' => 547, 'hd-height' => 101, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Unknown-1.png', '2k-width' => 547, '2k-height' => 101)), array('ID' => 1368, 'id' => 1368, 'title' => 'Stoneweg', 'filename' => 'Stoneweg.png', 'filesize' => 9991, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'link' => 'https://iconiste.studio/accueil/stoneweg/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'stoneweg', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:12', 'modified' => '2025-08-11 16:23:12', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 185, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium-width' => 273, 'medium-height' => 185, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'medium_large-width' => 273, 'medium_large-height' => 185, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'large-width' => 273, 'large-height' => 185, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'sm-width' => 273, 'sm-height' => 185, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'md-width' => 273, 'md-height' => 185, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xl-width' => 273, 'xl-height' => 185, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'xxxl-width' => 273, 'xxxl-height' => 185, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', 'hd-width' => 273, 'hd-height' => 185, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Stoneweg.png', '2k-width' => 273, '2k-height' => 185)), array('ID' => 1369, 'id' => 1369, 'title' => 'Breguet-Logo', 'filename' => 'Breguet-Logo.png', 'filesize' => 33526, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'link' => 'https://iconiste.studio/accueil/breguet-logo/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'breguet-logo', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:23:19', 'modified' => '2025-08-11 16:23:19', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 360, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-300x216.png', 'medium-width' => 300, 'medium-height' => 216, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'medium_large-width' => 500, 'medium_large-height' => 360, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'large-width' => 500, 'large-height' => 360, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo-480x346.png', 'sm-width' => 480, 'sm-height' => 346, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'md-width' => 500, 'md-height' => 360, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xl-width' => 500, 'xl-height' => 360, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'xxxl-width' => 500, 'xxxl-height' => 360, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', 'hd-width' => 500, 'hd-height' => 360, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Breguet-Logo.png', '2k-width' => 500, '2k-height' => 360)), array('ID' => 1374, 'id' => 1374, 'title' => 'ville-lausanne', 'filename' => 'ville-lausanne-1.png', 'filesize' => 12969, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'link' => 'https://iconiste.studio/accueil/ville-lausanne-2/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'ville-lausanne-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:38', 'modified' => '2025-08-11 16:47:38', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 252, 'height' => 120, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1-150x120.png', 'thumbnail-width' => 150, 'thumbnail-height' => 120, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium-width' => 252, 'medium-height' => 120, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'medium_large-width' => 252, 'medium_large-height' => 120, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'large-width' => 252, 'large-height' => 120, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'sm-width' => 252, 'sm-height' => 120, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'md-width' => 252, 'md-height' => 120, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xl-width' => 252, 'xl-height' => 120, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'xxxl-width' => 252, 'xxxl-height' => 120, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', 'hd-width' => 252, 'hd-height' => 120, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/ville-lausanne-1.png', '2k-width' => 252, '2k-height' => 120)), array('ID' => 1375, 'id' => 1375, 'title' => 'FELCO', 'filename' => 'FELCO.png', 'filesize' => 17567, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'link' => 'https://iconiste.studio/accueil/felco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'felco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 273, 'height' => 200, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium-width' => 273, 'medium-height' => 200, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'medium_large-width' => 273, 'medium_large-height' => 200, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'large-width' => 273, 'large-height' => 200, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'sm-width' => 273, 'sm-height' => 200, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'md-width' => 273, 'md-height' => 200, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xl-width' => 273, 'xl-height' => 200, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'xxxl-width' => 273, 'xxxl-height' => 200, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', 'hd-width' => 273, 'hd-height' => 200, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FELCO.png', '2k-width' => 273, '2k-height' => 200)), array('ID' => 1376, 'id' => 1376, 'title' => 'Fenaco', 'filename' => 'Fenaco.png', 'filesize' => 7941, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'link' => 'https://iconiste.studio/accueil/fenaco/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fenaco', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:40', 'modified' => '2025-08-11 16:47:40', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 450, 'height' => 112, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-150x112.png', 'thumbnail-width' => 150, 'thumbnail-height' => 112, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco-300x75.png', 'medium-width' => 300, 'medium-height' => 75, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'medium_large-width' => 450, 'medium_large-height' => 112, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'large-width' => 450, 'large-height' => 112, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'sm-width' => 450, 'sm-height' => 112, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'md-width' => 450, 'md-height' => 112, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xl-width' => 450, 'xl-height' => 112, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'xxxl-width' => 450, 'xxxl-height' => 112, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', 'hd-width' => 450, 'hd-height' => 112, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Fenaco.png', '2k-width' => 450, '2k-height' => 112)), array('ID' => 1377, 'id' => 1377, 'title' => 'FTI', 'filename' => 'FTI.png', 'filesize' => 10690, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'link' => 'https://iconiste.studio/accueil/fti/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fti', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 400, 'height' => 400, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI-300x300.png', 'medium-width' => 300, 'medium-height' => 300, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'medium_large-width' => 400, 'medium_large-height' => 400, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'large-width' => 400, 'large-height' => 400, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'sm-width' => 400, 'sm-height' => 400, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'md-width' => 400, 'md-height' => 400, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xl-width' => 400, 'xl-height' => 400, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'xxxl-width' => 400, 'xxxl-height' => 400, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', 'hd-width' => 400, 'hd-height' => 400, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FTI.png', '2k-width' => 400, '2k-height' => 400)), array('ID' => 1378, 'id' => 1378, 'title' => 'FVE.png', 'filename' => 'FVE.png.png', 'filesize' => 17327, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'link' => 'https://iconiste.studio/accueil/fve-png/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'fve-png', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:41', 'modified' => '2025-08-11 16:47:41', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 295, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-300x177.png', 'medium-width' => 300, 'medium-height' => 177, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'medium_large-width' => 500, 'medium_large-height' => 295, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'large-width' => 500, 'large-height' => 295, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png-480x283.png', 'sm-width' => 480, 'sm-height' => 283, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'md-width' => 500, 'md-height' => 295, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xl-width' => 500, 'xl-height' => 295, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'xxxl-width' => 500, 'xxxl-height' => 295, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', 'hd-width' => 500, 'hd-height' => 295, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/FVE.png.png', '2k-width' => 500, '2k-height' => 295)), array('ID' => 1379, 'id' => 1379, 'title' => 'LA-SOURCE', 'filename' => 'LA-SOURCE.png', 'filesize' => 3311, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'link' => 'https://iconiste.studio/accueil/la-source/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'la-source', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 181, 'height' => 181, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE-150x150.png', 'thumbnail-width' => 150, 'thumbnail-height' => 150, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium-width' => 181, 'medium-height' => 181, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'medium_large-width' => 181, 'medium_large-height' => 181, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'large-width' => 181, 'large-height' => 181, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'sm-width' => 181, 'sm-height' => 181, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'md-width' => 181, 'md-height' => 181, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xl-width' => 181, 'xl-height' => 181, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'xxxl-width' => 181, 'xxxl-height' => 181, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', 'hd-width' => 181, 'hd-height' => 181, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/LA-SOURCE.png', '2k-width' => 181, '2k-height' => 181)), array('ID' => 1380, 'id' => 1380, 'title' => 'Swissvaution', 'filename' => 'Swissvaution.png', 'filesize' => 12880, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'link' => 'https://iconiste.studio/accueil/swissvaution/', 'alt' => '', 'author' => '5', 'description' => '', 'caption' => '', 'name' => 'swissvaution', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-08-11 16:47:42', 'modified' => '2025-08-11 16:47:42', 'menu_order' => 0, 'mime_type' => 'image/png', 'type' => 'image', 'subtype' => 'png', 'icon' => 'https://iconiste.studio/wp-includes/images/media/default.png', 'width' => 500, 'height' => 132, 'sizes' => array('thumbnail' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-150x132.png', 'thumbnail-width' => 150, 'thumbnail-height' => 132, 'medium' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-300x79.png', 'medium-width' => 300, 'medium-height' => 79, 'medium_large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'medium_large-width' => 500, 'medium_large-height' => 132, 'large' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'large-width' => 500, 'large-height' => 132, 'sm' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution-480x127.png', 'sm-width' => 480, 'sm-height' => 127, 'md' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'md-width' => 500, 'md-height' => 132, 'xl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xl-width' => 500, 'xl-height' => 132, 'xxxl' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'xxxl-width' => 500, 'xxxl-height' => 132, 'hd' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', 'hd-width' => 500, 'hd-height' => 132, '2k' => 'https://iconiste.studio/wp-content/uploads/2025/08/Swissvaution.png', '2k-width' => 500, '2k-height' => 132))), 'link' => ''))), 'image' => 68, 'cover-home' => array('title' => ' ', 'type' => 'slider', 'loop' => 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), 'loop_mobile' => false, 'image' => 68, 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), 'media_vimeo' => 'https://player.vimeo.com/progressive_redirect/playback/1073696670/rendition/1080p/file.mp4?loc=external&oauth2_token_id=1786619430&signature=4c06773f3f96a7e6e440c8d121458e3ebbde524d9090bcc7f1891354597b0f60', 'sections' => false, 'type' => 'slider', 'slider' => array(array('image' => 1757, 'loop' => array('ID' => 1761, 'id' => 1761, 'title' => 'Andros', 'filename' => 'Andros-1.mp4', 'filesize' => 5173443, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Andros-1.mp4', 'link' => 'https://iconiste.studio/accueil/andros-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'andros-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-17 13:02:56', 'modified' => '2025-09-17 13:02:56', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => false, 'overlay' => false, 'delay' => '', 'link' => array(2050)), array('image' => 1818, 'loop' => array('ID' => 1819, 'id' => 1819, 'title' => 'Vinzel', 'filename' => 'Vinzel.mp4', 'filesize' => 412387, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Vinzel.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:19:26', 'modified' => '2025-10-08 14:19:26', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2079, 'id' => 2079, 'title' => 'Vinzel_Mobile_Home-page', 'filename' => 'Vinzel_Mobile_Home-page.mp4', 'filesize' => 1468683, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Vinzel_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/vinzel_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'vinzel_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:34:08', 'modified' => '2025-11-28 10:34:08', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1946)), array('image' => 1334, 'loop' => array('ID' => 1837, 'id' => 1837, 'title' => 'schenk2-2', 'filename' => 'schenk2-2.mp4', 'filesize' => 10637889, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/schenk2-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk2-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk2-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:39:02', 'modified' => '2025-10-08 14:39:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2063, 'id' => 2063, 'title' => 'Schenk_Mobile_Home-page-2', 'filename' => 'Schenk_Mobile_Home-page-2.mp4', 'filesize' => 7950558, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Schenk_Mobile_Home-page-2.mp4', 'link' => 'https://iconiste.studio/accueil/schenk_mobile_home-page-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'schenk_mobile_home-page-2', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 08:25:02', 'modified' => '2025-11-28 08:25:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1401)), array('image' => 1829, 'loop' => array('ID' => 1830, 'id' => 1830, 'title' => 'FKG_Change the Game-purple', 'filename' => 'FKG_Change-the-Game-purple.mp4', 'filesize' => 8811473, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/FKG_Change-the-Game-purple.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_change-the-game-purple/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_change-the-game-purple', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:34:02', 'modified' => '2025-10-08 14:34:02', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2065, 'id' => 2065, 'title' => 'FKG_Mobile_Home-page', 'filename' => 'FKG_Mobile_Home-page.mp4', 'filesize' => 4511231, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/FKG_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/fkg_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'fkg_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:10:39', 'modified' => '2025-11-28 09:10:39', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1402)), array('image' => 1815, 'loop' => array('ID' => 1816, 'id' => 1816, 'title' => 'STEP', 'filename' => 'STEP.mp4', 'filesize' => 4631620, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/STEP.mp4', 'link' => 'https://iconiste.studio/accueil/step-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step-3', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 14:18:03', 'modified' => '2025-10-08 14:18:03', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2069, 'id' => 2069, 'title' => 'STEP_Mobile_Home-page', 'filename' => 'STEP_Mobile_Home-page.mp4', 'filesize' => 680763, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/STEP_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/step_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'step_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 09:25:12', 'modified' => '2025-11-28 09:25:12', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1441)), array('image' => 1033, 'loop' => array('ID' => 1775, 'id' => 1775, 'title' => 'Olivier Martin', 'filename' => 'Olivier-Martin-1.mp4', 'filesize' => 4454262, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/09/Olivier-Martin-1.mp4', 'link' => 'https://iconiste.studio/accueil/olivier-martin-4/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin-4', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-09-23 08:48:06', 'modified' => '2025-09-23 08:48:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2072, 'id' => 2072, 'title' => 'Olivier-Martin_Mobile_Home-page', 'filename' => 'Olivier-Martin_Mobile_Home-page.mp4', 'filesize' => 6894587, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Olivier-Martin_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/en/home/olivier-martin_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'olivier-martin_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 1399, 'date' => '2025-11-28 09:57:16', 'modified' => '2025-11-28 09:57:16', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1411)), array('image' => 1034, 'loop' => array('ID' => 1807, 'id' => 1807, 'title' => 'Sanbitter header', 'filename' => 'Sanbitter-header.mp4', 'filesize' => 5476520, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/10/Sanbitter-header.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter-header/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter-header', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-10-08 13:57:06', 'modified' => '2025-10-08 13:57:06', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1920, 'height' => 1080), 'loop_mobile' => array('ID' => 2076, 'id' => 2076, 'title' => 'Sanbitter_Mobile_Home-page', 'filename' => 'Sanbitter_Mobile_Home-page.mp4', 'filesize' => 4012858, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/11/Sanbitter_Mobile_Home-page.mp4', 'link' => 'https://iconiste.studio/accueil/sanbitter_mobile_home-page/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'sanbitter_mobile_home-page', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-11-28 10:23:28', 'modified' => '2025-11-28 10:23:28', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1080, 'height' => 1920), 'overlay' => false, 'delay' => '', 'link' => array(1412)))), '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)