function display_product_name_from_url() { // Get the product_name parameter from the URL $product_name = isset($_GET['product_name']) ? sanitize_text_field($_GET['product_name']) : ''; //return esc_html($product_name); return '
'.$product_name.'
'; } add_shortcode('product_name', 'display_product_name_from_url'); /** * Theme functions and definitions. * * Sets up the theme and provides some helper functions * * When using a child theme (see https://codex.wordpress.org/Theme_Development * and https://codex.wordpress.org/Child_Themes), you can override certain * functions (those wrapped in a function_exists() call) by defining them first * in your child theme's functions.php file. The child theme's functions.php * file is included before the parent theme's file, so the child theme * functions would be used. * * * For more information on hooks, actions, and filters, * see https://codex.wordpress.org/Plugin_API * * @package Enzian WordPress theme */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } if(!defined('ENZIAN_THEME_VERSION')){ define('ENZIAN_THEME_VERSION', '1.0.6'); } if(!class_exists('Enzian_Theme_Class')){ final class Enzian_Theme_Class { public static $template_dir_path = ''; public static $template_dir_url = ''; /** * @var Enzian_Ajax_Manager $ajax_manager; */ public $ajax_manager; protected $extra_style = ''; /** * Main Theme Class Constructor * * @since 1.0.0 */ public function __construct() { self::$template_dir_path = get_template_directory(); self::$template_dir_url = get_template_directory_uri(); // Define constants add_action( 'after_setup_theme', array( $this, 'constants' ), 0 ); // Load all core theme function files add_action( 'after_setup_theme', array( $this, 'include_functions' ), 1 ); // Load configuration classes add_action( 'after_setup_theme', array( $this, 'configs' ), 3 ); // Load framework classes add_action( 'after_setup_theme', array( $this, 'classes' ), 4 ); // Setup theme => add_theme_support: register_nav_menus, load_theme_textdomain, etc add_action( 'after_setup_theme', array( $this, 'theme_setup' ) ); add_action( 'after_setup_theme', array( $this, 'theme_setup_default' ) ); // register sidebar widget areas add_action( 'widgets_init', array( $this, 'register_sidebars' ) ); /** Admin only actions **/ if( is_admin() ) { // Load scripts in the WP admin add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) ); add_action( 'elementor/editor/before_enqueue_scripts', array( $this, 'admin_scripts' ) ); } /** Non Admin actions **/ else{ // Load theme CSS add_action( 'wp_enqueue_scripts', array( $this, 'theme_css' ) ); // Load theme js add_action( 'wp_enqueue_scripts', array( $this, 'theme_js' ), 99 ); // Add a pingback url auto-discovery header for singularly identifiable articles add_action( 'wp_head', array( $this, 'pingback_header' ), 1 ); // Add meta viewport tag to header add_action( 'wp_head', array( $this, 'meta_viewport' ), 1 ); // Add meta apple web app capable tag to header add_action( 'wp_head', array( $this, 'apple_mobile_web_app_capable_header' ), 1 ); // Add an X-UA-Compatible header add_filter( 'wp_headers', array( $this, 'x_ua_compatible_headers' ) ); // Add support for Elementor Pro locations add_action( 'elementor/theme/register_locations', array( $this, 'register_elementor_locations' ) ); } add_action( 'elementor/init', array( $this, 'register_breakpoint' ) ); require_once get_theme_file_path('/framework/classes/ajax-manager.php'); $this->ajax_manager = new Enzian_Ajax_Manager(); } /** * Define Constants * * @since 1.0.0 */ public function constants() {} /** * Load all core theme function files * * @since 1.0.0 */ public function include_functions() { require_once get_theme_file_path('/framework/functions/helpers.php'); require_once get_theme_file_path('/framework/functions/theme-hooks.php'); require_once get_theme_file_path('/framework/functions/theme-functions.php'); require_once get_theme_file_path('/framework/third/lastudio-kit.php'); } /** * Configs for 3rd party plugins. * * @since 1.0.0 */ public function configs() { // WooCommerce if(function_exists('WC')){ require_once get_theme_file_path('/framework/woocommerce/woocommerce-config.php'); } } /** * Load theme classes * * @since 1.0.0 */ public function classes() { // Admin only classes if ( is_admin() ) { // Recommend plugins require_once get_theme_file_path('/tgm/class-tgm-plugin-activation.php'); require_once get_theme_file_path('/tgm/tgm-plugin-activation.php'); } require_once get_theme_file_path('/framework/classes/class-admin.php'); // Breadcrumbs class require_once get_theme_file_path('/framework/classes/breadcrumbs.php'); new Enzian_Admin(); } /** * Theme Setup * * @since 1.0.0 */ public function theme_setup() { $ext = apply_filters('enzian/use_minify_css_file', false) || ( defined('WP_DEBUG') && WP_DEBUG ) ? '' : '.min'; // Load text domain load_theme_textdomain( 'enzian', self::$template_dir_path .'/languages' ); // Get globals global $content_width; // Set content width based on theme's default design if ( ! isset( $content_width ) ) { $content_width = 1200; } // Register navigation menus register_nav_menus( array( 'main-nav' => esc_attr_x( 'Main Navigation', 'admin-view', 'enzian' ) ) ); // Enable support for Post Formats add_theme_support( 'post-formats', array( 'video', 'gallery', 'audio', 'quote', 'link' ) ); // Enable support for tag add_theme_support( 'title-tag' ); // Add default posts and comments RSS feed links to head add_theme_support( 'automatic-feed-links' ); // Enable support for Post Thumbnails on posts and pages add_theme_support( 'post-thumbnails' ); /** * Enable support for header image */ add_theme_support( 'custom-header', apply_filters( 'enzian/filter/custom_header_args', array( 'width' => 2000, 'height' => 1200, 'flex-height' => true, 'video' => true, ) ) ); add_theme_support( 'custom-background' ); // Declare WooCommerce support. add_theme_support( 'woocommerce' ); if( enzian_string_to_bool( enzian_get_theme_mod('woocommerce_gallery_zoom') ) ){ add_theme_support( 'wc-product-gallery-zoom'); } if( enzian_string_to_bool( enzian_get_theme_mod('woocommerce_gallery_lightbox') ) ){ add_theme_support( 'wc-product-gallery-lightbox'); } add_theme_support( 'wc-product-gallery-slider'); // Support WP Job Manager add_theme_support( 'job-manager-templates' ); // Add editor style add_editor_style( 'assets/css/editor-style.css' ); // Adding Gutenberg support add_theme_support( 'align-wide' ); add_theme_support( 'wp-block-styles' ); add_theme_support( 'responsive-embeds' ); add_theme_support( 'editor-styles' ); add_editor_style( 'assets/css/gutenberg-editor.css' ); add_theme_support( 'editor-color-palette', array( array( 'name' => esc_attr_x( 'pale pink', 'admin-view', 'enzian' ), 'slug' => 'pale-pink', 'color' => '#f78da7', ), array( 'name' => esc_attr_x( 'theme primary', 'admin-view', 'enzian' ), 'slug' => 'enzian-theme-primary', 'color' => '#BC8157', ), array( 'name' => esc_attr_x( 'theme secondary', 'admin-view', 'enzian' ), 'slug' => 'enzian-theme-secondary', 'color' => '#212121', ), array( 'name' => esc_attr_x( 'strong magenta', 'admin-view', 'enzian' ), 'slug' => 'strong-magenta', 'color' => '#a156b4', ), array( 'name' => esc_attr_x( 'light grayish magenta', 'admin-view', 'enzian' ), 'slug' => 'light-grayish-magenta', 'color' => '#d0a5db', ), array( 'name' => esc_attr_x( 'very light gray', 'admin-view', 'enzian' ), 'slug' => 'very-light-gray', 'color' => '#eee', ), array( 'name' => esc_attr_x( 'very dark gray', 'admin-view', 'enzian' ), 'slug' => 'very-dark-gray', 'color' => '#444', ), ) ); remove_theme_support( 'widgets-block-editor' ); add_theme_support('lastudio', [ 'swatches' => true, 'revslider' => true, 'header-builder' => [ 'menu' => true, 'header-vertical' => true ], 'lastudio-kit' => true, 'elementor' => [ 'advanced-carousel' => false, 'ajax-templates' => false, 'css-transform' => false, 'floating-effects' => false, 'wrapper-links' => false, 'lastudio-icon' => true, 'custom-fonts' => true, 'mega-menu' => true, ], ]); } /** * Theme Setup Default * * @since 1.0.0 */ public function theme_setup_default(){ $check_theme = get_option('enzian_has_init', false); if(!$check_theme || !get_option('lastudio-kit-settings')){ update_option('enzian_has_init', true); update_option( 'elementor_cpt_support', array( 'page', 'post', 'la_portfolio') ); update_option( 'lastudio-kit-settings', [ 'svg-uploads' => 'enabled', 'lastudio_kit_templates' => 'enabled', 'single_post_template' => 'templates/fullwidth.php', 'single_page_template' => 'templates/fullwidth.php', ] ); $customizes = [ 'body_font_family' => 'Nunito Sans, sans-serif', 'heading_font_family' => 'Cormorant, serif', 'heading_font_weight' => 700, ]; foreach ($customizes as $k => $v){ set_theme_mod($k, $v); } } } /** * Adds the meta tag to the site header * * @since 1.0.0 */ public function pingback_header() { if ( is_singular() && pings_open() ) { printf( '<link rel="pingback" href="%s">' . "\n", esc_url( get_bloginfo( 'pingback_url' ) ) ); } } /** * Adds the meta tag to the site header * * @since 1.0.0 */ public function apple_mobile_web_app_capable_header() { printf( '<meta name="apple-mobile-web-app-capable" content="yes">' ); } /** * Adds the meta tag to the site header * * @since 1.0.0 */ public function meta_viewport() { // Meta viewport $viewport = '<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0">'; // Apply filters for child theme tweaking echo apply_filters( 'enzian_meta_viewport', $viewport ); } /** * Load scripts in the WP admin * * @since 1.0.0 */ public function admin_scripts() { // Load font icon style wp_enqueue_style( 'enzian-font-lastudioicon', get_theme_file_uri( '/assets/css/lastudioicon.min.css' ), false, '1.0.0' ); wp_enqueue_style( 'enzian-fonts', $this->enqueue_google_fonts_url() , array(), null ); } /** * Load front-end scripts * * @since 1.0.0 */ public function theme_css() { $theme_version = defined('WP_DEBUG') && WP_DEBUG ? time() : ENZIAN_THEME_VERSION; $ext = apply_filters('enzian/use_minify_css_file', false) || ( defined('WP_DEBUG') && WP_DEBUG ) ? '' : '.min'; // Load font icon style wp_enqueue_style( 'enzian-font-lastudioicon', get_theme_file_uri ('/assets/css/lastudioicon'.$ext.'.css' ), false, $theme_version ); if(!function_exists('lastudio_kit')) { wp_enqueue_style( 'enzian-fonts', $this->enqueue_google_fonts_url() , array(), null ); } wp_enqueue_style( 'enzian-theme', get_parent_theme_file_uri('/style'.$ext.'.css'), false, $theme_version ); $this->render_extra_style(); $additional_inline_stype = $this->extra_style; $inline_handler_name = 'enzian-theme'; if(function_exists('WC')){ wp_enqueue_style( 'enzian-woocommerce', get_theme_file_uri( '/assets/css/woocommerce'.$ext.'.css' ), false, $theme_version ); $inline_handler_name = 'enzian-woocommerce'; } wp_add_inline_style($inline_handler_name, $additional_inline_stype); } /** * Returns all js needed for the front-end * * @since 1.0.0 */ public function theme_js() { $theme_version = defined('WP_DEBUG') && WP_DEBUG ? time() : ENZIAN_THEME_VERSION; $ext = !apply_filters('enzian/use_minify_js_file', true) || ( defined('WP_DEBUG') && WP_DEBUG ) ? '' : '.min'; // Get localized array $localize_array = $this->localize_array(); wp_register_script( 'pace', get_theme_file_uri('/assets/js/lib/pace'.$ext.'.js'), null, $theme_version, true); wp_register_script( 'js-cookie', get_theme_file_uri('/assets/js/lib/js.cookie'.$ext.'.js'), array('jquery'), $theme_version, true); wp_register_script( 'jquery-featherlight', get_theme_file_uri('/assets/js/lib/featherlight'.$ext.'.js') , array('jquery'), $theme_version, true); $dependencies = array( 'jquery', 'js-cookie', 'jquery-featherlight'); if( enzian_string_to_bool( enzian_get_theme_mod('page_preloader') ) ){ $dependencies[] = 'pace'; } if(function_exists('WC')){ $dependencies[] = 'enzian-woocommerce'; } $dependencies = apply_filters('enzian/filter/js_dependencies', $dependencies); wp_enqueue_script('enzian-theme', get_theme_file_uri( '/assets/js/app'.$ext.'.js' ), $dependencies, $theme_version, true); if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } if(apply_filters('enzian/filter/force_enqueue_js_external', true)){ wp_localize_script('enzian-theme', 'la_theme_config', $localize_array ); } if(function_exists('la_get_polyfill_inline')){ $polyfill_data = apply_filters('enzian/filter/js_polyfill_data', [ 'enzian-polyfill-object-assign' => [ 'condition' => '\'function\'==typeof Object.assign', 'src' => get_theme_file_uri( '/assets/js/lib/polyfill-object-assign'.$ext.'.js' ), 'version' => $theme_version, ], 'enzian-polyfill-css-vars' => [ 'condition' => 'window.CSS && window.CSS.supports && window.CSS.supports(\'(--foo: red)\')', 'src' => get_theme_file_uri( '/assets/js/lib/polyfill-css-vars'.$ext.'.js' ), 'version' => $theme_version, ], 'enzian-polyfill-promise' => [ 'condition' => '\'Promise\' in window', 'src' => get_theme_file_uri( '/assets/js/lib/polyfill-promise'.$ext.'.js' ), 'version' => $theme_version, ], 'enzian-polyfill-fetch' => [ 'condition' => '\'fetch\' in window', 'src' => get_theme_file_uri( '/assets/js/lib/polyfill-fetch'.$ext.'.js' ), 'version' => $theme_version, ], 'enzian-polyfill-object-fit' => [ 'condition' => '\'objectFit\' in document.documentElement.style', 'src' => get_theme_file_uri( '/assets/js/lib/polyfill-object-fit'.$ext.'.js' ), 'version' => $theme_version, ] ]); $polyfill_inline = la_get_polyfill_inline($polyfill_data); if(!empty($polyfill_inline)){ wp_add_inline_script('enzian-theme', $polyfill_inline, 'before'); } } } /** * Functions.js localize array * * @since 1.0.0 */ public function localize_array() { $template_cache = enzian_string_to_bool(enzian_get_option('template_cache')); $array = array( 'security' => array( 'favorite_posts' => wp_create_nonce('favorite_posts'), 'wishlist_nonce' => wp_create_nonce('wishlist_nonce'), 'compare_nonce' => wp_create_nonce('compare_nonce') ), 'single_ajax_add_cart' => enzian_string_to_bool( enzian_get_theme_mod('single_ajax_add_cart') ), 'i18n' => array( 'backtext' => esc_attr_x('Back', 'front-view', 'enzian'), 'compare' => array( 'view' => esc_attr_x('View List Compare', 'front-view', 'enzian'), 'success' => esc_attr_x('has been added to comparison list.', 'front-view', 'enzian'), 'error' => esc_attr_x('An error occurred ,Please try again !', 'front-view', 'enzian') ), 'wishlist' => array( 'view' => esc_attr_x('View List Wishlist', 'front-view', 'enzian'), 'success' => esc_attr_x('has been added to your wishlist.', 'front-view', 'enzian'), 'error' => esc_attr_x('An error occurred, Please try again !', 'front-view', 'enzian') ), 'addcart' => array( 'view' => esc_attr_x('View Cart', 'front-view', 'enzian'), 'success' => esc_attr_x('has been added to your cart', 'front-view', 'enzian'), 'error' => esc_attr_x('An error occurred, Please try again !', 'front-view', 'enzian') ), 'global' => array( 'error' => esc_attr_x('An error occurred ,Please try again !', 'front-view', 'enzian'), 'search_not_found' => esc_attr_x('It seems we can’t find what you’re looking for, please try again !', 'front-view', 'enzian'), 'comment_author' => esc_attr_x('Please enter Name !', 'front-view', 'enzian'), 'comment_email' => esc_attr_x('Please enter Email Address !', 'front-view', 'enzian'), 'comment_rating' => esc_attr_x('Please select a rating !', 'front-view', 'enzian'), 'comment_content' => esc_attr_x('Please enter Comment !', 'front-view', 'enzian'), 'continue_shopping' => esc_attr_x('Continue Shopping', 'front-view', 'enzian'), 'cookie_disabled' => esc_attr_x('We are sorry, but this feature is available only if cookies are enabled on your browser', 'front-view', 'enzian'), 'more_menu' => esc_attr_x('Show More +', 'front-view', 'enzian'), 'less_menu' => esc_attr_x('Show Less', 'front-view', 'enzian'), 'search_view_more' => esc_attr_x('View More', 'front-view', 'enzian'), ) ), 'popup' => array( 'max_width' => esc_attr(enzian_get_option('popup_max_width', 790)), 'max_height' => esc_attr(enzian_get_option('popup_max_height', 430)) ), 'js_path' => esc_attr(apply_filters('enzian/filter/js_path', self::$template_dir_url . '/assets/js/lib/')), 'js_min' => apply_filters('enzian/use_minify_js_file', true), 'theme_path' => esc_attr(apply_filters('enzian/filter/theme_path', self::$template_dir_url . '/')), 'ajax_url' => esc_attr(admin_url('admin-ajax.php')), 'la_extension_available' => get_option('la_extension_available', array( 'swatches' => false, '360' => false, 'content_type' => false )), 'has_wc' => function_exists('WC' ) ? true : false, 'cache_ttl' => apply_filters('enzian/cache_time_to_life', !$template_cache ? 30 : (60 * 5)), 'local_ttl' => apply_filters('enzian/local_cache_time_to_life', !$template_cache ? 30 : (60 * 60 * 24)), 'home_url' => esc_url(home_url('/')), 'current_url' => esc_url( add_query_arg(null,null) ), 'disable_cache' => $template_cache ? false : true, 'is_dev' => defined('WP_DEBUG') && WP_DEBUG ? true : false, 'shop_url' => function_exists('wc_get_page_id') ? get_permalink( wc_get_page_id( 'shop' ) ) : home_url('/'), 'ajaxGlobal' => [ 'nonce' => $this->ajax_manager->create_nonce(), 'action' => 'lastudio_theme_ajax', 'useFront' => 'true', ] ); if(function_exists('la_get_wc_script_data') && function_exists('WC')){ $variation_data = la_get_wc_script_data('wc-add-to-cart-variation'); if(!empty($variation_data)){ $array['i18n']['variation'] = $variation_data; } $array['wc_variation'] = [ 'base' => esc_url(WC()->plugin_url()) . '/assets/js/frontend/add-to-cart-variation.min.js', 'wp_util' => esc_url(includes_url('js/wp-util.min.js')), 'underscore' => esc_url(includes_url('js/underscore.min.js')) ]; } // Apply filters and return array return apply_filters( 'enzian/filter/localize_array', $array ); } /** * Add headers for IE to override IE's Compatibility View Settings * * @since 1.0.0 */ public function x_ua_compatible_headers( $headers ) { $headers['X-UA-Compatible'] = 'IE=edge'; return $headers; } /** * Add support for Elementor Pro locations * * @since 1.0.0 */ public function register_elementor_locations( $elementor_theme_manager ) { $elementor_theme_manager->register_all_core_location(); } /** * Registers sidebars * * @since 1.0.0 */ public function register_sidebars() { $heading = 'div'; $heading = apply_filters( 'enzian/filter/sidebar_heading', $heading ); // Default Sidebar register_sidebar( array( 'name' => esc_html__( 'Default Sidebar', 'enzian' ), 'id' => 'sidebar', 'description' => esc_html__( 'Widgets in this area will be displayed in the left or right sidebar area if you choose the Left or Right Sidebar layout.', 'enzian' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<'. $heading .' class="widget-title"><span>', 'after_title' => '</span></'. $heading .'>', ) ); } public static function enqueue_google_fonts_url(){ $fonts_url = ''; $fonts = array(); if ( 'off' !== _x( 'on', 'Nunito Sans font: on or off', 'enzian' ) ) { $fonts[] = 'Nunito+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700'; } if ( 'off' !== _x( 'on', 'Cormorant font: on or off', 'enzian' ) ) { $fonts[] = 'Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700'; } if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => implode( '&family=', $fonts ), 'display' => 'swap', ), 'https://fonts.googleapis.com/css2' ); } return esc_url_raw( $fonts_url ); } public static function enqueue_typekit_fonts_url(){ $fonts_url = ''; if ( 'off' !== _x( 'on', 'Acumin Pro font: on or off', 'enzian' ) ) { $fonts_url = '//use.typekit.net/ggv4mlu.css'; } return esc_url_raw( $fonts_url ); } public function render_extra_style(){ $this->extra_style .= $this->dynamic_css(); $this->extra_style .= $this->css_page_preload(); } private function css_page_preload(){ ob_start(); include get_parent_theme_file_path('/framework/css/page-preload-css.php'); $content = ob_get_clean(); return $content; } private function dynamic_css(){ ob_start(); include get_parent_theme_file_path('/framework/css/dynamic-css.php'); return ob_get_clean(); } public function register_breakpoint(){ if(defined('ELEMENTOR_VERSION') && class_exists('Elementor\Core\Breakpoints\Manager', false)){ $has_register_breakpoint = get_option('enzian_has_register_breakpoint', false); if(empty($has_register_breakpoint)){ update_option('elementor_experiment-additional_custom_breakpoints', 'active'); $kit_active_id = Elementor\Plugin::$instance->kits_manager->get_active_id(); $raw_kit_settings = get_post_meta( $kit_active_id, '_elementor_page_settings', true ); if(empty($raw_kit_settings)){ $raw_kit_settings = []; } $default_settings = [ 'space_between_widgets' => '0', 'page_title_selector' => 'h1.entry-title', 'stretched_section_container' => '', 'active_breakpoints' => [ 'viewport_mobile', 'viewport_mobile_extra', 'viewport_tablet', 'viewport_laptop', ], 'viewport_mobile' => 767, 'viewport_md' => 768, 'viewport_mobile_extra' => 991, 'viewport_tablet' => 1279, 'viewport_lg' => 1280, 'viewport_laptop' => 1599, 'system_colors' => [ [ '_id' => 'primary', 'title' => esc_html__( 'Primary', 'enzian' ) ], [ '_id' => 'secondary', 'title' => esc_html__( 'Secondary', 'enzian' ) ], [ '_id' => 'text', 'title' => esc_html__( 'Text', 'enzian' ) ], [ '_id' => 'accent', 'title' => esc_html__( 'Accent', 'enzian' ) ] ], 'system_typography' => [ [ '_id' => 'primary', 'title' => esc_html__( 'Primary', 'enzian' ) ], [ '_id' => 'secondary', 'title' => esc_html__( 'Secondary', 'enzian' ) ], [ '_id' => 'text', 'title' => esc_html__( 'Text', 'enzian' ) ], [ '_id' => 'accent', 'title' => esc_html__( 'Accent', 'enzian' ) ] ] ]; $raw_kit_settings = array_merge($raw_kit_settings, $default_settings); update_post_meta( $kit_active_id, '_elementor_page_settings', $raw_kit_settings ); Elementor\Core\Breakpoints\Manager::compile_stylesheet_templates(); update_option('enzian_has_register_breakpoint', true); } } } } } new Enzian_Theme_Class();{"id":1362,"date":"2022-02-28T14:20:01","date_gmt":"2022-02-28T14:20:01","guid":{"rendered":"https:\/\/enzian.la-studioweb.com\/?page_id=1362"},"modified":"2024-12-30T17:10:43","modified_gmt":"2024-12-30T17:10:43","slug":"contact-us","status":"publish","type":"page","link":"https:\/\/14digitalapps.co.uk\/avloneurope6\/?page_id=1362","title":{"rendered":"Contact Us"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"1362\" class=\"elementor elementor-1362\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ae42e75 e-con-full e-flex lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"ae42e75\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8aea068 elementor-widget elementor-widget-slider_revolution\" data-id=\"8aea068\" data-element_type=\"widget\" data-widget_type=\"slider_revolution.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\n\t\t<div class=\"wp-block-themepunch-revslider\">\n\t\t\t\t<p class=\"rs-p-wp-fix\"><\/p>\n\t\t\t\t<sr7-module data-alias=\"about-us-1\" data-id=\"14\" id=\"SR7_14_1\" class=\"rs-ov-hidden\" data-version=\"6.7.13\">\n\t\t\t\t\t<sr7-adjuster><\/sr7-adjuster>\n\t\t\t\t\t<sr7-content>\n\t\t\t\t\t\t<sr7-slide id=\"SR7_14_1-42\" data-key=\"42\">\n\t\t\t\t\t\t\t<sr7-txt id=\"SR7_14_1-42-1\" class=\"sr7-layer\">CONTACT US<\/sr7-txt>\n\t\t\t\t\t\t<\/sr7-slide>\n\t\t\t\t\t\t<sr7-slide id=\"SR7_14_1-43\" data-key=\"43\">\n\t\t\t\t\t\t<\/sr7-slide>\n\t\t\t\t\t<\/sr7-content>\n\t\t\t\t\t<image_lists style=\"display:none\">\n\t\t\t\t\t\t<img data-src=\"\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/09\/Conact-Us.jpg\" data-libid=\"5880\" data-lib=\"medialibrary\" title=\"Conact Us\" width=\"0\" height=\"0\" data-dbsrc=\"Ly8xNGRpZ2l0YWxhcHBzLmNvLnVrL2F2bG9uZXVyb3BlNi93cC1jb250ZW50L3VwbG9hZHMvMjAyNC8wOS9Db25hY3QtVXMuanBn\"\/>\n\t\t\t\t\t<\/image_lists>\n\t\t\t\t<\/sr7-module>\n\t\t\t\t<script>\n\t\t\t\t\tSR7.PMH ??={}; SR7.PMH[\"SR7_14_1\"] = {cn:0,state:false,fn: function() { if (_tpt!==undefined && _tpt.prepareModuleHeight !== undefined) { _tpt.prepareModuleHeight({id:\"SR7_14_1\",el:[540,540,768,960,209],type:'standard',shdw:'0',gh:[540,540,288,219,135],gw:[1920,1920,1024,778,480],vpt:['100px'],size:{fullWidth:true, fullHeight:false},mh:'0',onh:0,onw:0,bg:{color:'{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}'}}); SR7.PMH[\"SR7_14_1\"].state=true;} else if((SR7.PMH[\"SR7_14_1\"].cn++)<100)\tsetTimeout( SR7.PMH[\"SR7_14_1\"].fn,19);}};SR7.PMH[\"SR7_14_1\" ].fn();\n\t\t\t\t<\/script>\n<\/div>\n\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ac23c60 e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"ac23c60\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ab54d6a elementor-widget elementor-widget-google_maps\" data-id=\"ab54d6a\" data-element_type=\"widget\" data-widget_type=\"google_maps.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\/*! elementor - v3.23.0 - 05-08-2024 *\/\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}<\/style>\t\t<div class=\"elementor-custom-embed\">\n\t\t\t<iframe loading=\"lazy\"\n\t\t\t\t\tsrc=\"https:\/\/maps.google.com\/maps?q=Avlon%20Europe%20Limited%2C%20Unit%202%2C%20Navigation%20Point%2C%20Golds%20Hill%20Way%2C%20Tipton%2C%20DY4%200PY&t=m&z=10&output=embed&iwloc=near\"\n\t\t\t\t\ttitle=\"Avlon Europe Limited, Unit 2, Navigation Point, Golds Hill Way, Tipton, DY4 0PY\"\n\t\t\t\t\taria-label=\"Avlon Europe Limited, Unit 2, Navigation Point, Golds Hill Way, Tipton, DY4 0PY\"\n\t\t\t><\/iframe>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-d57e14c elementor-section-boxed elementor-section-height-default elementor-section-height-default e-parent\" data-id=\"d57e14c\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-a342632 lakit-col-width-auto-no elementor-invisible\" data-id=\"a342632\" data-element_type=\"column\" data-settings=\"{"animation":"lakitShortFadeInUp","animation_delay":300}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-3ab44d1 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"3ab44d1\" data-element_type=\"widget\" data-settings=\"{"_animation":"lakitShortFadeInUp","_animation_delay":300}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\/*! elementor - v3.23.0 - 05-08-2024 *\/\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\/style><div class=\"elementor-heading-title elementor-size-default\">OUR INFORMATION<\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-13969cf elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"13969cf\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<link rel=\"stylesheet\" href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/elementor\/css\/custom-widget-icon-list.min.css?ver=1759292953\">\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"#\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 500 500;\" xml:space=\"preserve\"><style type=\"text\/css\">\t.st0{fill:#978000;}<\/style><g id=\"Edo66V.tif\">\t<g>\t\t<path class=\"st0\" d=\"M146.2,289.59c-12.09-20.27-21.91-40.97-28.58-63.05c-10.71-35.45-13.57-70.95,0.02-106.4 c22.48-58.65,82.57-96.75,142.67-90.54c65.88,6.81,117.04,53.74,127.46,117.63c5.58,34.23-1.33,67.04-14.23,98.66 c-6.05,14.84-13.58,29.08-20.81,44.38c2.83,0,6-0.07,9.17,0.01c27.3,0.65,47.08,13.04,58.2,38.16 c8.28,18.71,16.21,37.59,23.82,56.58c14.27,35.57-5,75.04-40.93,84.02c-5.21,1.3-10.74,1.9-16.12,1.9 c-90.98,0.11-181.96,0.16-272.94,0.05c-44.89-0.05-74.54-43.97-57.83-85.66c7.61-18.99,15.33-37.98,23.86-56.56 c11.4-24.83,30.78-38.36,58.66-38.5c1.88-0.01,3.76-0.01,5.65-0.06C144.63,290.21,145.01,289.99,146.2,289.59z M250.03,430.86 c45.38,0,90.75,0.07,136.13-0.03c16.65-0.04,27.5-15.02,21.5-29.99c-7.61-18.99-15.62-37.83-23.81-56.58 c-4.06-9.29-11.51-13.96-21.87-13.84c-10.87,0.12-21.75,0.24-32.62-0.08c-4.39-0.13-7.11,1.56-10.24,4.46 c-13.76,12.75-27.35,25.79-42.05,37.39c-17.28,13.63-35.5,13.13-53.8,0.52c-15.79-10.88-29.65-23.74-42.55-37.81 c-1.89-2.06-4.98-4.15-7.59-4.25c-12.32-0.44-24.67-0.37-37-0.11c-9.14,0.2-15.96,4.45-19.62,13.09 c-8.06,19.03-16.32,37.99-23.94,57.2c-1.58,3.97-1.77,9.13-0.83,13.34c2.35,10.56,11.21,16.67,22.78,16.68 C159.7,430.88,204.87,430.86,250.03,430.86z M350.78,170.63c-0.45-4.78-0.64-9.6-1.39-14.33c-6.15-38.81-27.53-66.28-63.96-80.19 c-36.82-14.06-71.55-7.54-101.27,18.43c-31.93,27.9-40.38,64.02-31.21,104.31c12.57,55.29,44.02,99.1,85.95,135.98 c10.61,9.34,11.79,9.18,22.47-0.04c32.3-27.89,57.15-61.39,74.41-100.43C344.73,214.09,350.09,192.93,350.78,170.63z\"><\/path>\t\t<path class=\"st0\" d=\"M250.22,99.49c38.9,0.04,70.02,31.17,70.11,70.12c0.09,39.18-31.24,70.53-70.42,70.44 c-38.9-0.08-70.07-31.26-70.11-70.12C179.76,130.7,211,99.44,250.22,99.49z M280.16,169.59c-0.07-17.05-13.3-30.07-30.43-29.92 c-16.78,0.14-29.71,13.16-29.77,29.97c-0.06,17.08,13.07,30.26,30.12,30.24C267.17,199.85,280.23,186.7,280.16,169.59z\"><\/path>\t<\/g><\/g><path class=\"st0\" d=\"M-167.32,198.73c0.02-9.08-3.5-15.6-11.07-20.49c-6.23-4.03-12.48-8.27-18.52-12.37 c-5.41-3.67-11-7.46-16.57-11.1c-2.02-1.32-2.59-2.44-2.58-5.02c0.14-21.69,0.11-43.35,0.06-65.48 c-0.07-32.55-22.8-55.29-55.28-55.3c-90.81-0.03-186.23-0.03-291.73-0.01c-31.68,0.01-54.7,23.03-54.74,54.75l-0.01,9.26 c-0.03,18.26-0.06,37.14,0.1,55.71c0.03,3.34-0.8,4.95-3.41,6.64c-6.25,4.03-12.5,8.26-18.54,12.36 c-5.56,3.76-11.31,7.65-17.02,11.37c-7.3,4.75-10.7,11.16-10.68,20.17c0.1,52.11,0.09,105.1,0.09,156.34c0,22.79,0,45.58,0,68.37 c0.01,28.62,18.59,47.12,47.33,47.12c48.64,0.01,97.28,0,145.92,0l56.12,0l56.16,0c18.72,0,37.44,0,56.15,0 c30.42,0,60.85,0,91.27-0.01c28.02-0.01,46.85-18.72,46.85-46.57c0.01-22.58,0-45.15,0-67.73 C-167.42,304.96-167.42,251.4-167.32,198.73z M-215.72,217.18v-18.34c0.21,0.14,0.42,0.27,0.63,0.41c3.62,2.35,7.05,4.58,10,7.2 c0.31,0.83,0.21,3.16-0.18,3.91c-2.83,2.37-6.16,4.32-9.69,6.38C-215.22,216.89-215.47,217.03-215.72,217.18z M-629.47,207.99 c-0.04-0.74,0.2-1.39,0.62-1.69c3.21-2.34,6.54-4.55,10.06-6.89c0.26-0.17,0.51-0.34,0.77-0.51v16.81c-0.28-0.15-0.56-0.3-0.84-0.45 c-3.38-1.83-6.56-3.56-9.67-5.39C-629.07,209.54-629.43,208.81-629.47,207.99z M-628.93,359.84V253.17l91.23,50.55L-628.93,359.84z M-290.04,307.97l85.25-52.91v104.89L-290.04,307.97z M-204.49,418.34c0.01,2.16,0.03,4.32,0.01,6.48 c-0.05,6.57-1.79,8.27-8.48,8.27c-51.02,0-102.04,0.01-153.05,0h-51.02l-203.04,0c-4.09,0-6.43-0.51-7.57-1.66 c-1.13-1.13-1.63-3.4-1.62-7.35c0-2.13-0.18-4.36-0.37-6.51c-0.39-4.65-0.8-9.47,0.89-12.54c1.7-3.08,6.06-5.3,10.27-7.45 c1.85-0.94,3.77-1.92,5.51-2.99c28.03-17.18,56.07-34.34,84.11-51.51c30.95-18.94,61.89-37.89,92.83-56.85 c12.31-7.54,24.03-7.74,35.82-0.59c30.55,18.53,61.1,37.09,91.64,55.65c33.99,20.65,67.98,41.31,101.99,61.93 c1.73,1.05,2.21,1.95,2.14,4.01C-204.53,410.95-204.51,414.71-204.49,418.34z M-271.61,66.93c12.21,0,17.65,5.52,17.66,17.88v35.65 c0,38.49-0.01,78.29,0.07,117.44c0,2.75-0.61,3.87-2.85,5.22c-21.42,12.93-43.25,26.32-66.74,40.95c-2.42,1.51-3.74,1.51-6.13,0.03 c-19.28-11.97-35.37-21.75-50.64-30.79c-12.51-7.41-25.12-11.12-37.72-11.12c-12.68,0-25.36,3.75-37.96,11.25 c-12.84,7.64-26.41,15.9-42.71,25.97c-2,1.24-3.01,1.28-4.91,0.2c-22.61-12.74-46.74-26.18-73.78-41.1 c-2.02-1.11-2.54-1.97-2.53-4.17c0.08-34.8,0.08-70.17,0.08-104.39c0-15.55,0-31.1,0.01-46.64c0-10.57,5.84-16.39,16.43-16.39 c35.61-0.02,71.22-0.01,106.84-0.01l95,0C-331.54,66.92-301.58,66.92-271.61,66.93z\"><\/path><g>\t<path class=\"st0\" d=\"M-185.39,238.12c-10.57-11.01-22.02-22.47-34.03-34.05c-6.95-6.7-16.89-6.92-23.65-0.52 c-12.08,11.44-23.66,23.03-34.41,34.43c-6.41,6.8-5.89,17.32,1.22,24.47c6.9,6.94,17.36,7.47,24.85,1.25 c0.56-0.46,1.1-0.94,1.62-1.42c-0.04,0.34-0.07,0.68-0.1,1.01c-0.43,4.23-0.87,8.61-1.46,12.87 c-6.89,49.41-33.12,92.92-73.83,122.51c-40.76,29.63-90.31,41.15-139.5,32.45c-48.49-8.58-90.68-35.36-118.79-75.41 c-28.11-40.05-38.93-88.78-30.47-137.22c9.27-53.05,41.28-99.19,87.82-126.61c46.43-27.35,102.15-32.97,152.87-15.42 c46.68,16.15,81.97,47.09,104.89,91.96c5.34,10.45,15.88,14.38,25.66,9.55c9.7-4.79,13.06-15.81,7.99-26.21 c-19.71-40.39-51.51-73.43-91.96-95.54c-40.46-22.12-85.46-31.05-130.12-25.84c-46.93,5.48-88.75,24.22-124.28,55.7 c-66.85,59.23-91.1,158.63-58.97,241.72c19.44,50.27,55.46,91.71,101.42,116.7c32.26,17.54,68.65,26.55,105.71,26.55 c15.74,0,31.61-1.63,47.34-4.92c43.23-9.05,84.17-32.71,115.27-66.61c31.1-33.9,51.11-76.69,56.33-120.47 c0.54-4.55,1.01-9.05,1.5-13.82c0.06-0.63,0.13-1.26,0.2-1.9c0.39,0.35,0.78,0.69,1.18,1.03c7.84,6.5,18.22,5.95,25.23-1.34 C-178.92,255.79-178.71,245.08-185.39,238.12z\"><\/path>\t<path class=\"st0\" d=\"M-447.7,203.31c1.46-2.21,2.97-4.49,4.4-6.79c5.19-8.33,4.12-19.14-2.48-25.14l-2.57-2.33 c-12.24-11.13-24.9-22.63-38.18-32.96c-7.31-5.69-16.22-9.44-24.75-12.64c-8.69-3.26-16.77-1.22-21.63,5.46 c-7.22,9.95-14.19,19.75-19.96,30.36c-7.14,13.12-9.46,26.14-6.9,38.7c2.69,13.16,9.17,24.95,15.78,35.72 c19.07,31.1,43.89,59.82,78.1,90.38c23.53,21.02,45.02,35.99,67.64,47.1c10.23,5.03,19.57,7.5,28.61,7.5 c4.32,0,8.57-0.56,12.81-1.68c17.88-4.7,32.33-14.66,44.1-23.79c7.45-5.78,10.05-13.65,7.34-22.19 c-2.45-7.71-5.59-14.66-9.31-20.65c-11.4-18.34-26.54-33.88-39.84-47.01c-6.1-6.03-13.36-6.63-21-1.74 c-4.54,2.91-9.08,5.89-13.48,8.77c-1.56,1.02-3.11,2.04-4.65,3.05c-21.81-15.15-41.38-34.7-59.81-59.76 c-0.08-0.43,0.09-1.51,0.38-1.99C-451.37,208.86-449.5,206.04-447.7,203.31z M-479.52,190.48c-2.07,3.32-4.02,6.45-6.24,9.38 c-6.09,8.04-6.32,17.2-0.62,25.15c10.5,14.65,19.68,26.23,28.9,36.44c13.58,15.04,28.88,28.34,45.48,39.53 c2.56,1.73,5.46,3.49,8.86,5.4c6.89,3.87,13.72,3.56,20.28-0.91c3.47-2.36,6.95-4.61,10.64-6.99c1.13-0.73,2.27-1.46,3.41-2.21 l1.03,1.11c10.1,10.84,19.66,21.11,26.81,33.82c-9.33,6.92-17.74,11.72-27.62,12.87c-2.73,0.32-6.27-0.37-10.52-2.04 c-14.32-5.62-28.22-14.15-45.09-27.65c-36.99-29.62-65.79-60.88-88.03-95.59c-3.27-5.1-6.01-10.73-8.67-16.18 c-1-2.06-2.01-4.11-3.04-6.15c-1.98-3.91-2.23-8.23-0.76-13.22c2.28-7.72,6.06-15.05,12.18-23.56 c12.63,7.66,23.18,17.22,34.32,27.32l0.53,0.48C-478.28,188.49-478.9,189.49-479.52,190.48z\"><\/path><\/g><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Avlon Europe Limited, Unit 2, Navigation Point, Golds Hill Way, Tipton, DY4 0PY<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"#\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 500 500;\" xml:space=\"preserve\"><style type=\"text\/css\">\t.st0{fill:#978000;}<\/style><g id=\"Edo66V.tif\">\t<g>\t\t<path class=\"st0\" d=\"M744.88,289.59c-12.09-20.27-21.91-40.97-28.58-63.05c-10.71-35.45-13.57-70.95,0.02-106.4 c22.48-58.65,82.57-96.75,142.67-90.54c65.88,6.81,117.04,53.74,127.46,117.63c5.58,34.23-1.33,67.04-14.23,98.66 c-6.05,14.84-13.58,29.08-20.81,44.38c2.83,0,6-0.07,9.17,0.01c27.3,0.65,47.08,13.04,58.2,38.16 c8.28,18.71,16.21,37.59,23.82,56.58c14.27,35.57-5,75.04-40.93,84.02c-5.21,1.3-10.74,1.9-16.12,1.9 c-90.98,0.11-181.96,0.16-272.94,0.05c-44.89-0.05-74.54-43.97-57.83-85.66c7.61-18.99,15.33-37.98,23.86-56.56 c11.4-24.83,30.78-38.36,58.66-38.5c1.88-0.01,3.76-0.01,5.65-0.06C743.31,290.21,743.68,289.99,744.88,289.59z M848.71,430.86 c45.38,0,90.75,0.07,136.13-0.03c16.65-0.04,27.5-15.02,21.5-29.99c-7.61-18.99-15.62-37.83-23.81-56.58 c-4.06-9.29-11.51-13.96-21.87-13.84c-10.87,0.12-21.75,0.24-32.62-0.08c-4.39-0.13-7.11,1.56-10.24,4.46 c-13.76,12.75-27.35,25.79-42.05,37.39c-17.28,13.63-35.5,13.13-53.8,0.52c-15.79-10.88-29.65-23.74-42.55-37.81 c-1.89-2.06-4.98-4.15-7.59-4.25c-12.32-0.44-24.67-0.37-37-0.11c-9.14,0.2-15.96,4.45-19.62,13.09 c-8.06,19.03-16.32,37.99-23.94,57.2c-1.58,3.97-1.77,9.13-0.83,13.34c2.35,10.56,11.21,16.67,22.78,16.68 C758.38,430.88,803.55,430.86,848.71,430.86z M949.46,170.63c-0.45-4.78-0.64-9.6-1.39-14.33c-6.15-38.81-27.53-66.28-63.96-80.19 c-36.82-14.06-71.55-7.54-101.27,18.43c-31.93,27.9-40.38,64.02-31.21,104.31c12.57,55.29,44.02,99.1,85.95,135.98 c10.61,9.34,11.79,9.18,22.47-0.04c32.3-27.89,57.15-61.39,74.41-100.43C943.41,214.09,948.77,192.93,949.46,170.63z\"><\/path>\t\t<path class=\"st0\" d=\"M848.9,99.49c38.9,0.04,70.02,31.17,70.11,70.12c0.09,39.18-31.24,70.53-70.42,70.44 c-38.9-0.08-70.07-31.26-70.11-70.12C778.44,130.7,809.68,99.44,848.9,99.49z M878.84,169.59c-0.07-17.05-13.3-30.07-30.43-29.92 c-16.78,0.14-29.71,13.16-29.77,29.97c-0.06,17.08,13.07,30.26,30.12,30.24C865.85,199.85,878.91,186.7,878.84,169.59z\"><\/path>\t<\/g><\/g><path class=\"st0\" d=\"M1068.64,198.73c0.02-9.08-3.5-15.6-11.07-20.49c-6.23-4.03-12.48-8.27-18.52-12.37 c-5.41-3.67-11-7.46-16.57-11.1c-2.02-1.32-2.59-2.44-2.58-5.02c0.14-21.69,0.11-43.35,0.06-65.48 c-0.07-32.55-22.8-55.29-55.28-55.3c-90.81-0.03-186.23-0.03-291.73-0.01c-31.68,0.01-54.7,23.03-54.74,54.75l-0.01,9.26 c-0.03,18.26-0.06,37.14,0.1,55.71c0.03,3.34-0.8,4.95-3.41,6.64c-6.25,4.03-12.5,8.26-18.54,12.36 c-5.56,3.76-11.31,7.65-17.02,11.37c-7.3,4.75-10.7,11.16-10.68,20.17c0.1,52.11,0.09,105.1,0.09,156.34c0,22.79,0,45.58,0,68.37 c0.01,28.62,18.59,47.12,47.33,47.12c48.64,0.01,97.28,0,145.92,0l56.12,0l56.16,0c18.72,0,37.44,0,56.15,0 c30.42,0,60.85,0,91.27-0.01c28.02-0.01,46.85-18.72,46.85-46.57c0.01-22.58,0-45.15,0-67.73 C1068.54,304.96,1068.54,251.4,1068.64,198.73z M1020.24,217.18v-18.34c0.21,0.14,0.42,0.27,0.63,0.41c3.62,2.35,7.05,4.58,10,7.2 c0.31,0.83,0.21,3.16-0.18,3.91c-2.83,2.37-6.16,4.32-9.69,6.38C1020.74,216.89,1020.49,217.03,1020.24,217.18z M606.49,207.99 c-0.04-0.74,0.2-1.39,0.62-1.69c3.21-2.34,6.54-4.55,10.06-6.89c0.26-0.17,0.51-0.34,0.77-0.51v16.81c-0.28-0.15-0.56-0.3-0.84-0.45 c-3.38-1.83-6.56-3.56-9.67-5.39C606.89,209.54,606.53,208.81,606.49,207.99z M607.03,359.84V253.17l91.23,50.55L607.03,359.84z M945.92,307.97l85.25-52.91v104.89L945.92,307.97z M1031.47,418.34c0.01,2.16,0.03,4.32,0.01,6.48c-0.05,6.57-1.79,8.27-8.48,8.27 c-51.02,0-102.04,0.01-153.05,0h-51.02l-203.04,0c-4.09,0-6.43-0.51-7.57-1.66c-1.13-1.13-1.63-3.4-1.62-7.35 c0-2.13-0.18-4.36-0.37-6.51c-0.39-4.65-0.8-9.47,0.89-12.54c1.7-3.08,6.06-5.3,10.27-7.45c1.85-0.94,3.77-1.92,5.51-2.99 c28.03-17.18,56.07-34.34,84.11-51.51c30.95-18.94,61.89-37.89,92.83-56.85c12.31-7.54,24.03-7.74,35.82-0.59 c30.55,18.53,61.1,37.09,91.64,55.65c33.99,20.65,67.98,41.31,101.99,61.93c1.73,1.05,2.21,1.95,2.14,4.01 C1031.43,410.95,1031.45,414.71,1031.47,418.34z M964.35,66.93c12.21,0,17.65,5.52,17.66,17.88v35.65 c0,38.49-0.01,78.29,0.07,117.44c0,2.75-0.61,3.87-2.85,5.22c-21.42,12.93-43.25,26.32-66.74,40.95c-2.42,1.51-3.74,1.51-6.13,0.03 c-19.28-11.97-35.37-21.75-50.64-30.79c-12.51-7.41-25.12-11.12-37.72-11.12c-12.68,0-25.36,3.75-37.96,11.25 c-12.84,7.64-26.41,15.9-42.71,25.97c-2,1.24-3.01,1.28-4.91,0.2c-22.61-12.74-46.74-26.18-73.78-41.1 c-2.02-1.11-2.54-1.97-2.53-4.17c0.08-34.8,0.08-70.17,0.08-104.39c0-15.55,0-31.1,0.01-46.64c0-10.57,5.84-16.39,16.43-16.39 c35.61-0.02,71.22-0.01,106.84-0.01l95,0C904.43,66.92,934.38,66.92,964.35,66.93z\"><\/path><g>\t<path class=\"st0\" d=\"M481.93,238.12c-10.57-11.01-22.02-22.47-34.03-34.05c-6.95-6.7-16.89-6.92-23.65-0.52 c-12.08,11.44-23.66,23.03-34.41,34.43c-6.41,6.8-5.89,17.32,1.22,24.47c6.9,6.94,17.36,7.47,24.85,1.25 c0.56-0.46,1.1-0.94,1.62-1.42c-0.04,0.34-0.07,0.68-0.1,1.01c-0.43,4.23-0.87,8.61-1.46,12.87 c-6.89,49.41-33.12,92.92-73.83,122.51c-40.76,29.63-90.31,41.15-139.5,32.45c-48.49-8.58-90.68-35.36-118.79-75.41 c-28.11-40.05-38.93-88.78-30.47-137.22c9.27-53.05,41.28-99.19,87.82-126.61c46.43-27.35,102.15-32.97,152.87-15.42 c46.68,16.15,81.97,47.09,104.89,91.96c5.34,10.45,15.88,14.38,25.66,9.55c9.7-4.79,13.06-15.81,7.99-26.21 c-19.71-40.39-51.51-73.43-91.96-95.54c-40.46-22.12-85.46-31.05-130.12-25.84c-46.93,5.48-88.75,24.22-124.28,55.7 c-66.85,59.23-91.1,158.63-58.97,241.72c19.44,50.27,55.46,91.71,101.42,116.7c32.26,17.54,68.65,26.55,105.71,26.55 c15.74,0,31.61-1.63,47.34-4.92c43.23-9.05,84.17-32.71,115.27-66.61c31.1-33.9,51.11-76.69,56.33-120.47 c0.54-4.55,1.01-9.05,1.5-13.82c0.06-0.63,0.13-1.26,0.2-1.9c0.39,0.35,0.78,0.69,1.18,1.03c7.84,6.5,18.22,5.95,25.23-1.34 C488.4,255.79,488.61,245.08,481.93,238.12z\"><\/path>\t<path class=\"st0\" d=\"M219.63,203.31c1.46-2.21,2.97-4.49,4.4-6.79c5.19-8.33,4.12-19.14-2.48-25.14l-2.57-2.33 c-12.24-11.13-24.9-22.63-38.18-32.96c-7.31-5.69-16.22-9.44-24.75-12.64c-8.69-3.26-16.77-1.22-21.63,5.46 c-7.22,9.95-14.19,19.75-19.96,30.36c-7.14,13.12-9.46,26.14-6.9,38.7c2.69,13.16,9.17,24.95,15.78,35.72 c19.07,31.1,43.89,59.82,78.1,90.38c23.53,21.02,45.02,35.99,67.65,47.1c10.23,5.03,19.57,7.5,28.61,7.5 c4.32,0,8.57-0.56,12.81-1.68c17.88-4.7,32.33-14.66,44.1-23.79c7.45-5.78,10.05-13.65,7.34-22.19 c-2.45-7.71-5.59-14.66-9.31-20.65c-11.4-18.34-26.54-33.88-39.84-47.01c-6.1-6.03-13.36-6.63-21-1.74 c-4.54,2.91-9.08,5.89-13.48,8.77c-1.56,1.02-3.11,2.04-4.65,3.05c-21.81-15.15-41.38-34.7-59.81-59.76 c-0.08-0.43,0.09-1.51,0.38-1.99C215.96,208.86,217.82,206.04,219.63,203.31z M187.8,190.48c-2.07,3.32-4.02,6.45-6.24,9.38 c-6.09,8.04-6.32,17.2-0.62,25.15c10.5,14.65,19.68,26.23,28.9,36.44c13.58,15.04,28.88,28.34,45.48,39.53 c2.56,1.73,5.46,3.49,8.86,5.4c6.89,3.87,13.72,3.56,20.28-0.91c3.47-2.36,6.95-4.61,10.64-6.99c1.13-0.73,2.27-1.46,3.41-2.21 l1.03,1.11c10.1,10.84,19.66,21.11,26.81,33.82c-9.33,6.92-17.74,11.72-27.62,12.87c-2.73,0.32-6.27-0.37-10.52-2.04 c-14.32-5.62-28.22-14.15-45.09-27.65c-36.99-29.62-65.79-60.88-88.03-95.59c-3.27-5.1-6.01-10.73-8.67-16.18 c-1-2.06-2.01-4.11-3.04-6.15c-1.98-3.91-2.23-8.23-0.76-13.22c2.28-7.72,6.06-15.05,12.18-23.56 c12.63,7.66,23.18,17.22,34.32,27.32l0.53,0.48C189.04,188.49,188.42,189.49,187.8,190.48z\"><\/path><\/g><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">+44 121 522 2124<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"mailto:info@avloneurope.co.uk\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 500 500\" style=\"enable-background:new 0 0 500 500;\" xml:space=\"preserve\"><style type=\"text\/css\">\t.st0{fill:#978000;}<\/style><g id=\"Edo66V.tif\">\t<g>\t\t<path class=\"st0\" d=\"M744.88,289.59c-12.09-20.27-21.91-40.97-28.58-63.05c-10.71-35.45-13.57-70.95,0.02-106.4 c22.48-58.65,82.57-96.75,142.67-90.54c65.88,6.81,117.04,53.74,127.46,117.63c5.58,34.23-1.33,67.04-14.23,98.66 c-6.05,14.84-13.58,29.08-20.81,44.38c2.83,0,6-0.07,9.17,0.01c27.3,0.65,47.08,13.04,58.2,38.16 c8.28,18.71,16.21,37.59,23.82,56.58c14.27,35.57-5,75.04-40.93,84.02c-5.21,1.3-10.74,1.9-16.12,1.9 c-90.98,0.11-181.96,0.16-272.94,0.05c-44.89-0.05-74.54-43.97-57.83-85.66c7.61-18.99,15.33-37.98,23.86-56.56 c11.4-24.83,30.78-38.36,58.66-38.5c1.88-0.01,3.76-0.01,5.65-0.06C743.31,290.21,743.68,289.99,744.88,289.59z M848.71,430.86 c45.38,0,90.75,0.07,136.13-0.03c16.65-0.04,27.5-15.02,21.5-29.99c-7.61-18.99-15.62-37.83-23.81-56.58 c-4.06-9.29-11.51-13.96-21.87-13.84c-10.87,0.12-21.75,0.24-32.62-0.08c-4.39-0.13-7.11,1.56-10.24,4.46 c-13.76,12.75-27.35,25.79-42.05,37.39c-17.28,13.63-35.5,13.13-53.8,0.52c-15.79-10.88-29.65-23.74-42.55-37.81 c-1.89-2.06-4.98-4.15-7.59-4.25c-12.32-0.44-24.67-0.37-37-0.11c-9.14,0.2-15.96,4.45-19.62,13.09 c-8.06,19.03-16.32,37.99-23.94,57.2c-1.58,3.97-1.77,9.13-0.83,13.34c2.35,10.56,11.21,16.67,22.78,16.68 C758.38,430.88,803.55,430.86,848.71,430.86z M949.46,170.63c-0.45-4.78-0.64-9.6-1.39-14.33c-6.15-38.81-27.53-66.28-63.96-80.19 c-36.82-14.06-71.55-7.54-101.27,18.43c-31.93,27.9-40.38,64.02-31.21,104.31c12.57,55.29,44.02,99.1,85.95,135.98 c10.61,9.34,11.79,9.18,22.47-0.04c32.3-27.89,57.15-61.39,74.41-100.43C943.41,214.09,948.77,192.93,949.46,170.63z\"><\/path>\t\t<path class=\"st0\" d=\"M848.9,99.49c38.9,0.04,70.02,31.17,70.11,70.12c0.09,39.18-31.24,70.53-70.42,70.44 c-38.9-0.08-70.07-31.26-70.11-70.12C778.44,130.7,809.68,99.44,848.9,99.49z M878.84,169.59c-0.07-17.05-13.3-30.07-30.43-29.92 c-16.78,0.14-29.71,13.16-29.77,29.97c-0.06,17.08,13.07,30.26,30.12,30.24C865.85,199.85,878.91,186.7,878.84,169.59z\"><\/path>\t<\/g><\/g><path class=\"st0\" d=\"M500,198.73c0.02-9.08-3.5-15.6-11.07-20.49c-6.23-4.03-12.48-8.27-18.52-12.37c-5.41-3.67-11-7.46-16.57-11.1 c-2.02-1.32-2.59-2.44-2.58-5.02c0.14-21.69,0.11-43.35,0.06-65.48c-0.07-32.55-22.8-55.29-55.28-55.3 c-90.81-0.03-186.23-0.03-291.73-0.01c-31.68,0.01-54.7,23.03-54.74,54.75l-0.01,9.26c-0.03,18.26-0.06,37.14,0.1,55.71 c0.03,3.34-0.8,4.95-3.41,6.64c-6.25,4.03-12.5,8.26-18.54,12.36c-5.56,3.76-11.31,7.65-17.02,11.37 C3.38,183.79-0.02,190.2,0,199.21c0.1,52.11,0.09,105.1,0.09,156.34c0,22.79,0,45.58,0,68.37c0.01,28.62,18.59,47.12,47.33,47.12 c48.64,0.01,97.28,0,145.92,0l56.12,0l56.16,0c18.72,0,37.44,0,56.15,0c30.42,0,60.85,0,91.27-0.01 c28.02-0.01,46.85-18.72,46.85-46.57c0.01-22.58,0-45.15,0-67.73C499.9,304.96,499.9,251.4,500,198.73z M451.6,217.18v-18.34 c0.21,0.14,0.42,0.27,0.63,0.41c3.62,2.35,7.05,4.58,10,7.2c0.31,0.83,0.21,3.16-0.18,3.91c-2.83,2.37-6.16,4.32-9.69,6.38 C452.1,216.89,451.85,217.03,451.6,217.18z M37.85,207.99c-0.04-0.74,0.2-1.39,0.62-1.69c3.21-2.34,6.54-4.55,10.06-6.89 c0.26-0.17,0.51-0.34,0.77-0.51v16.81c-0.28-0.15-0.56-0.3-0.84-0.45c-3.38-1.83-6.56-3.56-9.67-5.39 C38.25,209.54,37.89,208.81,37.85,207.99z M38.39,359.84V253.17l91.23,50.55L38.39,359.84z M377.28,307.97l85.25-52.91v104.89 L377.28,307.97z M462.83,418.34c0.01,2.16,0.03,4.32,0.01,6.48c-0.05,6.57-1.79,8.27-8.48,8.27c-51.02,0-102.04,0.01-153.05,0H250.3 l-203.04,0c-4.09,0-6.43-0.51-7.57-1.66c-1.13-1.13-1.63-3.4-1.62-7.35c0-2.13-0.18-4.36-0.37-6.51c-0.39-4.65-0.8-9.47,0.89-12.54 c1.7-3.08,6.06-5.3,10.27-7.45c1.85-0.94,3.77-1.92,5.51-2.99c28.03-17.18,56.07-34.34,84.11-51.51 c30.95-18.94,61.89-37.89,92.83-56.85c12.31-7.54,24.03-7.74,35.82-0.59c30.55,18.53,61.1,37.09,91.64,55.65 c33.99,20.65,67.98,41.31,101.99,61.93c1.73,1.05,2.21,1.95,2.14,4.01C462.79,410.95,462.81,414.71,462.83,418.34z M395.71,66.93 c12.21,0,17.65,5.52,17.66,17.88v35.65c0,38.49-0.01,78.29,0.07,117.44c0,2.75-0.61,3.87-2.85,5.22 c-21.42,12.93-43.25,26.32-66.74,40.95c-2.42,1.51-3.74,1.51-6.13,0.03c-19.28-11.97-35.37-21.75-50.64-30.79 c-12.51-7.41-25.12-11.12-37.72-11.12c-12.68,0-25.36,3.75-37.96,11.25c-12.84,7.64-26.41,15.9-42.71,25.97 c-2,1.24-3.01,1.28-4.91,0.2c-22.61-12.74-46.74-26.18-73.78-41.1c-2.02-1.11-2.54-1.97-2.53-4.17c0.08-34.8,0.08-70.17,0.08-104.39 c0-15.55,0-31.1,0.01-46.64c0-10.57,5.84-16.39,16.43-16.39c35.61-0.02,71.22-0.01,106.84-0.01l95,0 C335.79,66.92,365.74,66.92,395.71,66.93z\"><\/path><g>\t<path class=\"st0\" d=\"M-185.39,238.12c-10.57-11.01-22.02-22.47-34.03-34.05c-6.95-6.7-16.89-6.92-23.65-0.52 c-12.08,11.44-23.66,23.03-34.41,34.43c-6.41,6.8-5.89,17.32,1.22,24.47c6.9,6.94,17.36,7.47,24.85,1.25 c0.56-0.46,1.1-0.94,1.62-1.42c-0.04,0.34-0.07,0.68-0.1,1.01c-0.43,4.23-0.87,8.61-1.46,12.87 c-6.89,49.41-33.12,92.92-73.83,122.51c-40.76,29.63-90.31,41.15-139.5,32.45c-48.49-8.58-90.68-35.36-118.79-75.41 c-28.11-40.05-38.93-88.78-30.47-137.22c9.27-53.05,41.28-99.19,87.82-126.61c46.43-27.35,102.15-32.97,152.87-15.42 c46.68,16.15,81.97,47.09,104.89,91.96c5.34,10.45,15.88,14.38,25.66,9.55c9.7-4.79,13.06-15.81,7.99-26.21 c-19.71-40.39-51.51-73.43-91.96-95.54c-40.46-22.12-85.46-31.05-130.12-25.84c-46.93,5.48-88.75,24.22-124.28,55.7 c-66.85,59.23-91.1,158.63-58.97,241.72c19.44,50.27,55.46,91.71,101.42,116.7c32.26,17.54,68.65,26.55,105.71,26.55 c15.74,0,31.61-1.63,47.34-4.92c43.23-9.05,84.17-32.71,115.27-66.61c31.1-33.9,51.11-76.69,56.33-120.47 c0.54-4.55,1.01-9.05,1.5-13.82c0.06-0.63,0.13-1.26,0.2-1.9c0.39,0.35,0.78,0.69,1.18,1.03c7.84,6.5,18.22,5.95,25.23-1.34 C-178.92,255.79-178.71,245.08-185.39,238.12z\"><\/path>\t<path class=\"st0\" d=\"M-447.7,203.31c1.46-2.21,2.97-4.49,4.4-6.79c5.19-8.33,4.12-19.14-2.48-25.14l-2.57-2.33 c-12.24-11.13-24.9-22.63-38.18-32.96c-7.31-5.69-16.22-9.44-24.75-12.64c-8.69-3.26-16.77-1.22-21.63,5.46 c-7.22,9.95-14.19,19.75-19.96,30.36c-7.14,13.12-9.46,26.14-6.9,38.7c2.69,13.16,9.17,24.95,15.78,35.72 c19.07,31.1,43.89,59.82,78.1,90.38c23.53,21.02,45.02,35.99,67.64,47.1c10.23,5.03,19.57,7.5,28.61,7.5 c4.32,0,8.57-0.56,12.81-1.68c17.88-4.7,32.33-14.66,44.1-23.79c7.45-5.78,10.05-13.65,7.34-22.19 c-2.45-7.71-5.59-14.66-9.31-20.65c-11.4-18.34-26.54-33.88-39.84-47.01c-6.1-6.03-13.36-6.63-21-1.74 c-4.54,2.91-9.08,5.89-13.48,8.77c-1.56,1.02-3.11,2.04-4.65,3.05c-21.81-15.15-41.38-34.7-59.81-59.76 c-0.08-0.43,0.09-1.51,0.38-1.99C-451.37,208.86-449.5,206.04-447.7,203.31z M-479.52,190.48c-2.07,3.32-4.02,6.45-6.24,9.38 c-6.09,8.04-6.32,17.2-0.62,25.15c10.5,14.65,19.68,26.23,28.9,36.44c13.58,15.04,28.88,28.34,45.48,39.53 c2.56,1.73,5.46,3.49,8.86,5.4c6.89,3.87,13.72,3.56,20.28-0.91c3.47-2.36,6.95-4.61,10.64-6.99c1.13-0.73,2.27-1.46,3.41-2.21 l1.03,1.11c10.1,10.84,19.66,21.11,26.81,33.82c-9.33,6.92-17.74,11.72-27.62,12.87c-2.73,0.32-6.27-0.37-10.52-2.04 c-14.32-5.62-28.22-14.15-45.09-27.65c-36.99-29.62-65.79-60.88-88.03-95.59c-3.27-5.1-6.01-10.73-8.67-16.18 c-1-2.06-2.01-4.11-3.04-6.15c-1.98-3.91-2.23-8.23-0.76-13.22c2.28-7.72,6.06-15.05,12.18-23.56 c12.63,7.66,23.18,17.22,34.32,27.32l0.53,0.48C-478.28,188.49-478.9,189.49-479.52,190.48z\"><\/path><\/g><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">info@avloneurope.co.uk<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-9dea448 lakit-col-width-auto-no elementor-invisible\" data-id=\"9dea448\" data-element_type=\"column\" data-settings=\"{"animation":"lakitShortFadeInUp","animation_delay":500}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-0016711 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"0016711\" data-element_type=\"widget\" data-settings=\"{"_animation":"lakitShortFadeInUp","_animation_delay":300}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"elementor-heading-title elementor-size-default\">ENQUIRE NOW<\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c13f6e3 elementor-widget lastudio-kit elementor-lakit-contactform7\" data-id=\"c13f6e3\" data-element_type=\"widget\" data-widget_type=\"lakit-contactform7.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\n<div class=\"wpcf7 no-js\" id=\"wpcf7-f2184-o1\" lang=\"en-US\" dir=\"ltr\" data-wpcf7-id=\"2184\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"><\/p> <ul><\/ul><\/div>\n<form action=\"\/avloneurope6\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F1362#wpcf7-f2184-o1\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<div style=\"display: none;\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"2184\" \/>\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"6.0.2\" \/>\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" \/>\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f2184-o1\" \/>\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/>\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/>\n<\/div>\n<div class=\"lakit-row\">\n<div class=\"lakit-col\"><span class=\"wpcf7-form-control-wrap\" data-name=\"your-name\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" value=\"\" type=\"text\" name=\"your-name\" \/><\/span><\/div>\n<div class=\"lakit-col\"><span class=\"wpcf7-form-control-wrap\" data-name=\"your-email\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email*\" value=\"\" type=\"email\" name=\"your-email\" \/><\/span><\/div>\n<\/div>\n\n<div class=\"lakit-row\">\n<div class=\"lakit-col\"><span class=\"wpcf7-form-control-wrap\" data-name=\"your-phone\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone*\" value=\"\" type=\"text\" name=\"your-phone\" \/><\/span><\/div>\n<div class=\"lakit-col\"><span class=\"wpcf7-form-control-wrap\" data-name=\"salon-name\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Salon Name*\" value=\"\" type=\"text\" name=\"salon-name\" \/><\/span><\/div>\n<\/div>\n\n\n\n<div class=\"lakit-row\">\n<div class=\"lakit-col\"><span class=\"wpcf7-form-control-wrap\" data-name=\"your-message\"><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" class=\"wpcf7-form-control wpcf7-textarea wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message*\" name=\"your-message\"><\/textarea><\/span><\/div>\n<\/div>\n<div class=\"lakit-row\">\n<div class=\"lakit-col\"><input class=\"wpcf7-form-control wpcf7-submit has-spinner\" type=\"submit\" value=\"Send Message\" \/><\/div>\n<\/div><p style=\"display: none !important;\" class=\"akismet-fields-container\" data-prefix=\"_wpcf7_ak_\"><label>Δ<textarea name=\"_wpcf7_ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"><\/textarea><\/label><input type=\"hidden\" id=\"ak_js_1\" name=\"_wpcf7_ak_js\" value=\"172\"\/><script>document.getElementById( \"ak_js_1\" ).setAttribute( \"value\", ( new Date() ).getTime() );<\/script><\/p><div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div>\n<\/form>\n<\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-4a7baca8 elementor-section-boxed elementor-section-height-default elementor-section-height-default e-parent\" data-id=\"4a7baca8\" data-element_type=\"section\" data-settings=\"{"background_background":"classic"}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2b2a5cc1 lakit-col-width-auto-no\" data-id=\"2b2a5cc1\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7700b702 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"7700b702\" data-element_type=\"widget\" data-settings=\"{"_animation":"lakitShortFadeInUp","_animation_delay":200}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Leave email to get 30% OFF<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7fd71ccd elementor-invisible elementor-widget lastudio-kit elementor-lakit-subscribe-form\" data-id=\"7fd71ccd\" data-element_type=\"widget\" data-settings=\"{"_animation":"lakitShortFadeInUp","_animation_delay":400}\" data-widget_type=\"lakit-subscribe-form.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>.lakit-subscribe-form,.lakit-subscribe-form__submit{position:relative;max-width:100%}.lakit-subscribe-form__fields{display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:stretch}.lakit-subscribe-form__submit{display:flex;justify-content:center;align-items:center;flex:0 1 auto}.lakit-subscribe-form__submit span{vertical-align:middle;display:inline-block}.lakit-subscribe-form__submit:before{box-sizing:border-box;position:absolute;visibility:hidden;top:50%;left:50%;width:26px;height:26px;margin-top:-13px;margin-left:-13px;border-radius:50%;border:3px solid #fff;border-top-color:#000;content:\"\";animation:.6s linear infinite lakit-spinner}.lakit-subscribe-form__submit.loading i,.lakit-subscribe-form__submit.loading span{visibility:hidden}.lakit-subscribe-form__submit.loading:before{visibility:visible}.lakit-subscribe-form__message{position:absolute;top:100%;width:100%;visibility:hidden;color:#4ab866;font-size:14px}.lakit-subscribe-form__message .lakit-subscribe-form__message-inner{display:flex;justify-content:center;align-items:center;text-align:center}.lakit-subscribe-form .elementor-icon{color:inherit}.lakit-subscribe-form--response-error .lakit-subscribe-form__message{color:#d94f4f}.lakit-subscribe-form--inline-layout .lakit-subscribe-form__input-group{display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:flex-start}.lakit-subscribe-form--inline-layout .lakit-subscribe-form__input-group .lakit-subscribe-form__fields{flex:1 1 auto;width:100px}.lakit-subscribe-form--inline-layout .lakit-subscribe-form__input-group .lakit-subscribe-form__submit{flex:0 1 auto;width:auto}.lakit-subscribe-form--block-layout .lakit-subscribe-form__input-group{display:flex;flex-flow:column wrap;justify-content:flex-start;align-items:center}.lakit-subscribe-form--block-layout .lakit-subscribe-form__input-group .lakit-subscribe-form__fields{width:100%}<\/style><div class=\"lakit-subscribe-form lakit-subscribe-form--inline-layout\" data-settings=\"{"redirect":false,"redirect_url":"#","use_target_list_id":false,"target_list_id":""}\">\n\t<form method=\"POST\" action=\"#\" class=\"lakit-subscribe-form__form\">\n\t\t<div class=\"lakit-subscribe-form__input-group\">\n\t\t\t<div class=\"lakit-subscribe-form__fields\">\n\t\t\t\t<input class=\"lakit-subscribe-form__input lakit-subscribe-form__mail-field\" type=\"email\" name=\"email\" placeholder=\"Your Email\" autocomplete=\"email\" data-instance-data=\"[]\"\/><\/div>\n <a class=\"lakit-subscribe-form__submit elementor-button elementor-size-md\" href=\"#\"><span class=\"lakit-subscribe-form__submit-text\">Subscribe<\/span><\/a>\n\t\t<\/div>\n\t\t<div class=\"lakit-subscribe-form__message\"><div class=\"lakit-subscribe-form__message-inner\"><span><\/span><\/div><\/div>\n\t<\/form>\n<\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>OUR INFORMATION Avlon Europe Limited, Unit 2, Navigation Point, Golds Hill Way, Tipton, DY4 0PY +44 121 522 2124 info@avloneurope.co.uk ENQUIRE NOW Δ Leave email to get 30% OFF Subscribe<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1362","page","type-page","status-publish","hentry"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/pages\/1362","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1362"}],"version-history":[{"count":106,"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/pages\/1362\/revisions"}],"predecessor-version":[{"id":9007,"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/pages\/1362\/revisions\/9007"}],"wp:attachment":[{"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1362"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}