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":4590,"date":"2024-08-26T14:09:47","date_gmt":"2024-08-26T14:09:47","guid":{"rendered":"https:\/\/14digitalapps.co.uk\/avloneurope6\/?page_id=4590"},"modified":"2024-12-27T14:10:43","modified_gmt":"2024-12-27T14:10:43","slug":"affirmcare","status":"publish","type":"page","link":"https:\/\/14digitalapps.co.uk\/avloneurope6\/?page_id=4590","title":{"rendered":"AffirmCare"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"4590\" class=\"elementor elementor-4590\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c956260 e-con-full e-flex lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"c956260\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8686ae5 elementor-widget elementor-widget-slider_revolution\" data-id=\"8686ae5\" 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=\"affirm-relaxers-1\" data-id=\"11\" id=\"SR7_11_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_11_1-36\" data-key=\"36\">\n\t\t\t\t\t\t\t<sr7-txt id=\"SR7_11_1-36-1\" class=\"sr7-layer\">AFFIRMCARE<\/sr7-txt>\n\t\t\t\t\t\t<\/sr7-slide>\n\t\t\t\t\t\t<sr7-slide id=\"SR7_11_1-37\" data-key=\"37\">\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\/10\/AffirmCare.jpg\" data-libid=\"6889\" data-lib=\"medialibrary\" title=\"AffirmCare\" width=\"0\" height=\"0\" data-dbsrc=\"Ly8xNGRpZ2l0YWxhcHBzLmNvLnVrL2F2bG9uZXVyb3BlNi93cC1jb250ZW50L3VwbG9hZHMvMjAyNC8xMC9BZmZpcm1DYXJlLmpwZw==\"\/>\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_11_1\"] = {cn:0,state:false,fn: function() { if (_tpt!==undefined && _tpt.prepareModuleHeight !== undefined) { _tpt.prepareModuleHeight({id:\"SR7_11_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_11_1\"].state=true;} else if((SR7.PMH[\"SR7_11_1\"].cn++)<100)\tsetTimeout( SR7.PMH[\"SR7_11_1\"].fn,19);}};SR7.PMH[\"SR7_11_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\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-53cfe5f3 elementor-section-boxed elementor-section-height-default elementor-section-height-default e-parent\" data-id=\"53cfe5f3\" 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-100 elementor-top-column elementor-element elementor-element-7462cc3 lakit-col-width-auto-no\" data-id=\"7462cc3\" 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-4d1862a3 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"4d1862a3\" 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\">AFFIRMCARE SCALP THERAPY - \nNEW PRODUCTS LAUNCHING SOON<\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-361c2b44 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"361c2b44\" data-element_type=\"widget\" data-settings=\"{"_animation":"lakitShortFadeInUp","_animation_delay":300}\" data-widget_type=\"text-editor.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-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}<\/style>\t\t\t\t<span id=\"page25R_mcid15\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">AffirmCare Scalp Therapy is a premium haircare\u00a0<\/span><\/span><span id=\"page25R_mcid16\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">line , developed through state-of-the-art nano technology. <br\/>It is formulated with functional and therapeutic ingredients that\u00a0<\/span><\/span><span id=\"page25R_mcid17\" class=\"markedContent\"><span dir=\"ltr\" role=\"presentation\">are proven effective in promoting scalp health and hair fibre integrity.<\/span><\/span>\t\t\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\t<\/div>\n\t\t<\/section>\n\t\t<div class=\"elementor-element elementor-element-1db1721 e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"1db1721\" 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-56e2e2f elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"56e2e2f\" data-element_type=\"widget\" data-widget_type=\"divider.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-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}<\/style>\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\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-dd6d6dd elementor-section-full_width elementor-section-height-default elementor-section-height-default e-parent\" data-id=\"dd6d6dd\" 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-e0b5573 lakit-col-width-auto-no\" data-id=\"e0b5573\" 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-ba65970 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"ba65970\" 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\">AFFIRMCARE MOISTURIGHT PRODUCTS<\/div>\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<div class=\"elementor-element elementor-element-adfcc32 e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"adfcc32\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-0429d8a e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"0429d8a\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9e6d91a lakit-equal-height-disable elementor-invisible elementor-widget lastudio-kit elementor-lakit-image-box\" data-id=\"9e6d91a\" data-element_type=\"widget\" data-settings=\"{"_animation":"zoomIn"}\" data-widget_type=\"lakit-image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>.lakit-imagebox.floating-style .lakit-imagebox__body,.lakit-imagebox.style-modern .lakit-imagebox__body{border-radius:10px;box-shadow:-1.216px 6.894px 25px 0 rgba(0,0,0,.07);margin-left:auto;margin-right:auto}.lakit-imagebox__title_icon svg,.lakit-imagebox__top_icon_inner svg{width:1em;height:1em}.lakit-imagebox{transition:.4s;--lakit-imagebox-icon-spacing:10px;--lakit-imagebox-icon-vspacing:0}.lakit-imagebox>a{text-decoration:none;outline:0}.lakit-imagebox__header{transition:.4s;position:relative;overflow:hidden}.lakit-imagebox__header img{display:block;transition:.4s;-webkit-backface-visibility:hidden;backface-visibility:hidden}.lakit-imagebox__title_icon,.lakit-imagebox__title_icon i,.lakit-imagebox__title_icon svg,.lakit-imagebox__title_text,.lakit-imagebox__top_icon_inner,.lakit-imagebox__top_icon_inner svg{vertical-align:middle;display:inline-block}.lakit-imagebox__content-align-center{text-align:center}.lakit-imagebox__content-align-center img{margin:0 auto}.lakit-imagebox__content-align-left{text-align:left}.lakit-imagebox__content-align-left img{margin-right:auto}.lakit-imagebox__content-align-right{text-align:right}.lakit-imagebox.text-right .lakit-imagebox__header,.lakit-imagebox__content-align-right img{margin-left:auto}.lakit-imagebox__body{padding:2rem;position:relative}.lakit-imagebox__button_wrapper{line-height:1;margin-top:20px}.lakit-imagebox__desc,.lakit-imagebox__title{margin:0 0 1rem;transition:.4s}.lakit-imagebox__title{font-size:1.5rem}.lakit-imagebox__title a{color:inherit;line-height:inherit;text-decoration:inherit}.lakit-imagebox__title_text+.lakit-imagebox__title_icon{padding-left:var(--lakit-imagebox-icon-spacing);padding-right:0}.lakit-imagebox__title_icon{padding-right:var(--lakit-imagebox-icon-spacing);transform:translateY(var(--lakit-imagebox-icon-vspacing))}.lakit-imagebox.hover-border-bottom .lakit-imagebox__body,.lakit-imagebox.shadow-line .lakit-imagebox__body{position:relative}.lakit-imagebox.hover-border-bottom .lakit-imagebox__body:before{position:absolute;content:\"\";bottom:-1px;left:0;height:3px;width:100%;background-color:var(--lakit-primary-color);transition:transform 250ms ease-in;transform:scaleX(0);transform-origin:0 50%}.lakit-imagebox.hover-border-bottom.hover_from_left .lakit-imagebox__body{transform-origin:right center}.lakit-imagebox.hover-border-bottom.hover_from_center .lakit-imagebox__body{transform-origin:center center}.lakit-imagebox.hover-border-bottom:hover .lakit-imagebox__body:before{transform:scaleX(1);transform-origin:100% 50%}.lakit-imagebox.hover-border-bottom:hover.hover_from_left .lakit-imagebox__body{transform-origin:left center}.lakit-imagebox.hover-border-bottom:hover.hover_from_center .lakit-imagebox__body{transform-origin:center center}.lakit-imagebox.style-modern{overflow:inherit}.lakit-imagebox.style-modern .lakit-imagebox__body{background-color:rgba(255,255,255,.9);width:calc(100% - 40px);padding:30px 40px;position:relative;z-index:2;margin-top:-20px}.lakit-imagebox.floating-style .lakit-imagebox__body{background-color:#fff;width:calc(100% - 40px);position:relative;padding:30px 35px;transition:.4s;height:90px;margin-top:-40px}.lakit-imagebox.floating-style .lakit-imagebox__body:after{bottom:-20px;width:calc(100% - 40px);z-index:-2}.lakit-imagebox.floating-style .lakit-iconbox__button_wrapper,.lakit-imagebox.floating-style .lakit-imagebox__desc{opacity:0;transition:.4s ease-in-out}.lakit-imagebox.floating-style:hover .lakit-imagebox__body{height:220px}.lakit-imagebox.floating-style:hover .lakit-iconbox__button_wrapper,.lakit-imagebox.floating-style:hover .lakit-imagebox__body:after,.lakit-imagebox.floating-style:hover .lakit-imagebox__body:before,.lakit-imagebox.floating-style:hover .lakit-imagebox__desc{opacity:1}.lakit-imagebox.style-sideline .lakit-imagebox__body{padding-left:0;padding-right:0}.lakit-imagebox.style-sideline .lakit-imagebox__body_inner{padding-left:40px;padding-right:40px;border-style:solid;border-color:var(--lakit-primary-color);border-top-width:0!important;border-bottom-width:0!important;transition:border-color .3s}.lakit-imagebox.style-sideline.lakit-imagebox__content-align-right .lakit-imagebox__body_inner,.rtl .lakit-imagebox.style-sideline.lakit-imagebox__content-align-center .lakit-imagebox__body_inner{border-left-width:0!important}.lakit-imagebox.style-sideline.lakit-imagebox__content-align-left .lakit-imagebox__body_inner,.ltr .lakit-imagebox.style-sideline.lakit-imagebox__content-align-center .lakit-imagebox__body_inner{border-right-width:0!important}.lakit-imagebox.style-sideline .lakit-iconbox__button_wrapper{padding-left:40px;padding-right:40px}.lakit-imagebox.shadow-line .lakit-imagebox__body:after,.lakit-imagebox.shadow-line .lakit-imagebox__body:before{position:absolute;content:\"\";left:0;bottom:0;height:100%;background-color:#fff;width:10px;box-shadow:-1.216px 6.894px 15px 0 rgba(0,0,0,.07)}.lakit-imagebox.shadow-line .lakit-imagebox__body:after{left:inherit;right:0;height:calc(100% + 40px)}.lakit-imagebox__top_icon_inner{font-size:3em;text-align:center;transition:.3s}.lakit-imagebox__header:before{content:'';position:absolute;z-index:1;transition:.5s}.lakit-imagebox.text-center .lakit-imagebox__header{margin-left:auto;margin-right:auto}<\/style><div class=\"lakit-imagebox text-center lakit-imagebox__content-align-center hover-border-bottom hover_from_right\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-moisturright-leave-in-detangler\/\"><div class=\"lakit-imagebox__header figure__object_fit\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1182\" height=\"800\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/5-1.jpg\" class=\"lakit-imagebox__main_img attachment-full size-full wp-image-6871\" alt=\"\" \/><\/div><\/a><div class=\"lakit-imagebox__body\"><div class=\"lakit-imagebox__body_inner\"><h3 class=\"lakit-imagebox__title\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-moisturright-leave-in-detangler\/\"><span class=\"lakit-imagebox__title_text\">AFFIRMCARE \u2013 MOISTURRIGHT LEAVE-IN DETANGLER<\/span><\/a><\/h3><\/div><div class=\"lakit-iconbox__button_wrapper\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-moisturright-leave-in-detangler\/\" class=\"elementor-button-link elementor-button elementor-btn-align-icon-\"><span class=\"elementor-button-content-wrapper e-icon-align-\"><span class=\"elementor-button-text\">READ MORE<\/span><\/span><\/a><\/div><\/div><\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7b755da e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"7b755da\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fb320ba lakit-equal-height-disable elementor-invisible elementor-widget lastudio-kit elementor-lakit-image-box\" data-id=\"fb320ba\" data-element_type=\"widget\" data-settings=\"{"_animation":"zoomIn"}\" data-widget_type=\"lakit-image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"lakit-imagebox text-center lakit-imagebox__content-align-center hover-border-bottom hover_from_right\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-moisturright-hair-repair-masque\/\"><div class=\"lakit-imagebox__header figure__object_fit\"><img decoding=\"async\" width=\"1182\" height=\"800\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/2-1.jpg\" class=\"lakit-imagebox__main_img attachment-full size-full wp-image-6872\" alt=\"\" \/><\/div><\/a><div class=\"lakit-imagebox__body\"><div class=\"lakit-imagebox__body_inner\"><h3 class=\"lakit-imagebox__title\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-moisturright-hair-repair-masque\/\"><span class=\"lakit-imagebox__title_text\">AFFIRMCARE \u2013 MOISTURRIGHT HAIR REPAIR MASQUE<\/span><\/a><\/h3><\/div><div class=\"lakit-iconbox__button_wrapper\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-moisturright-hair-repair-masque\/\" class=\"elementor-button-link elementor-button elementor-btn-align-icon-\"><span class=\"elementor-button-content-wrapper e-icon-align-\"><span class=\"elementor-button-text\">READ MORE<\/span><\/span><\/a><\/div><\/div><\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cd74b56 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"cd74b56\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9de32e7 lakit-equal-height-disable elementor-invisible elementor-widget lastudio-kit elementor-lakit-image-box\" data-id=\"9de32e7\" data-element_type=\"widget\" data-settings=\"{"_animation":"zoomIn"}\" data-widget_type=\"lakit-image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"lakit-imagebox text-center lakit-imagebox__content-align-center hover-border-bottom hover_from_right\"><a href=\"http:\/\/roduct\/affirmcare-moisturright-nourishing-conditioner\/\"><div class=\"lakit-imagebox__header figure__object_fit\"><img loading=\"lazy\" decoding=\"async\" width=\"1182\" height=\"800\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/09\/10.jpg\" class=\"lakit-imagebox__main_img attachment-full size-full wp-image-6893\" alt=\"\" \/><\/div><\/a><div class=\"lakit-imagebox__body\"><div class=\"lakit-imagebox__body_inner\"><h3 class=\"lakit-imagebox__title\"><a href=\"http:\/\/roduct\/affirmcare-moisturright-nourishing-conditioner\/\"><span class=\"lakit-imagebox__title_text\">AFFIRMCARE \u2013 MOISTURRIGHT NOURISHING CONDITIONER<\/span><\/a><\/h3><\/div><div class=\"lakit-iconbox__button_wrapper\"><a href=\"http:\/\/roduct\/affirmcare-moisturright-nourishing-conditioner\/\" class=\"elementor-button-link elementor-button elementor-btn-align-icon-\"><span class=\"elementor-button-content-wrapper e-icon-align-\"><span class=\"elementor-button-text\">READ MORE<\/span><\/span><\/a><\/div><\/div><\/div>\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<div class=\"elementor-element elementor-element-4c49cab e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"4c49cab\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-5d21913 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"5d21913\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-182e7e1 lakit-equal-height-disable elementor-invisible elementor-widget lastudio-kit elementor-lakit-image-box\" data-id=\"182e7e1\" data-element_type=\"widget\" data-settings=\"{"_animation":"zoomIn"}\" data-widget_type=\"lakit-image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"lakit-imagebox text-center lakit-imagebox__content-align-center hover-border-bottom hover_from_right\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-moisturright-nourishing-shampoo\/\"><div class=\"lakit-imagebox__header figure__object_fit\"><img loading=\"lazy\" decoding=\"async\" width=\"1182\" height=\"800\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/11.jpg\" class=\"lakit-imagebox__main_img attachment-full size-full wp-image-6874\" alt=\"\" \/><\/div><\/a><div class=\"lakit-imagebox__body\"><div class=\"lakit-imagebox__body_inner\"><h3 class=\"lakit-imagebox__title\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-moisturright-nourishing-shampoo\/\"><span class=\"lakit-imagebox__title_text\">AFFIRMCARE \u2013 MOISTURRIGHT NOURISHING SHAMPOO<\/span><\/a><\/h3><\/div><div class=\"lakit-iconbox__button_wrapper\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-moisturright-nourishing-shampoo\/\" class=\"elementor-button-link elementor-button elementor-btn-align-icon-\"><span class=\"elementor-button-content-wrapper e-icon-align-\"><span class=\"elementor-button-text\">READ MORE<\/span><\/span><\/a><\/div><\/div><\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4923e61 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"4923e61\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f4fa6d4 lakit-equal-height-disable elementor-invisible elementor-widget lastudio-kit elementor-lakit-image-box\" data-id=\"f4fa6d4\" data-element_type=\"widget\" data-settings=\"{"_animation":"zoomIn"}\" data-widget_type=\"lakit-image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"lakit-imagebox text-center lakit-imagebox__content-align-center hover-border-bottom hover_from_right\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-moisturright-clarifying-shampoo\/\"><div class=\"lakit-imagebox__header figure__object_fit\"><img loading=\"lazy\" decoding=\"async\" width=\"1182\" height=\"800\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/12.jpg\" class=\"lakit-imagebox__main_img attachment-full size-full wp-image-6875\" alt=\"\" \/><\/div><\/a><div class=\"lakit-imagebox__body\"><div class=\"lakit-imagebox__body_inner\"><h3 class=\"lakit-imagebox__title\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-moisturright-clarifying-shampoo\/\"><span class=\"lakit-imagebox__title_text\">AFFIRMCARE \u2013 MOISTURRIGHT CLARIFYING SHAMPOO<\/span><\/a><\/h3><\/div><div class=\"lakit-iconbox__button_wrapper\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-moisturright-clarifying-shampoo\/\" class=\"elementor-button-link elementor-button elementor-btn-align-icon-\"><span class=\"elementor-button-content-wrapper e-icon-align-\"><span class=\"elementor-button-text\">READ MORE<\/span><\/span><\/a><\/div><\/div><\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d506ced e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"d506ced\" data-element_type=\"container\">\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e4411d3 e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"e4411d3\" 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-1707a76 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"1707a76\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\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-37ebb8b elementor-section-full_width elementor-section-height-default elementor-section-height-default e-parent\" data-id=\"37ebb8b\" 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-7c92c57 lakit-col-width-auto-no\" data-id=\"7c92c57\" 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-b585eff elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"b585eff\" data-element_type=\"widget\" data-settings=\"{"_animation":"lakitShortFadeInUp","_animation_delay":300,"lakit_floating_fx":"yes"}\" 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\">AFFIRMCARE STYLERIGHT PRODUCTS<\/div>\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<div class=\"elementor-element elementor-element-dd46e08 e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"dd46e08\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d9534a5 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"d9534a5\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8b01e91 lakit-equal-height-disable elementor-invisible elementor-widget lastudio-kit elementor-lakit-image-box\" data-id=\"8b01e91\" data-element_type=\"widget\" data-settings=\"{"_animation":"zoomIn"}\" data-widget_type=\"lakit-image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"lakit-imagebox text-center lakit-imagebox__content-align-center hover-border-bottom hover_from_right\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-styleright-laminate-spray\/\"><div class=\"lakit-imagebox__header figure__object_fit\"><img loading=\"lazy\" decoding=\"async\" width=\"1182\" height=\"800\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/6-1.jpg\" class=\"lakit-imagebox__main_img attachment-full size-full wp-image-6876\" alt=\"\" \/><\/div><\/a><div class=\"lakit-imagebox__body\"><div class=\"lakit-imagebox__body_inner\"><h3 class=\"lakit-imagebox__title\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-styleright-laminate-spray\/\"><span class=\"lakit-imagebox__title_text\">AFFIRMCARE STYLERIGHT LAMINATE SPRAY<\/span><\/a><\/h3><\/div><div class=\"lakit-iconbox__button_wrapper\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-styleright-laminate-spray\/\" class=\"elementor-button-link elementor-button elementor-btn-align-icon-\"><span class=\"elementor-button-content-wrapper e-icon-align-\"><span class=\"elementor-button-text\">READ MORE<\/span><\/span><\/a><\/div><\/div><\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6ff1e47 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"6ff1e47\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-127bade lakit-equal-height-disable elementor-invisible elementor-widget lastudio-kit elementor-lakit-image-box\" data-id=\"127bade\" data-element_type=\"widget\" data-settings=\"{"_animation":"zoomIn"}\" data-widget_type=\"lakit-image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"lakit-imagebox text-center lakit-imagebox__content-align-center hover-border-bottom hover_from_right\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-styleright-light-hairdress-creme\/\"><div class=\"lakit-imagebox__header figure__object_fit\"><img loading=\"lazy\" decoding=\"async\" width=\"606\" height=\"410\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/9.jpg\" class=\"lakit-imagebox__main_img attachment-full size-full wp-image-6877\" alt=\"\" \/><\/div><\/a><div class=\"lakit-imagebox__body\"><div class=\"lakit-imagebox__body_inner\"><h3 class=\"lakit-imagebox__title\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-styleright-light-hairdress-creme\/\"><span class=\"lakit-imagebox__title_text\">AFFIRMCARE \u2013 STYLERIGHT LIGHT HAIRDRESS CREME<\/span><\/a><\/h3><\/div><div class=\"lakit-iconbox__button_wrapper\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-styleright-light-hairdress-creme\/\" class=\"elementor-button-link elementor-button elementor-btn-align-icon-\"><span class=\"elementor-button-content-wrapper e-icon-align-\"><span class=\"elementor-button-text\">READ MORE<\/span><\/span><\/a><\/div><\/div><\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-99a46bc e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"99a46bc\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-674cfbd lakit-equal-height-disable elementor-invisible elementor-widget lastudio-kit elementor-lakit-image-box\" data-id=\"674cfbd\" data-element_type=\"widget\" data-settings=\"{"_animation":"zoomIn"}\" data-widget_type=\"lakit-image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"lakit-imagebox text-center lakit-imagebox__content-align-center hover-border-bottom hover_from_right\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-styleright-foam-wrap-lotion\/\"><div class=\"lakit-imagebox__header figure__object_fit\"><img loading=\"lazy\" decoding=\"async\" width=\"606\" height=\"410\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/09\/8.jpg\" class=\"lakit-imagebox__main_img attachment-full size-full wp-image-5735\" alt=\"\" \/><\/div><\/a><div class=\"lakit-imagebox__body\"><div class=\"lakit-imagebox__body_inner\"><h3 class=\"lakit-imagebox__title\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-styleright-foam-wrap-lotion\/\"><span class=\"lakit-imagebox__title_text\">AFFIRMCARE \u2013 STYLERIGHT FOAM WRAP LOTION<\/span><\/a><\/h3><\/div><div class=\"lakit-iconbox__button_wrapper\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-styleright-foam-wrap-lotion\/\" class=\"elementor-button-link elementor-button elementor-btn-align-icon-\"><span class=\"elementor-button-content-wrapper e-icon-align-\"><span class=\"elementor-button-text\">READ MORE<\/span><\/span><\/a><\/div><\/div><\/div>\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<div class=\"elementor-element elementor-element-080aef5 e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"080aef5\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-26fbb10 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"26fbb10\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-498e64c lakit-equal-height-disable elementor-invisible elementor-widget lastudio-kit elementor-lakit-image-box\" data-id=\"498e64c\" data-element_type=\"widget\" data-settings=\"{"_animation":"zoomIn"}\" data-widget_type=\"lakit-image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"lakit-imagebox text-center lakit-imagebox__content-align-center hover-border-bottom hover_from_right\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-styleright-pro-growth-oil\/\"><div class=\"lakit-imagebox__header figure__object_fit\"><img loading=\"lazy\" decoding=\"async\" width=\"606\" height=\"410\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/09\/9.jpg\" class=\"lakit-imagebox__main_img attachment-full size-full wp-image-5736\" alt=\"\" \/><\/div><\/a><div class=\"lakit-imagebox__body\"><div class=\"lakit-imagebox__body_inner\"><h3 class=\"lakit-imagebox__title\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-styleright-pro-growth-oil\/\"><span class=\"lakit-imagebox__title_text\">AFFIRMCARE \u2013 STYLERIGHT PRO GROWTH OIL<\/span><\/a><\/h3><\/div><div class=\"lakit-iconbox__button_wrapper\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/affirmcare-styleright-pro-growth-oil\/\" class=\"elementor-button-link elementor-button elementor-btn-align-icon-\"><span class=\"elementor-button-content-wrapper e-icon-align-\"><span class=\"elementor-button-text\">READ MORE<\/span><\/span><\/a><\/div><\/div><\/div>\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<div class=\"elementor-element elementor-element-6958a22 e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"6958a22\" 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-25e9754 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"25e9754\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\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<div class=\"elementor-element elementor-element-0c807e2 e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"0c807e2\" 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-746a034 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"746a034\" 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<div class=\"elementor-heading-title elementor-size-default\">TESTIMONIALS<\/div>\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<div class=\"elementor-element elementor-element-f1e6aab e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"f1e6aab\" 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-c76de4e elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"c76de4e\" 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\">What Our Clients Says<\/div>\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<div class=\"elementor-element elementor-element-f116f0c e-con-full e-flex lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"f116f0c\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6075506 e-flex e-con-boxed lakit-col-width-auto-no e-container e-con e-child\" data-id=\"6075506\" 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-edf8f8f elementor-widget elementor-widget-image\" data-id=\"edf8f8f\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"75\" height=\"50\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/08\/Testimonials-Quote.png\" class=\"attachment-full size-full wp-image-3369\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\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<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-be5fd7f elementor-section-boxed elementor-section-height-default elementor-section-height-default e-parent\" data-id=\"be5fd7f\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a2138ba lakit-col-width-auto-no\" data-id=\"a2138ba\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-3c45d1d elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"3c45d1d\" 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-100 elementor-inner-column elementor-element elementor-element-4aac5f1 lakit-col-width-auto-no\" data-id=\"4aac5f1\" 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-5e4dcee lakit-arrow--showonhover-no lakit-dots--vertical-no elementor-widget lastudio-kit elementor-lakit-testimonials\" data-id=\"5e4dcee\" data-element_type=\"widget\" data-widget_type=\"lakit-testimonials.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\/plugins\/lastudio-element-kit\/assets\/css\/addons\/testimonials.min.css\">\n<div id=\"tt_5e4dcee\" class=\"lakit-testimonials lakit-ttmna preset-type-4 pstype-4 lakit-carousel\" data-slider_options=\"{"slidesToScroll":{"desktop":"1","laptop":"1","tablet":"1","mobile_extra":"1"},"rows":{"desktop":"1","laptop":"1","tablet":"1","mobile_extra":"1"},"autoplaySpeed":5000,"autoplay":true,"infinite":true,"centerMode":false,"pauseOnHover":false,"pauseOnInteraction":false,"reverseDirection":false,"infiniteEffect":false,"speed":500,"arrows":true,"dots":false,"variableWidth":false,"prevArrow":".lakit-carousel__prev-arrow-5e4dcee","nextArrow":".lakit-carousel__next-arrow-5e4dcee","dotsElm":".lakit-carousel__dots_5e4dcee","rtl":false,"effect":"slide","coverflowEffect":{"rotate":null,"stretch":null,"depth":null,"modifier":null,"scale":null},"dotType":"bullets","direction":"horizontal","uniqueID":"lakit_carousel_5e4dcee","asFor":"","thumbs":"","autoHeight":false,"scrollbar":false,"slidesToShow":{"desktop":"1","laptop":"1","tablet":"1","mobile_extra":"1"}}\" dir=\"ltr\">\n <div class=\"lakit-carousel-inner\"> <div class=\"lakit-testimonials__list_wrapper swiper-container\" id=\"lakit_carousel_5e4dcee\">\n <div class=\"lakit-testimonials__list swiper-wrapper\" data-item_selector=\".lakit-testimonials__item\">\n <div class=\"lakit-testimonials__item lakit-ttm__i elementor-repeater-item-0896ca9 swiper-slide\">\n \t<div class=\"lakit-testimonials__item-inner lakit-ttm__inner\">\n \t\t<div class=\"lakit-testimonials__content lakit-ttm__cont\"><div class=\"lakit-testimonials__comment lakit-ttm__com\"><div><p>My favorite Avlon product is Affirm\u00ae\ufe0f MoisturRight\u00ae\ufe0f Leave-in Detangler- it\u2019s amazing on any hair texture and is our go-to product every day as it instantly moisturises and adds shine.<\/p><\/div><\/div><div class=\"lakit-testimonials__name lakit-ttm__n\"><span>Marcia Ferguson<\/span><\/div><div class=\"lakit-testimonials__rating\"><span class=\"star-rating\"><span style=\"width: 100%\"><\/span><\/span><\/div><\/div>\n\t<\/div>\n<\/div> <\/div>\n <\/div>\n <\/div><div class=\"lakit-carousel__prev-arrow-5e4dcee lakit-arrow prev-arrow\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" xml:space=\"preserve\"><image width=\"40\" height=\"40\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM\/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3VpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw\/eHBhY2tldCBiZWdpbj0i77u\/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ2MCwgMjAyMC8wNS8xMi0xNjowNDoxNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjZTkzMmQwYy1mNTgxLTQ5NWUtYmI3Yy0wMThjNTVjOTQ0NGYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTI1NDI2NDM0REM3MTFFRjlERDlFNDQ4RTIxRTZDQkUiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTI1NDI2NDI0REM3MTFFRjlERDlFNDQ4RTIxRTZDQkUiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIxLjIgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpkMzEyNDZmYy1hMmEyLTQzMWEtYTU1NC0xYzVhZThiMzBiNTUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Y2U5MzJkMGMtZjU4MS00OTVlLWJiN2MtMDE4YzU1Yzk0NDRmIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VRMlpgAAAwJJREFUeNrUmV9IU3EUx8\/mzYfKl7YEaRXOygohxaSwP5I9FWb0FMt6C+YqB5FBTwbZQ72ElLEp0lPl0jKwoof+KAgRlkEk0UQfrGRECYFlNm3rnO1cGHbd3O7ZdvvCB8YuO7\/vzu93f\/f8zjWFvn+FFGRGKpA9yFZkA7IKWcbXfyITyAjyGulDXiGhZAcyJWnQhpxE6pDVSY71CbmFXEc+Sxu0IBeQ40gu6FMQ6UCakEkJg4eRVsQKsvrGs9GVaC0tJAXxIL40mAOOeYfHUJLN4FL+cQ1kRg95pqYXk0H6N50ZNAc8VqdWJrUM0nqrhcyrlseOa9CBOCF7cvJUa67BlcgHZAVkV3R3b1S3oNgMNhvAnHp3X5yfwTXIKLIEjKFZZB3yUc2gy0DmgL241AySyXF+zhpJ9Lxeq1YloubueofBtbdHbxjyVKFwySSiEBZTPe3D8LTLD\/m2PImQ1QrXcyK61\/YOnnWPQOFmK7gvVUqELCeDxRKRuj1Rc\/YSK5y5shtyFJNE2GIyWKA3iu\/aW+i\/Pwrrt+TDiebtUuZIBWRQ12K5eu4FvB8MQFmVDZznt0nfyXlmvRF+\/5qLbly5OWnZa8jglJ4AjS1VULmvEAafjEeyOTM9J+lvigwG9EQwmcJwrLEcduy3R6ba0\/QSwmGxNRggg369UaImy2BnjR38b75Ay9kBCM78kTDoN\/O5VUQOdynsOlAUMXm5oV8i5JDCh2oR0fZSd7o08nngwZhEyL7\/oligdsRNMJ7IU0gtWCl7YwJdAylR96GIsmiOSecNA2WvQ+3fxB6aLLzlWLJsbpILmH8OTfSF2wDZOxXbVJr\/LL6NtGfRXBv3guJ2FhqQ3iyY69WaQfMCdxB1GB5l0NxjHjO4GIMk6jId4pRnYloPgkZnK55B9fBcjxzhdkQ6WhwOHmM2Xj2YSNQW24R4taYgxU3YyzF9CSulFJrotA0chWhXPxlN8OOrFdLQRNfKPB34q+loCNHXEGR+OV\/\/wSboNcQQ8hxSfA3xV4ABAFQy06mwu3P5AAAAAElFTkSuQmCC\"><\/image><\/svg><\/div><div class=\"lakit-carousel__next-arrow-5e4dcee lakit-arrow next-arrow\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" xml:space=\"preserve\"><image width=\"40\" height=\"40\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM\/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3VpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw\/eHBhY2tldCBiZWdpbj0i77u\/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ2MCwgMjAyMC8wNS8xMi0xNjowNDoxNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjZTkzMmQwYy1mNTgxLTQ5NWUtYmI3Yy0wMThjNTVjOTQ0NGYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUZDQkE0OEM0REM3MTFFRjlERDlFNDQ4RTIxRTZDQkUiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUZDQkE0OEI0REM3MTFFRjlERDlFNDQ4RTIxRTZDQkUiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIxLjIgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpkMzEyNDZmYy1hMmEyLTQzMWEtYTU1NC0xYzVhZThiMzBiNTUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Y2U5MzJkMGMtZjU4MS00OTVlLWJiN2MtMDE4YzU1Yzk0NDRmIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Ng7CnQAAAwtJREFUeNrMmV1Ik2EUx49rOebHtDZBzfSi2gqCoNydkXYTQSgR9GF1J6WU2oXSXUF5kxIlrTKRrqrZbqQouvMDL7rIj4tunGiS6US2xdKZtdXqnHUGNjb38Tzb3j\/89GJyzv85797nec4xK+BxQhJSIWakBqlEjMgOJJc\/X0MWkWlkDBlCPiCBRBNlJWiwDLmCnEd2JpjrC\/IceYgsyDaoR24hDUg2iMmH9CE3ELcMg6d51QaQKxdyFXkZ67sUTWrkMQeQbQ44Zj\/nUCdawRw2dgLSozfIGeR7PBWk1VjTaA44lzVSJSMZtCC1kH7Vcu5NDVKZL0PmRLnPRfsO0lYylaIXIhF9RfYizvAKdijAHGk7cju8guXIDLIVlCE\/shuZD1WwSUHmgL00hSpIJj\/zOask0XldoeZbiZC5jkuD+PMPtHZWQX6hRpZB8mSm6h0VjVSxpxAWZjzQ2TIC616\/zCrWkMFDolEuth+Euob94HZ4oat1BDyuH7IMVpJBk4xIx+tNQZOOuW9wr20U1lZ8MsKayGCJrOUeO2uEU40HYHl+Be40D4PHuS4asoTe4p8SLqH\/aWLUAb0330NugQbuDgjdOXyqlGxi2VuCv3\/5fwvHom1mlc9hKRp+NQe2B5NgKM3DbeewaLhVquCSTHP93RNQYNDCdUs1FJXmiIZcIoN2GeYGBz6BzTIJRWX50Ha\/WtaGbSeD46JRbI8+Bh+rTq+F9u4joC\/WynooY2puqoU0Nb4MxeU6uNZVBbptGpnv25DiLwsqHkc8A+WJPAVCF1aq3qzsDVtw+rCLqqjaUM4+BVXvaWh+E9402WVu2knKzRcYd3jT5OZZSabVsnGoFH4W06zkSQbN9SIvYk0WaAWvM2COcjbHM\/rwcXf\/Lo3m3nJOXzwGgadMdWl63JTjJESYbG1mMNQ8N\/LKXCkwRjHrOUfUTiueCyu9OPuQnkiPIMlNuIdjWmP9cTJDdNqKLsC\/qX4iWuTjywIpGKJHqryZe2pqW41sPo8\/97KJab7OUWef1L8h\/gowAOJz2eIJuAMGAAAAAElFTkSuQmCC\"><\/image><\/svg><\/div><\/div>\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\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t<div class=\"elementor-element elementor-element-6534677e e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"6534677e\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\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-296b00a4 elementor-section-boxed elementor-section-height-default elementor-section-height-default e-parent\" data-id=\"296b00a4\" 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-294ab338 lakit-col-width-auto-no\" data-id=\"294ab338\" 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-71b145b1 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"71b145b1\" 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-10d2ab31 elementor-invisible elementor-widget lastudio-kit elementor-lakit-subscribe-form\" data-id=\"10d2ab31\" 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>AFFIRMCARE SCALP THERAPY – NEW PRODUCTS LAUNCHING SOON AffirmCare Scalp Therapy is a premium haircare\u00a0line , developed through state-of-the-art nano technology. It is formulated with functional and therapeutic ingredients that\u00a0are proven effective in promoting scalp health and hair fibre integrity. AFFIRMCARE MOISTURIGHT PRODUCTS AFFIRMCARE \u2013 MOISTURRIGHT LEAVE-IN DETANGLER READ MORE AFFIRMCARE \u2013 MOISTURRIGHT HAIR REPAIR […]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"open","template":"","meta":{"footnotes":""},"class_list":["post-4590","page","type-page","status-publish","hentry"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/pages\/4590","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=4590"}],"version-history":[{"count":257,"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/pages\/4590\/revisions"}],"predecessor-version":[{"id":8926,"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/pages\/4590\/revisions\/8926"}],"wp:attachment":[{"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4590"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}