/** * @author rs-theme * @since 1.0 * @version 1.0 */ if ( ! function_exists( 'bandco_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ define( 'BANDCO_THEME_DIR', get_template_directory() ); define( 'BANDCO_THEME_URI', get_template_directory_uri() ); define( 'BANDCO_THEME_SUB_DIR', BANDCO_THEME_DIR.'/inc/' ); define( 'BANDCO_THEME_CSS_DIR', BANDCO_THEME_URI.'/css/' ); define( 'BANDCO_THEME_JS_DIR', BANDCO_THEME_URI.'/js/' ); function bandco_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on bandco, use a find and replace * to change 'bandco' to the name of your theme in all the template files. */ load_theme_textdomain( 'bandco', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); function bandco_change_excerpt( $text ) { $pos = strrpos( $text, '['); if ($pos === false) { return $text; } return rtrim (substr($text, 0, $pos) ) . '...'; } add_filter('get_the_excerpt', 'bandco_change_excerpt'); // Limit Excerpt Length by number of Words function bandco_custom_excerpt( $limit ) { $excerpt = explode(' ', get_the_excerpt(), $limit); if (count($excerpt)>=$limit) { array_pop($excerpt); $excerpt = implode(" ",$excerpt).'...'; } else { $excerpt = implode(" ",$excerpt); } $excerpt = preg_replace('`[[^]]*]`','',$excerpt); return $excerpt; } function content($limit) { $content = explode(' ', get_the_content(), $limit); if (count($content)>=$limit) { array_pop($content); $content = implode(" ",$content).'...'; } else { $content = implode(" ",$content); } $content = preg_replace('/[.+]/','', $content); $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); return $content; } /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'menu-1' => esc_html__( 'Primary Menu', 'bandco' ), 'menu-2' => esc_html__( 'Mobile Menu', 'bandco' ), 'menu-3' => esc_html__( 'Onepage Menu', 'bandco' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'bandco_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); //add support posts format add_theme_support( 'post-formats', array( 'aside', 'gallery', 'audio', 'video', 'image', 'quote', 'link', ) ); add_theme_support( 'align-wide' ); } endif; add_action( 'after_setup_theme', 'bandco_setup' ); /** *Custom Image Size */ add_image_size( 'bandco_portfolio-slider', 520, 640, true ); add_image_size( 'bandco_blog-transparent', 700, 600, true ); add_image_size( 'bandco_blog-single', 1200, 630, true ); add_image_size( 'bandco_portfolio-slider-four', 416, 340, true ); add_image_size( 'bandco_service-grid', 352, 199, true ); add_image_size( 'bandco_portfolio-slider', 666, 450, true ); add_image_size( 'bandco_portfolio-grid-large', 834, 550, true ); add_image_size( 'bandco_portfolio-grid2', 434, 450, true ); add_image_size( 'bandco_portfolio-grid-small', 413, 269, true ); add_image_size( 'bandco_portfolio-grid-architecture1', 421, 550, true ); add_image_size( 'bandco_team-member-grid', 414, 500, true ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function bandco_content_width() { $GLOBALS['content_width'] = apply_filters( 'bandco_content_width', 640 ); } add_action( 'after_setup_theme', 'bandco_content_width', 0 ); /** * Implement the Custom Header feature. */ require_once get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require_once get_template_directory() . '/inc/template-tags.php'; /** * Enqueue scripts and styles. */ require_once get_template_directory() . '/inc/template-scripts.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require_once get_template_directory() . '/inc/template-functions.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require_once get_template_directory() . '/inc/template-sidebar.php'; /** * Customizer additions. */ require_once get_template_directory() . '/inc/customizer.php'; /** * Customizer additions. */ require_once BANDCO_THEME_SUB_DIR.'/customizer/includes.php'; if (is_admin() && isset($_GET['activated'])){ wp_redirect(admin_url("themes.php?page=bandco")); } if (is_admin()) { require_once get_template_directory() . '/framework/ini/theme-base.php'; } $licenseKey = get_option("BandcoWordPressTheme_lic_Key",""); if (!empty($licenseKey)){ require_once get_template_directory() . '/framework/custom.php'; } if (is_admin()){ require_once get_template_directory() . '/framework/class-tgm-plugin-activation.php'; require_once get_template_directory() . '/framework/tgm-config.php'; } require_once get_template_directory() . '/inc/woocommerce-functions.php'; /** * Registers an editor stylesheet for the theme. */ function bandco_theme_add_editor_styles() { add_editor_style( 'css/custom-editor-style.css' ); } add_action( 'admin_init', 'bandco_theme_add_editor_styles' ); //------------------------------------------------------------------------ //Organize Comments form field //----------------------------------------------------------------------- function bandco_wpb_move_comment_field_to_bottom( $fields ) { $comment_field = $fields['comment']; unset( $fields['comment'] ); $fields['comment'] = $comment_field; return $fields; } add_filter( 'comment_form_fields', 'bandco_wpb_move_comment_field_to_bottom' ); add_filter( 'get_the_archive_title', function ($title) { if ( is_category() ) { $title = single_cat_title( '', false ); } elseif ( is_tag() ) { $title = single_tag_title( '', false ); } elseif ( is_author() ) { $title = '<span class="vcard">' . get_the_author() . '</span>' ; } return $title; }); function bandco_comment_textarea_placeholder( $args ) { $replace_comment = __('Comment*', 'bandco'); $args['comment_field'] = str_replace( '<textarea', '<textarea placeholder="'.$replace_comment.'"', $args['comment_field'] ); return $args; } add_filter( 'comment_form_defaults', 'bandco_comment_textarea_placeholder' ); /** * * Comment Form Fields Placeholder * */ function bandco_comment_form_fields( $fields ) { $replace_author = __('Name*', 'bandco'); $replace_email = __('Email*', 'bandco'); $website_url = __('Website', 'bandco'); foreach( $fields as &$field ) { $field = str_replace( 'id="author"', 'id="author" placeholder="'.$replace_author.'"', $field ); $field = str_replace( 'id="email"', 'id="email" placeholder="'.$replace_email.'"', $field ); $field = str_replace( 'id="url"', 'id="url" placeholder="'.$website_url.'"', $field ); } return $fields; } add_filter( 'comment_form_default_fields', 'bandco_comment_form_fields' );<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="profile" href="http://gmpg.org/xfn/11" /> <link rel="pingback" href="https://www.flozen.media/xmlrpc.php" /> <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> <!-- This site is optimized with the Yoast SEO plugin v24.0 - https://yoast.com/wordpress/plugins/seo/ --> <meta name="description" content="Flozen Media Technologies is an authorized partner in Kerala, offers Microsoft 365, Google Workspace, Website Design, Web Hosting, Logo & Branding, SEO and Email Packages across India and the Middle East." /> <link rel="canonical" href="https://www.flozen.media/products/microsoft-365-premium/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Microsoft 365 Premium - Flozen Media Technologies | Microsoft 365, Google Workspace, Business Emails, Web Hosting, Web Design, Logo & Branding, SEO & SMM in Kerala and UAE" /> <meta property="og:description" content="Flozen Media Technologies is an authorized partner in Kerala, offers Microsoft 365, Google Workspace, Website Design, Web Hosting, Logo & Branding, SEO and Email Packages across India and the Middle East." /> <meta property="og:url" content="https://www.flozen.media/products/microsoft-365-premium/" /> <meta property="og:site_name" content="Flozen Media Technologies | Microsoft 365, Google Workspace, Business Emails, Web Hosting, Web Design, Logo & Branding, SEO & SMM in Kerala and UAE" /> <meta property="article:publisher" content="https://www.facebook.com/flozenmedia" /> <meta property="article:modified_time" content="2024-11-08T06:51:41+00:00" /> <meta property="og:image" content="https://www.flozen.media/wp-content/uploads/2024/05/portfolio_01.jpg" /> <meta property="og:image:width" content="768" /> <meta property="og:image:height" content="922" /> <meta property="og:image:type" content="image/jpeg" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:site" content="@flozenmedia" /> <meta name="twitter:label1" content="Est. reading time" /> <meta name="twitter:data1" content="4 minutes" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://www.flozen.media/products/microsoft-365-premium/","url":"https://www.flozen.media/products/microsoft-365-premium/","name":"Microsoft 365 Premium - Flozen Media Technologies | Microsoft 365, Google Workspace, Business Emails, Web Hosting, Web Design, Logo & Branding, SEO & SMM in Kerala and UAE","isPartOf":{"@id":"https://www.flozen.media/#website"},"primaryImageOfPage":{"@id":"https://www.flozen.media/products/microsoft-365-premium/#primaryimage"},"image":{"@id":"https://www.flozen.media/products/microsoft-365-premium/#primaryimage"},"thumbnailUrl":"https://www.flozen.media/wp-content/uploads/2024/05/portfolio_01.jpg","datePublished":"2024-07-17T10:53:32+00:00","dateModified":"2024-11-08T06:51:41+00:00","description":"Flozen Media Technologies is an authorized partner in Kerala, offers Microsoft 365, Google Workspace, Website Design, Web Hosting, Logo & Branding, SEO and Email Packages across India and the Middle East.","breadcrumb":{"@id":"https://www.flozen.media/products/microsoft-365-premium/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.flozen.media/products/microsoft-365-premium/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.flozen.media/products/microsoft-365-premium/#primaryimage","url":"https://www.flozen.media/wp-content/uploads/2024/05/portfolio_01.jpg","contentUrl":"https://www.flozen.media/wp-content/uploads/2024/05/portfolio_01.jpg","width":768,"height":922},{"@type":"BreadcrumbList","@id":"https://www.flozen.media/products/microsoft-365-premium/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.flozen.media/"},{"@type":"ListItem","position":2,"name":"Microsoft 365 Premium"}]},{"@type":"WebSite","@id":"https://www.flozen.media/#website","url":"https://www.flozen.media/","name":"Flozen Media Technologies","description":"","publisher":{"@id":"https://www.flozen.media/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.flozen.media/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://www.flozen.media/#organization","name":"Flozen Media Technologies","url":"https://www.flozen.media/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.flozen.media/#/schema/logo/image/","url":"https://www.flozen.media/wp-content/uploads/2024/06/logo-new.png","contentUrl":"https://www.flozen.media/wp-content/uploads/2024/06/logo-new.png","width":400,"height":103,"caption":"Flozen Media Technologies"},"image":{"@id":"https://www.flozen.media/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/flozenmedia","https://x.com/flozenmedia","https://www.instagram.com/flozenmedia"]}]}</script> <!-- / Yoast SEO plugin. --> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel='stylesheet' id='nta-css-popup-css' href='https://www.flozen.media/wp-content/plugins/wp-whatsapp/assets/dist/css/style.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='contact-form-7-css' href='https://www.flozen.media/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='headding-title-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/assets/css/headding-title.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rsaddons-pro-css-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/assets/css/rsaddons.css?ver=1769122025' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-heading-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/heading/heading.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-team_grid-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/team-member/team-grid-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-team_slider-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/team-member-slider/team-slider-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-portfolio_grid-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/portfolio-grid/portfolio-grid.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-portfolio_filter-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/portfolio-filter/portfolio-filter-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-portfolio_slider-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/portfolio-slider/portfolio-slider.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-counter-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/counter/counter.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-service_grid-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/services/rs-service-grid.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-service_slider-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/service-slider/service-slider-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-service_list-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/service-list/rs-service-list.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-video-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/video/rs-video.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-gsap-marquee-slide-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/gsap-marquee-slide/gsap-marquee-slide.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-button-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/button/button.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-logo_widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/logo-widget/logo-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-line_rain_animation-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/line-rain-animation/line-rain-animation.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-breadcrumb-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/breadcrumb-widget/breadcrumb-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-newsletter-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/newsletter/newsletter.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-post_navigation-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/post-navigation/post-navigation.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-pricing_switcher-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/pricing-switcher/pricing-switcher.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-hotspots_showcase-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/hotspot-widget/hotspot.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-testimonial_slider-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/testimonial/slider/testimonial-slider-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-social-icons-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/social-icons/rs-social-icons.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-header-offcanvas-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/header-offcanvas/header-offcanvas.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-cf7-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/cf7/cf7.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-accordion-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/rs-accordion/rs-accordion.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-advanced-tab-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/advanced-tab/advanced-tab.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-button-rotating-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/button-rotating/button-rotating.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-project-information-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/project-information/project-information.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='marquee-slider-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/marquee-slider-logo/marquee-slider-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-iconbox-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/iconbox/iconbox.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-image-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/image-widget/image-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-progress-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/progress/rs-progress.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-work-process-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/work-process/work-process.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-award-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/rs-award-widget/award-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-brochures-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/brochures/brochures.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='hfe-style-css' href='https://www.flozen.media/wp-content/plugins/rs-header-footer-elementor/assets/css/header-footer-elementor.css?ver=1.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/custom-frontend.min.css?ver=1734352953' type='text/css' media='all' /> <link rel='stylesheet' id='swiper-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5' type='text/css' media='all' /> <link rel='stylesheet' id='e-swiper-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-2918-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-2918.css?ver=1734352953' type='text/css' media='all' /> <link rel='stylesheet' id='widget-image-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='widget-heading-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='widget-icon-box-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/custom-widget-icon-box.min.css?ver=1734352953' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-12301-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-12301.css?ver=1734454814' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-7769-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-7769.css?ver=1766863521' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-8765-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-8765.css?ver=1766863521' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-2484-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-2484.css?ver=1766864330' type='text/css' media='all' /> <link rel='stylesheet' id='childstyle-css' href='https://www.flozen.media/wp-content/themes/bandco/style.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Inter%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CSora%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=swap&ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/assets/fonts/flaticon_lifetec2.css?ver=1.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-rselement-icons-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/assets/fonts/flaticon_lifetec2.css?ver=1.0.1' type='text/css' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="https://www.flozen.media/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Organization", "name": "Flozen Media Technologies", "url": "https://flozenmedia.in", "aggregateRating": { "@type": "AggregateRating", "ratingValue": "5.0", "reviewCount": "6800" } } </script><meta name="generator" content="Elementor 3.25.11; features: e_font_icon_svg, additional_custom_breakpoints, e_optimized_control_loading; settings: css_print_method-external, google_font-enabled, font_display-swap"> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <meta name="generator" content="Powered by Slider Revolution 6.7.13 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <link rel="icon" href="https://www.flozen.media/wp-content/uploads/2024/06/cropped-fm-logo-256-32x32.png" sizes="32x32" /> <link rel="icon" href="https://www.flozen.media/wp-content/uploads/2024/06/cropped-fm-logo-256-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://www.flozen.media/wp-content/uploads/2024/06/cropped-fm-logo-256-180x180.png" /> <meta name="msapplication-TileImage" content="https://www.flozen.media/wp-content/uploads/2024/06/cropped-fm-logo-256-270x270.png" /> <script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> <style type="text/css" id="wp-custom-css"> .header-social .rs-social-menu ul li i{ color: #ffffff; line-height: 28px; } </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} /*# sourceURL=global-styles-inline-css */ </style> <link rel='stylesheet' id='widget-icon-list-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/custom-widget-icon-list.min.css?ver=1734352953' type='text/css' media='all' /> <link rel='stylesheet' id='widget-divider-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/css/widget-divider.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='hfe-widgets-style-css' href='https://www.flozen.media/wp-content/plugins/rs-header-footer-elementor/inc/widgets-css/frontend.css?ver=1.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='e-animation-fadeInLeft-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInLeft.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='e-animation-fadeInRight-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInRight.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='widget-text-editor-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/css/widget-text-editor.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='widget-social-icons-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='e-apple-webkit-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/custom-apple-webkit.min.css?ver=1734352953' type='text/css' media='all' /> <link rel='stylesheet' id='rs-plugin-settings-css' href='//www.flozen.media/wp-content/plugins/revslider/sr6/assets/css/rs6.css?ver=6.7.13' type='text/css' media='all' /> <style id='rs-plugin-settings-inline-css' type='text/css'> #rs-demo-id {} /*# sourceURL=rs-plugin-settings-inline-css */ </style> </head> <body class="wp-singular portfolios-template portfolios-template-elementor_header_footer single single-portfolios postid-12301 wp-theme-bandco wp-child-theme-bandco-child ehf-header ehf-footer ehf-template-bandco ehf-stylesheet-bandco-child elementor-default elementor-template-full-width elementor-kit-2918 elementor-page elementor-page-12301"> <!--Preloader start here--> <div id="pre-load"> <div id="loader" class="loader"> <div class="loader-container"> <div class='loader-icon'><img src="https://www.flozen.media/wp-content/uploads/2024/06/fm-logo-256.png" alt="Flozen Media Technologies | Microsoft 365, Google Workspace, Business Emails, Web Hosting, Web Design, Logo & Branding, SEO & SMM in Kerala and UAE"></div> </div> </div> </div> <div class="rs-offcanvas-area"> <div class="rsoffwrap"></div> <!-- Canvas Menu start --> <nav class="right_menu_togle" data-lenis-prevent> <div class="rsoffwrap-close"> <i class="ri-close-line"></i> </div> <div class="rs-desk-off-content"></div> </nav> </div> <div id="page" class="hfeed site"> <header id="rs-header" class="single-header "> <div class="header-inner"> <div data-elementor-type="wp-post" data-elementor-id="7769" class="elementor elementor-7769"> <header class="no-position rs-sticky-default elementor-element elementor-element-cd91eff e-con-full e-flex e-con e-parent" data-id="cd91eff" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="no-position rs-sticky-default elementor-element elementor-element-c792529 e-flex e-con-boxed e-con e-child" data-id="c792529" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-cc6c073 e-con-full e-flex e-con e-child" data-id="cc6c073" data-element_type="container"> <div class="no-position rs-sticky-default elementor-element elementor-element-0661ac1 e-con-full e-flex e-con e-child" data-id="0661ac1" data-element_type="container"> <div class="elementor-element elementor-element-24581fd elementor-icon-list--layout-inline elementor-tablet-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="24581fd" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items elementor-inline-items"> <li class="elementor-icon-list-item elementor-inline-item"> <a href="mailto:support.bandco@gmail.com"> <span class="elementor-icon-list-icon"> <svg xmlns="http://www.w3.org/2000/svg" width="30" height="24" viewBox="0 0 30 24" fill="none"><path d="M25.5 0H4.5C3.30653 0 2.16193 0.474106 1.31802 1.31802C0.474106 2.16193 0 3.30653 0 4.5V19.5C0 20.6935 0.474106 21.8381 1.31802 22.682C2.16193 23.5259 3.30653 24 4.5 24H25.5C26.6935 24 27.8381 23.5259 28.682 22.682C29.5259 21.8381 30 20.6935 30 19.5V4.5C30 3.30653 29.5259 2.16193 28.682 1.31802C27.8381 0.474106 26.6935 0 25.5 0ZM4.5 3H25.5C25.8978 3 26.2794 3.15804 26.5607 3.43934C26.842 3.72064 27 4.10218 27 4.5L15 11.82L3 4.5C3 4.10218 3.15804 3.72064 3.43934 3.43934C3.72064 3.15804 4.10218 3 4.5 3ZM27 19.5C27 19.8978 26.842 20.2794 26.5607 20.5607C26.2794 20.842 25.8978 21 25.5 21H4.5C4.10218 21 3.72064 20.842 3.43934 20.5607C3.15804 20.2794 3 19.8978 3 19.5V7.92L14.22 14.775C14.448 14.9067 14.7067 14.976 14.97 14.976C15.2333 14.976 15.492 14.9067 15.72 14.775L27 7.92V19.5Z" fill="white"></path></svg> </span> <span class="elementor-icon-list-text">support.bandco@gmail.com</span> </a> </li> <li class="elementor-icon-list-item elementor-inline-item"> <span class="elementor-icon-list-icon"> <svg xmlns="http://www.w3.org/2000/svg" width="27" height="33" viewBox="0 0 27 33" fill="none"><path d="M26 13.5C26 23.2222 13.5 31.5556 13.5 31.5556C13.5 31.5556 1 23.2222 1 13.5C1 10.1848 2.31696 7.00537 4.66116 4.66116C7.00537 2.31696 10.1848 1 13.5 1C16.8152 1 19.9946 2.31696 22.3388 4.66116C24.683 7.00537 26 10.1848 26 13.5Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M13.4987 17.6667C15.7999 17.6667 17.6654 15.8012 17.6654 13.5C17.6654 11.1988 15.7999 9.33334 13.4987 9.33334C11.1975 9.33334 9.33203 11.1988 9.33203 13.5C9.33203 15.8012 11.1975 17.6667 13.4987 17.6667Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></svg> </span> <span class="elementor-icon-list-text">42 Mamnoun Street, UK</span> </li> </ul> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-3d9df83 e-con-full e-flex e-con e-child" data-id="3d9df83" data-element_type="container"> <div class="elementor-element elementor-element-5cce1c8 elementor-icon-list--layout-inline elementor-tablet-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="5cce1c8" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items elementor-inline-items"> <li class="elementor-icon-list-item elementor-inline-item"> <span class="elementor-icon-list-icon"> <svg xmlns="http://www.w3.org/2000/svg" id="Outline" viewBox="0 0 24 24" width="512" height="512"><path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22Z"></path><path d="M12,6a1,1,0,0,0-1,1v4.325L7.629,13.437a1,1,0,0,0,1.062,1.7l3.84-2.4A1,1,0,0,0,13,11.879V7A1,1,0,0,0,12,6Z"></path></svg> </span> <span class="elementor-icon-list-text">Mon - Sat 10.00 - 18.00</span> </li> </ul> </div> </div> <div class="elementor-element elementor-element-6e9265d header-social elementor-widget elementor-widget-rs-social-icons" data-id="6e9265d" data-element_type="widget" data-widget_type="rs-social-icons.default"> <div class="elementor-widget-container"> <div class="rs-social-menu style1 rs-social-sticky-diable"> <ul> <li><a href="#"> <svg aria-hidden="true" class="e-font-icon-svg e-fab-facebook-f" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"></path></svg> <span class="social-hover-text"></span> </a> </li> <li><a href="#"> <svg aria-hidden="true" class="e-font-icon-svg e-fab-x-twitter" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"></path></svg> <span class="social-hover-text"></span> </a> </li> <li><a href="#"> <svg aria-hidden="true" class="e-font-icon-svg e-fab-instagram" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg> <span class="social-hover-text"></span> </a> </li> <li><a href="#"> <svg aria-hidden="true" class="e-font-icon-svg e-fab-linkedin-in" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"></path></svg> <span class="social-hover-text"></span> </a> </li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-656b726 e-con-full main-header-box e-flex e-con e-child" data-id="656b726" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="no-position rs-sticky-default elementor-element elementor-element-a366c8b e-con-full e-flex e-con e-child" data-id="a366c8b" data-element_type="container"> <div class="elementor-element elementor-element-4f968f1 elementor-widget elementor-widget-site-logo" data-id="4f968f1" data-element_type="widget" data-settings="{"align":"left","logo_height":{"unit":"px","size":48,"sizes":[]},"logo_height_tablet":{"unit":"px","size":40,"sizes":[]},"logo_height_mobile":{"unit":"px","size":"","sizes":[]},"logo_height_laptop":{"unit":"px","size":34,"sizes":[]},"image_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_space":{"unit":"px","size":0,"sizes":[]},"caption_space_laptop":{"unit":"px","size":"","sizes":[]},"caption_space_tablet":{"unit":"px","size":"","sizes":[]},"caption_space_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="site-logo.default"> <div class="elementor-widget-container"> <div class="hfe-site-logo"> <a data-elementor-open-lightbox="" class='elementor-clickable' href="https://www.flozen.media"> <div class="hfe-site-logo-set"> <div class="hfe-site-logo-container"> <img class="rs___default-logo" src="https://www.flozen.media/wp-content/uploads/2024/06/logo-new2.png" alt="logo"/> <img class="rs___sticky-logo" src="https://www.flozen.media/wp-content/uploads/2024/06/logo-new2.png" alt="logo"/> </div> </div> </a> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-dfc07e6 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child" data-id="dfc07e6" data-element_type="container"> <div class="elementor-element elementor-element-5ea0b59 hfe-submenu-animation-slide_up elementor-widget-laptop__width-inherit hfe-nav-menu__align-left hfe-submenu-icon-arrow hfe-link-redirect-child hfe-nav-menu__breakpoint-tablet elementor-widget elementor-widget-navigation-menu" data-id="5ea0b59" data-element_type="widget" data-settings="{"padding_horizontal_menu_item":{"unit":"px","top":"40","right":"13","bottom":"40","left":"13","isLinked":false},"main_menu_border_radius":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"padding_horizontal_menu_item_laptop":{"unit":"px","top":"30","right":"10","bottom":"30","left":"10","isLinked":false},"location_area_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"menu_row_space":{"unit":"px","size":"","sizes":[]},"menu_row_space_laptop":{"unit":"px","size":"","sizes":[]},"menu_row_space_tablet":{"unit":"px","size":"","sizes":[]},"menu_row_space_mobile":{"unit":"px","size":"","sizes":[]},"main_menu_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"width_dropdown_item":{"unit":"px","size":"220","sizes":[]},"width_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"width_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"width_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item":{"unit":"px","size":15,"sizes":[]},"padding_vertical_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"distance_from_menu":{"unit":"px","size":"","sizes":[]},"distance_from_menu_laptop":{"unit":"px","size":"","sizes":[]},"distance_from_menu_tablet":{"unit":"px","size":"","sizes":[]},"distance_from_menu_mobile":{"unit":"px","size":"","sizes":[]},"toggle_size":{"unit":"px","size":"","sizes":[]},"toggle_size_laptop":{"unit":"px","size":"","sizes":[]},"toggle_size_tablet":{"unit":"px","size":"","sizes":[]},"toggle_size_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_width":{"unit":"px","size":"","sizes":[]},"toggle_border_width_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_width_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_width_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_radius":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="navigation-menu.default"> <div class="elementor-widget-container"> <style> .hfe-layout-vertical .left-arrow ul .menu-item:hover a:after { background: !important; } .hfe-layout-vertical .left-arrow ul .menu-item:hover a:before { border-left: 6px solid } </style> <div class="hfe-nav-menu hfe-layout-horizontal normal hfe-nav-menu-layout mega_columns1 horizontal hfe-pointer__none" data-layout="horizontal"> <div class="hfe-nav-menu__toggle elementor-clickable"> <div class="hfe-nav-menu-icon"> <svg aria-hidden="true" tabindex="0" class="e-font-icon-svg e-fas-align-justify" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"></path></svg> </div> </div> <nav class="hfe-nav-menu__layout-horizontal hfe-nav-menu__submenu-arrow no-separator no-arrow no-circle arrow icon-enable" data-toggle-icon="<svg aria-hidden="true" tabindex="0" class="e-font-icon-svg e-fas-align-justify" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"></path></svg>" data-close-icon="<svg aria-hidden="true" tabindex="0" class="e-font-icon-svg e-far-window-close" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"></path></svg>" data-full-width="yes"> <ul id="menu-1-5ea0b59" class="hfe-nav-menu"><li id="menu-item-10069" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home parent hfe-creative-menu"><a href="https://www.flozen.media/" class = "hfe-menu-item">Home<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-3334" class="menu-item menu-item-type-post_type menu-item-object-page parent hfe-creative-menu"><a href="https://www.flozen.media/about-us/" class = "hfe-menu-item">About Us<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-3676" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children parent hfe-has-submenu hfe-creative-menu"><div class="hfe-has-submenu-container"><a href="https://www.flozen.media/services/" class = "hfe-menu-item">Services<span class='hfe-menu-toggle sub-arrow hfe-menu-child-0'><i class='ri-arrow-down-s-line'></i> </span><em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></div> <ul class="sub-menu"> <li id="menu-item-5149" class="menu-item menu-item-type-post_type menu-item-object-services hfe-creative-menu"><a href="https://www.flozen.media/services/logo-designing/" class = "hfe-sub-menu-item">Logo Designing<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12065" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/services/software-development/" class = "hfe-sub-menu-item">Software Development<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12066" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/services/seo-branding/" class = "hfe-sub-menu-item">SEO & Branding<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12067" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/services/domain-web-hosting/" class = "hfe-sub-menu-item">Domain & Web Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12068" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/services/web-design-and-development/" class = "hfe-sub-menu-item">Web Design & Development<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12069" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/services/business-emails/" class = "hfe-sub-menu-item">Business Emails<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> </ul> </li> <li id="menu-item-5383" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-ancestor current_page_ancestor menu-item-has-children parent hfe-has-submenu hfe-creative-menu"><div class="hfe-has-submenu-container"><a href="https://www.flozen.media/products/" class = "hfe-menu-item">Products<span class='hfe-menu-toggle sub-arrow hfe-menu-child-0'><i class='ri-arrow-down-s-line'></i> </span><em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></div> <ul class="sub-menu"> <li id="menu-item-12283" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children hfe-has-submenu hfe-creative-menu"><div class="hfe-has-submenu-container"><a href="#" class = "hfe-sub-menu-item">Microsoft 365<span class='hfe-menu-toggle sub-arrow hfe-menu-child-1'><i class='ri-arrow-down-s-line'></i> </span><em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></div> <ul class="sub-menu"> <li id="menu-item-12284" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/products/microsoft-365-basic/" class = "hfe-sub-menu-item">Microsoft 365 Basic<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12307" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/products/microsoft-365-standard/" class = "hfe-sub-menu-item">Microsoft 365 Standard<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12308" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item hfe-creative-menu"><a href="/products/microsoft-365-premium/" class = "hfe-sub-menu-item hfe-sub-menu-item-active">Microsoft 365 Premium<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> </ul> </li> <li id="menu-item-12335" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/products/google-workspace/" class = "hfe-sub-menu-item">Google Work Space<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12686" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children hfe-has-submenu hfe-creative-menu"><div class="hfe-has-submenu-container"><a href="#" class = "hfe-sub-menu-item">Shared Web Hosting<span class='hfe-menu-toggle sub-arrow hfe-menu-child-1'><i class='ri-arrow-down-s-line'></i> </span><em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></div> <ul class="sub-menu"> <li id="menu-item-12688" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/products/linux-shared-hosting/" class = "hfe-sub-menu-item">Linux Shared Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12687" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/products/windows-shared-hosting/" class = "hfe-sub-menu-item">Windows Shared Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> </ul> </li> </ul> </li> <li id="menu-item-11503" class="menu-item menu-item-type-post_type menu-item-object-page parent hfe-creative-menu"><a href="https://www.flozen.media/clients/" class = "hfe-menu-item">Clients<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-20680" class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent parent hfe-creative-menu"><a href="https://www.flozen.media/blog/" class = "hfe-menu-item">Blog<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-2799" class="menu-item menu-item-type-post_type menu-item-object-page parent hfe-creative-menu"><a href="https://www.flozen.media/contact-us/" class = "hfe-menu-item">Contact Us<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> </ul> </nav> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-53edc9a e-con-full e-flex e-con e-child" data-id="53edc9a" data-element_type="container"> <div class="elementor-element elementor-element-82e76f1 elementor-widget__width-initial header-contact elementor-hidden-laptop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-rs-contact-box" data-id="82e76f1" data-element_type="widget" data-widget_type="rs-contact-box.default"> <div class="elementor-widget-container"> <!-- Style 1 Start --> <div class="rs-contact-box"> <div class="address-item boxstyle1"> <div class="address-icon icon_1 elementor-repeater-item-de808a5"> <i aria-hidden="true" class=" flaticon-telephone"></i> </div> <div class="address-text"> <div class="phone"> <span class="label">Call Any Time</span> <a href="tel:+17387407888">+1-738-740-7888</a> </div> </div> <span class="des-right-icon"></span> </div> </div> <!-- Style 1 End --> </div> </div> <div class="elementor-element elementor-element-6b77737 elementor-widget__width-initial header-line elementor-hidden-laptop elementor-hidden-tablet elementor-hidden-mobile elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="6b77737" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> <div class="elementor-element elementor-element-d5e1407 elementor-widget__width-auto elementor-hidden-mobile elementor-widget elementor-widget-rs-button" data-id="d5e1407" data-element_type="widget" data-widget_type="rs-button.default"> <div class="elementor-widget-container"> <div class="rs-button style1 unique-45466"> <a class="rs-btn" href="https://demo.rstheme.com/wordpress/bandco/contact/" > <span>Get a Quote <em> <i aria-hidden="true" class="ri-arrow-right-line"></i> <i aria-hidden="true" class="ri-arrow-right-line"></i> </em> </span> </a> </div> </div> </div> <div class="elementor-element elementor-element-1fbc4d4 elementor-widget__width-initial elementor-widget elementor-widget-rsoffcanvas" data-id="1fbc4d4" data-element_type="widget" data-widget_type="rsoffcanvas.default"> <div class="elementor-widget-container"> <div class="rs-offcanvas-area"> <ul> <li class="nav-link pr-20"> <a class="nav-expander"> <svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15" fill="none"><path d="M6 8.25H0.75C0.551088 8.25 0.360322 8.32902 0.21967 8.46967C0.0790176 8.61032 0 8.80109 0 9V14.25C0 14.4489 0.0790176 14.6397 0.21967 14.7803C0.360322 14.921 0.551088 15 0.75 15H6C6.19891 15 6.38968 14.921 6.53033 14.7803C6.67098 14.6397 6.75 14.4489 6.75 14.25V9C6.75 8.80109 6.67098 8.61032 6.53033 8.46967C6.38968 8.32902 6.19891 8.25 6 8.25ZM5.25 13.5H1.5V9.75H5.25V13.5ZM14.25 0H9C8.80109 0 8.61032 0.0790176 8.46967 0.21967C8.32902 0.360322 8.25 0.551088 8.25 0.75V6C8.25 6.19891 8.32902 6.38968 8.46967 6.53033C8.61032 6.67098 8.80109 6.75 9 6.75H14.25C14.4489 6.75 14.6397 6.67098 14.7803 6.53033C14.921 6.38968 15 6.19891 15 6V0.75C15 0.551088 14.921 0.360322 14.7803 0.21967C14.6397 0.0790176 14.4489 0 14.25 0ZM13.5 5.25H9.75V1.5H13.5V5.25ZM14.25 8.25H9C8.80109 8.25 8.61032 8.32902 8.46967 8.46967C8.32902 8.61032 8.25 8.80109 8.25 9V14.25C8.25 14.4489 8.32902 14.6397 8.46967 14.7803C8.61032 14.921 8.80109 15 9 15H14.25C14.4489 15 14.6397 14.921 14.7803 14.7803C14.921 14.6397 15 14.4489 15 14.25V9C15 8.80109 14.921 8.61032 14.7803 8.46967C14.6397 8.32902 14.4489 8.25 14.25 8.25ZM13.5 13.5H9.75V9.75H13.5V13.5ZM6 0H0.75C0.551088 0 0.360322 0.0790176 0.21967 0.21967C0.0790176 0.360322 0 0.551088 0 0.75V6C0 6.19891 0.0790176 6.38968 0.21967 6.53033C0.360322 6.67098 0.551088 6.75 0.75 6.75H6C6.19891 6.75 6.38968 6.67098 6.53033 6.53033C6.67098 6.38968 6.75 6.19891 6.75 6V0.75C6.75 0.551088 6.67098 0.360322 6.53033 0.21967C6.38968 0.0790176 6.19891 0 6 0ZM5.25 5.25H1.5V1.5H5.25V5.25Z" fill="#737373"></path></svg> </a> </li> </ul> </div> </div> </div> </div> </div> </header> <div class="no-position rs-sticky-default header-sticky-part elementor-element elementor-element-5a13066 e-con-full main-header-box e-flex e-con e-child" data-id="5a13066" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="no-position rs-sticky-default elementor-element elementor-element-9d44507 e-con-full e-flex e-con e-child" data-id="9d44507" data-element_type="container"> <div class="elementor-element elementor-element-86a95c8 elementor-widget elementor-widget-site-logo" data-id="86a95c8" data-element_type="widget" data-settings="{"align":"left","logo_height":{"unit":"px","size":48,"sizes":[]},"logo_height_tablet":{"unit":"px","size":40,"sizes":[]},"logo_height_mobile":{"unit":"px","size":"","sizes":[]},"logo_height_laptop":{"unit":"px","size":34,"sizes":[]},"image_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_space":{"unit":"px","size":0,"sizes":[]},"caption_space_laptop":{"unit":"px","size":"","sizes":[]},"caption_space_tablet":{"unit":"px","size":"","sizes":[]},"caption_space_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="site-logo.default"> <div class="elementor-widget-container"> <div class="hfe-site-logo"> <a data-elementor-open-lightbox="" class='elementor-clickable' href="https://www.flozen.media"> <div class="hfe-site-logo-set"> <div class="hfe-site-logo-container"> <img class="rs___default-logo" src="https://www.flozen.media/wp-content/uploads/2024/06/logo-new2.png" alt="logo"/> <img class="rs___sticky-logo" src="https://www.flozen.media/wp-content/uploads/2024/06/logo-new2.png" alt="logo"/> </div> </div> </a> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-68bf14e e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child" data-id="68bf14e" data-element_type="container"> <div class="elementor-element elementor-element-f8aabc2 hfe-submenu-animation-slide_up elementor-widget-laptop__width-inherit hfe-nav-menu__align-left hfe-submenu-icon-arrow hfe-link-redirect-child hfe-nav-menu__breakpoint-tablet elementor-widget elementor-widget-navigation-menu" data-id="f8aabc2" data-element_type="widget" data-settings="{"padding_horizontal_menu_item":{"unit":"px","top":"40","right":"13","bottom":"40","left":"13","isLinked":false},"main_menu_border_radius":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"padding_horizontal_menu_item_laptop":{"unit":"px","top":"30","right":"10","bottom":"30","left":"10","isLinked":false},"location_area_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"menu_row_space":{"unit":"px","size":"","sizes":[]},"menu_row_space_laptop":{"unit":"px","size":"","sizes":[]},"menu_row_space_tablet":{"unit":"px","size":"","sizes":[]},"menu_row_space_mobile":{"unit":"px","size":"","sizes":[]},"main_menu_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"width_dropdown_item":{"unit":"px","size":"220","sizes":[]},"width_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"width_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"width_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item":{"unit":"px","size":15,"sizes":[]},"padding_vertical_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"distance_from_menu":{"unit":"px","size":"","sizes":[]},"distance_from_menu_laptop":{"unit":"px","size":"","sizes":[]},"distance_from_menu_tablet":{"unit":"px","size":"","sizes":[]},"distance_from_menu_mobile":{"unit":"px","size":"","sizes":[]},"toggle_size":{"unit":"px","size":"","sizes":[]},"toggle_size_laptop":{"unit":"px","size":"","sizes":[]},"toggle_size_tablet":{"unit":"px","size":"","sizes":[]},"toggle_size_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_width":{"unit":"px","size":"","sizes":[]},"toggle_border_width_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_width_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_width_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_radius":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="navigation-menu.default"> <div class="elementor-widget-container"> <style> .hfe-layout-vertical .left-arrow ul .menu-item:hover a:after { background: !important; } .hfe-layout-vertical .left-arrow ul .menu-item:hover a:before { border-left: 6px solid } </style> <div class="hfe-nav-menu hfe-layout-horizontal normal hfe-nav-menu-layout mega_columns1 horizontal hfe-pointer__none" data-layout="horizontal"> <div class="hfe-nav-menu__toggle elementor-clickable"> <div class="hfe-nav-menu-icon"> <svg aria-hidden="true" tabindex="0" class="e-font-icon-svg e-fas-align-justify" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"></path></svg> </div> </div> <nav class="hfe-nav-menu__layout-horizontal hfe-nav-menu__submenu-arrow no-separator no-arrow no-circle arrow icon-enable" data-toggle-icon="<svg aria-hidden="true" tabindex="0" class="e-font-icon-svg e-fas-align-justify" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"></path></svg>" data-close-icon="<svg aria-hidden="true" tabindex="0" class="e-font-icon-svg e-far-window-close" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"></path></svg>" data-full-width="yes"> <ul id="menu-1-f8aabc2" class="hfe-nav-menu"><li id="menu-item-10069" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home parent hfe-creative-menu"><a href="https://www.flozen.media/" class = "hfe-menu-item">Home<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-3334" class="menu-item menu-item-type-post_type menu-item-object-page parent hfe-creative-menu"><a href="https://www.flozen.media/about-us/" class = "hfe-menu-item">About Us<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-3676" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children parent hfe-has-submenu hfe-creative-menu"><div class="hfe-has-submenu-container"><a href="https://www.flozen.media/services/" class = "hfe-menu-item">Services<span class='hfe-menu-toggle sub-arrow hfe-menu-child-0'><i class='ri-arrow-down-s-line'></i> </span><em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></div> <ul class="sub-menu"> <li id="menu-item-5149" class="menu-item menu-item-type-post_type menu-item-object-services hfe-creative-menu"><a href="https://www.flozen.media/services/logo-designing/" class = "hfe-sub-menu-item">Logo Designing<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12065" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/services/software-development/" class = "hfe-sub-menu-item">Software Development<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12066" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/services/seo-branding/" class = "hfe-sub-menu-item">SEO & Branding<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12067" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/services/domain-web-hosting/" class = "hfe-sub-menu-item">Domain & Web Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12068" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/services/web-design-and-development/" class = "hfe-sub-menu-item">Web Design & Development<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12069" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/services/business-emails/" class = "hfe-sub-menu-item">Business Emails<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> </ul> </li> <li id="menu-item-5383" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-ancestor current_page_ancestor menu-item-has-children parent hfe-has-submenu hfe-creative-menu"><div class="hfe-has-submenu-container"><a href="https://www.flozen.media/products/" class = "hfe-menu-item">Products<span class='hfe-menu-toggle sub-arrow hfe-menu-child-0'><i class='ri-arrow-down-s-line'></i> </span><em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></div> <ul class="sub-menu"> <li id="menu-item-12283" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children hfe-has-submenu hfe-creative-menu"><div class="hfe-has-submenu-container"><a href="#" class = "hfe-sub-menu-item">Microsoft 365<span class='hfe-menu-toggle sub-arrow hfe-menu-child-1'><i class='ri-arrow-down-s-line'></i> </span><em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></div> <ul class="sub-menu"> <li id="menu-item-12284" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/products/microsoft-365-basic/" class = "hfe-sub-menu-item">Microsoft 365 Basic<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12307" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/products/microsoft-365-standard/" class = "hfe-sub-menu-item">Microsoft 365 Standard<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12308" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item hfe-creative-menu"><a href="/products/microsoft-365-premium/" class = "hfe-sub-menu-item hfe-sub-menu-item-active">Microsoft 365 Premium<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> </ul> </li> <li id="menu-item-12335" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/products/google-workspace/" class = "hfe-sub-menu-item">Google Work Space<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12686" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children hfe-has-submenu hfe-creative-menu"><div class="hfe-has-submenu-container"><a href="#" class = "hfe-sub-menu-item">Shared Web Hosting<span class='hfe-menu-toggle sub-arrow hfe-menu-child-1'><i class='ri-arrow-down-s-line'></i> </span><em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></div> <ul class="sub-menu"> <li id="menu-item-12688" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/products/linux-shared-hosting/" class = "hfe-sub-menu-item">Linux Shared Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12687" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/products/windows-shared-hosting/" class = "hfe-sub-menu-item">Windows Shared Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> </ul> </li> </ul> </li> <li id="menu-item-11503" class="menu-item menu-item-type-post_type menu-item-object-page parent hfe-creative-menu"><a href="https://www.flozen.media/clients/" class = "hfe-menu-item">Clients<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-20680" class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent parent hfe-creative-menu"><a href="https://www.flozen.media/blog/" class = "hfe-menu-item">Blog<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-2799" class="menu-item menu-item-type-post_type menu-item-object-page parent hfe-creative-menu"><a href="https://www.flozen.media/contact-us/" class = "hfe-menu-item">Contact Us<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> </ul> </nav> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-84795e2 e-con-full e-flex e-con e-child" data-id="84795e2" data-element_type="container"> <div class="elementor-element elementor-element-d590995 elementor-widget__width-initial header-contact elementor-hidden-laptop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-rs-contact-box" data-id="d590995" data-element_type="widget" data-widget_type="rs-contact-box.default"> <div class="elementor-widget-container"> <!-- Style 1 Start --> <div class="rs-contact-box"> <div class="address-item boxstyle1"> <div class="address-icon icon_1 elementor-repeater-item-de808a5"> <i aria-hidden="true" class=" flaticon-telephone"></i> </div> <div class="address-text"> <div class="phone"> <span class="label">Call Any Time</span> <a href="tel:+17387407888">+1-738-740-7888</a> </div> </div> <span class="des-right-icon"></span> </div> </div> <!-- Style 1 End --> </div> </div> <div class="elementor-element elementor-element-84a229a elementor-widget__width-initial header-line elementor-hidden-laptop elementor-hidden-tablet elementor-hidden-mobile elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="84a229a" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> <div class="elementor-element elementor-element-62520e6 elementor-widget__width-auto elementor-hidden-mobile elementor-widget elementor-widget-rs-button" data-id="62520e6" data-element_type="widget" data-widget_type="rs-button.default"> <div class="elementor-widget-container"> <div class="rs-button style1 unique-58789"> <a class="rs-btn" href="https://demo.rstheme.com/wordpress/bandco/contact/" > <span>Get a Quote <em> <i aria-hidden="true" class="ri-arrow-right-line"></i> <i aria-hidden="true" class="ri-arrow-right-line"></i> </em> </span> </a> </div> </div> </div> <div class="elementor-element elementor-element-d0116e6 elementor-widget__width-initial elementor-widget elementor-widget-rsoffcanvas" data-id="d0116e6" data-element_type="widget" data-widget_type="rsoffcanvas.default"> <div class="elementor-widget-container"> <div class="rs-offcanvas-area"> <ul> <li class="nav-link pr-20"> <a class="nav-expander"> <svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15" fill="none"><path d="M6 8.25H0.75C0.551088 8.25 0.360322 8.32902 0.21967 8.46967C0.0790176 8.61032 0 8.80109 0 9V14.25C0 14.4489 0.0790176 14.6397 0.21967 14.7803C0.360322 14.921 0.551088 15 0.75 15H6C6.19891 15 6.38968 14.921 6.53033 14.7803C6.67098 14.6397 6.75 14.4489 6.75 14.25V9C6.75 8.80109 6.67098 8.61032 6.53033 8.46967C6.38968 8.32902 6.19891 8.25 6 8.25ZM5.25 13.5H1.5V9.75H5.25V13.5ZM14.25 0H9C8.80109 0 8.61032 0.0790176 8.46967 0.21967C8.32902 0.360322 8.25 0.551088 8.25 0.75V6C8.25 6.19891 8.32902 6.38968 8.46967 6.53033C8.61032 6.67098 8.80109 6.75 9 6.75H14.25C14.4489 6.75 14.6397 6.67098 14.7803 6.53033C14.921 6.38968 15 6.19891 15 6V0.75C15 0.551088 14.921 0.360322 14.7803 0.21967C14.6397 0.0790176 14.4489 0 14.25 0ZM13.5 5.25H9.75V1.5H13.5V5.25ZM14.25 8.25H9C8.80109 8.25 8.61032 8.32902 8.46967 8.46967C8.32902 8.61032 8.25 8.80109 8.25 9V14.25C8.25 14.4489 8.32902 14.6397 8.46967 14.7803C8.61032 14.921 8.80109 15 9 15H14.25C14.4489 15 14.6397 14.921 14.7803 14.7803C14.921 14.6397 15 14.4489 15 14.25V9C15 8.80109 14.921 8.61032 14.7803 8.46967C14.6397 8.32902 14.4489 8.25 14.25 8.25ZM13.5 13.5H9.75V9.75H13.5V13.5ZM6 0H0.75C0.551088 0 0.360322 0.0790176 0.21967 0.21967C0.0790176 0.360322 0 0.551088 0 0.75V6C0 6.19891 0.0790176 6.38968 0.21967 6.53033C0.360322 6.67098 0.551088 6.75 0.75 6.75H6C6.19891 6.75 6.38968 6.67098 6.53033 6.53033C6.67098 6.38968 6.75 6.19891 6.75 6V0.75C6.75 0.551088 6.67098 0.360322 6.53033 0.21967C6.38968 0.0790176 6.19891 0 6 0ZM5.25 5.25H1.5V1.5H5.25V5.25Z" fill="#737373"></path></svg> </a> </li> </ul> </div> </div> </div> </div> </div> </div> </div> <div id="rs-theme-toggle" class="rs_ld_btn" style="opacity: 0; display: none;"> <span class="d-block-light"><i class="ri-sun-line"></i></span> <span class="d-block-dark"><i class="ri-moon-line"></i></span> </div> </header> <div class='header-breadcamb-fixer'> <div data-elementor-type="wp-post" data-elementor-id="2484" class="elementor elementor-2484"> <div class="no-position rs-sticky-default elementor-element elementor-element-e2a177e e-flex e-con-boxed e-con e-parent" data-id="e2a177e" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-3342324 elementor-widget__width-initial elementor-widget elementor-widget-page-title" data-id="3342324" data-element_type="widget" data-settings="{"align":"left"}" data-widget_type="page-title.default"> <div class="elementor-widget-container"> <div class="hfe-page-title hfe-page-title-wrapper elementor-widget-heading"> <h1 class="elementor-heading-title elementor-size"> Microsoft 365 Premium </h1 > </div> </div> </div> <div class="elementor-element elementor-element-e2a74f5 elementor-widget elementor-widget-rs-breadcrumb" data-id="e2a74f5" data-element_type="widget" data-widget_type="rs-breadcrumb.default"> <div class="elementor-widget-container"> <div class="breadcrumb-area style3"> <div class="breadcrumbs-inner"> <!-- Breadcrumb NavXT 7.3.1 --> <span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to Flozen Media Technologies." href="https://www.flozen.media" class="home" ><span property="name">Flozen Media Technologies</span></a><meta property="position" content="1"></span> > <span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the Flozen Media Technologies Portfolio Categories archives." href="https://www.flozen.media/portfolio-category/products/" class="taxonomy portfolio-category" ><span property="name">Products</span></a><meta property="position" content="2"></span> > <span property="itemListElement" typeof="ListItem"><span property="name" class="post post-portfolios current-item">Microsoft 365 Premium</span><meta property="url" content="https://www.flozen.media/products/microsoft-365-premium/"><meta property="position" content="3"></span> </div> </div> </div> </div> <div class="elementor-element elementor-element-83d1927 elementor-absolute elementor-widget__width-initial elementor-widget elementor-widget-image" data-id="83d1927" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default"> <div class="elementor-widget-container"> <img fetchpriority="high" width="1016" height="684" src="https://www.flozen.media/wp-content/uploads/2024/04/page-bg.png" class="attachment-large size-large wp-image-2506" alt="" srcset="https://www.flozen.media/wp-content/uploads/2024/04/page-bg.png 1016w, https://www.flozen.media/wp-content/uploads/2024/04/page-bg-300x202.png 300w, https://www.flozen.media/wp-content/uploads/2024/04/page-bg-768x517.png 768w" sizes="(max-width: 1016px) 100vw, 1016px" /> </div> </div> </div> </div> </div> </div> <div data-elementor-type="wp-post" data-elementor-id="12301" class="elementor elementor-12301"> <div class="no-position rs-sticky-default elementor-element elementor-element-4e1ab7fc e-flex e-con-boxed e-con e-parent" data-id="4e1ab7fc" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-488d626b e-con-full e-flex e-con e-child" data-id="488d626b" data-element_type="container"> <div class="elementor-element elementor-element-78d5f3e5 elementor-widget elementor-widget-rs-heading" data-id="78d5f3e5" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 subtitle-gradient-no"> <div class="title-inner"> <h3 class="title rs-split-text-disable ">Microsoft 365 Premium</h3> </div> <div class="description"> <p>With M365 Business Premium plan, Increase your productivity, impact and expand your business reach with Office powered by the cloud—must-have tools for business today.</p><ul><li>Stay updated with upgraded version of Word, Excel, PowerPoint , and more.</li><li>Email Hosting with a 50 GB mailbox and custom email domain.</li><li>Use remote working tools & Create a hub for teamwork with Microsoft Teams.</li><li>Store and share files with 1 TB of OneDrive cloud storage per user.</li><li>Secure your business against advanced cyberattacks with sophisticated phishing and ransomware protection.</li><li>Your data may get shared intentionally to someone else for this Use encryption to control and manage sensitive data.</li><li>Secure devices that connect to your data and help keep iOS, Android, Windows, and Mac devices safe and up to date.</li></ul> </div> </div> </div> </div> <div class="elementor-element elementor-element-36daa1d8 elementor-widget elementor-widget-rs-heading" data-id="36daa1d8" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 subtitle-gradient-no"> <div class="title-inner"> </div> <div class="description"> <p><span class="TextRun SCXW130650197 BCX0" lang="EN-IN" xml:lang="EN-IN" data-contrast="none"><span class="NormalTextRun SCXW130650197 BCX0" data-ccp-parastyle="Normal (Web)">Flozen Media, leading Microsoft Partner in Kerala, Offering Microsoft Office 365, Outlook Business Email, Exchange Online Plans & Microsoft Email Migration. Buy Microsoft 365 Business that helps you work better in Teams. Moreover, it lets you collaborate in real time with Microsoft Teams, Outlook, One Drive, and many other related products of Microsoft. You do not have to update t</span><span class="NormalTextRun SCXW130650197 BCX0" data-ccp-parastyle="Normal (Web)">he tools </span><span class="NormalTextRun SCXW130650197 BCX0" data-ccp-parastyle="Normal (Web)">f</span><span class="NormalTextRun SCXW130650197 BCX0" data-ccp-parastyle="Normal (Web)">requently</span><span class="NormalTextRun SCXW130650197 BCX0" data-ccp-parastyle="Normal (Web)">, as Microsoft 365 Business tools update automatically and keep your data safe.</span></span><span class="EOP SCXW130650197 BCX0" data-ccp-props="{"134233117":true,"134233118":true,"201341983":0,"335551550":6,"335551620":6,"335559740":240}"> </span></p> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-7333db4b e-con-full e-flex e-con e-child" data-id="7333db4b" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-c2a7378 elementor-widget elementor-widget-image" data-id="c2a7378" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img decoding="async" width="300" height="91" src="https://www.flozen.media/wp-content/uploads/2024/06/w0-300x91.png" class="attachment-medium size-medium wp-image-11833" alt="" srcset="https://www.flozen.media/wp-content/uploads/2024/06/w0-300x91.png 300w, https://www.flozen.media/wp-content/uploads/2024/06/w0.png 330w" sizes="(max-width: 300px) 100vw, 300px" /> </div> </div> <div class="elementor-element elementor-element-7f16f5f8 elementor-widget elementor-widget-rs-heading" data-id="7f16f5f8" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 subtitle-gradient-no"> <div class="title-inner"> <h5 class="title rs-split-text-disable ">Microsoft 365 Business Premium</h5> </div> <div class="description"> <p>Cloud Service - Commercial</p> </div> </div> </div> </div> <div class="elementor-element elementor-element-2ce97704 elementor-widget elementor-widget-rs-heading" data-id="2ce97704" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 subtitle-gradient-no"> <div class="title-inner"> <h5 class="title rs-split-text-disable ">Web, mobile and Desktop apps and services:</h5> </div> <div class="description"> <p>Microsoft Word, Microsoft Excel, Microsoft PowerPoint, Microsoft Outlook, Microsoft OneNote, Microsoft Publisher, Microsoft Teams, Microsoft SharePoint, Microsoft OneDrive for Business, Exchange Online, <span class="x-screen-reader">Microsoft </span>Intune, Azure Information Protection</p> </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-ae2f494 e-flex e-con-boxed e-con e-parent" data-id="ae2f494" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-20755a8 elementor-widget elementor-widget-heading" data-id="20755a8" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">Microsoft 365 Business Basic Features</h3> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-9bc08dd e-grid e-con-boxed e-con e-parent" data-id="9bc08dd" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-437a312 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="437a312" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-calendar-alt" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm320-196c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM192 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM64 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Email & Calendars </span> </h3> <p class="elementor-icon-box-description"> With Outlook, you get a chance to create a business-class email and send attachments up to 150 MB. Plus, mailbox storage is up to 50 GB per user. </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-a315756 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="a315756" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <svg aria-hidden="true" class="e-font-icon-svg e-fab-dev" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M120.12 208.29c-3.88-2.9-7.77-4.35-11.65-4.35H91.03v104.47h17.45c3.88 0 7.77-1.45 11.65-4.35 3.88-2.9 5.82-7.25 5.82-13.06v-69.65c-.01-5.8-1.96-10.16-5.83-13.06zM404.1 32H43.9C19.7 32 .06 51.59 0 75.8v360.4C.06 460.41 19.7 480 43.9 480h360.2c24.21 0 43.84-19.59 43.9-43.8V75.8c-.06-24.21-19.7-43.8-43.9-43.8zM154.2 291.19c0 18.81-11.61 47.31-48.36 47.25h-46.4V172.98h47.38c35.44 0 47.36 28.46 47.37 47.28l.01 70.93zm100.68-88.66H201.6v38.42h32.57v29.57H201.6v38.41h53.29v29.57h-62.18c-11.16.29-20.44-8.53-20.72-19.69V193.7c-.27-11.15 8.56-20.41 19.71-20.69h63.19l-.01 29.52zm103.64 115.29c-13.2 30.75-36.85 24.63-47.44 0l-38.53-144.8h32.57l29.71 113.72 29.57-113.72h32.58l-38.46 144.8z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Web and mobile app development </span> </h3> <p class="elementor-icon-box-description"> Get the fully installed Office apps on multiple PCs, Macs, tablets, and mobile devices (including Windows, iOS, and Android) </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-c99459e elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="c99459e" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <svg aria-hidden="true" class="e-font-icon-svg e-far-comments" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Connection and collaboration </span> </h3> <p class="elementor-icon-box-description"> Instantly access everything your employees may need including chat, content, tools, video conference and people with Microsoft Teams. </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-87245e7 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="87245e7" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <svg aria-hidden="true" class="e-font-icon-svg e-fab-connectdevelop" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Increase protection against cyberthreats </span> </h3> <p class="elementor-icon-box-description"> Help protect against malware, viruses, phishing attempts, malicious links, and other threats. </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-3bb6dde elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="3bb6dde" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-cloud" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > 1 TB secure cloud storage per user </span> </h3> <p class="elementor-icon-box-description"> Sync, share, and edit documents or photos easily across all devices with 1TB of OneDrive cloud storage. </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-4864f62 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="4864f62" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <svg aria-hidden="true" class="e-font-icon-svg e-fab-searchengin" viewBox="0 0 460 512" xmlns="http://www.w3.org/2000/svg"><path d="M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Add business data protection </span> </h3> <p class="elementor-icon-box-description"> Control access to sensitive data using encryption to help keep data from being accidentally shared. </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-edec8e4 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="edec8e4" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-business-time" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M496 224c-79.59 0-144 64.41-144 144s64.41 144 144 144 144-64.41 144-144-64.41-144-144-144zm64 150.29c0 5.34-4.37 9.71-9.71 9.71h-60.57c-5.34 0-9.71-4.37-9.71-9.71v-76.57c0-5.34 4.37-9.71 9.71-9.71h12.57c5.34 0 9.71 4.37 9.71 9.71V352h38.29c5.34 0 9.71 4.37 9.71 9.71v12.58zM496 192c5.4 0 10.72.33 16 .81V144c0-25.6-22.4-48-48-48h-80V48c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h395.12c28.6-20.09 63.35-32 100.88-32zM320 96H192V64h128v32zm6.82 224H208c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h291.43C327.1 423.96 320 396.82 320 368c0-16.66 2.48-32.72 6.82-48z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Simplified, multiuser Windows with WVD </span> </h3> <p class="elementor-icon-box-description"> With Windows Virtual Desktop support, get multisession Windows 11 and Office and support for Remote Desktop Services environments with simplified licensing and lower costs. </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-db43b58 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="db43b58" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-comment-dots" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Communication and work management </span> </h3> <p class="elementor-icon-box-description"> Microsoft Kaizala makes it easy to connect and coordinate with your Firstline workers, partners, and customers – wherever they are – using a simple-to-use chat interface. </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-b720e3a elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="b720e3a" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-globe" viewBox="0 0 496 512" xmlns="http://www.w3.org/2000/svg"><path d="M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Intranet and team sites </span> </h3> <p class="elementor-icon-box-description"> Inform and engage your teammates and connect people to content, expertise, and processes with team sites through SharePoint. </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-f0bab19 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="f0bab19" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <svg aria-hidden="true" class="e-font-icon-svg e-fab-microsoft" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Enjoy Office apps </span> </h3> <p class="elementor-icon-box-description"> Get the latest security features and capabilities with fully installed and always up-to-date versions of Outlook, Word, Excel, PowerPoint for Windows or Mac, OneNote (features vary), and Access and Publisher (PC only). </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-3db2274 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="3db2274" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <svg aria-hidden="true" class="e-font-icon-svg e-far-paper-plane" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Workflow automation </span> </h3> <p class="elementor-icon-box-description"> Build automated workflows between apps and services to get notifications, collect data, synchronize files, and more with Power Automate. </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-2ac6b87 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="2ac6b87" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-comments" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Instant messaging and online meetings </span> </h3> <p class="elementor-icon-box-description"> Connect and communicate with your team members anywhere and anytime by using Microsoft Teams. Host a team gathering over HD video conferencing, where you can use one-step screen sharing. </p> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-130a199 e-grid e-con-boxed e-con e-parent" data-id="130a199" data-element_type="container"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-9c52ae9 e-flex e-con-boxed e-con e-child" data-id="9c52ae9" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-22748d5 elementor-widget elementor-widget-rs-heading" data-id="22748d5" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 subtitle-gradient-no"> <div class="title-inner"> <span class="sub-text"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-certificate" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z"></path></svg>Authorized Microsoft Solutions Partner </span> <h4 class="title rs-split-text-disable ">Why choose Flozen Media as your preferred Microsoft 365 Reseller</h4> </div> <div class="description"> <p>Flozen Media is one of the best Office 365 Reseller in Kerala and Dubai which have credited large deployments in thousands of companies having multiple office Locations & helped SME’s find the perfect business emailing & office productivity solutions they need in the cloud. Flozen Media has team of consultants & cloud migration experts who are expertise in adapting Office 365 to your Organizational needs and deploys Microsoft business solutions with 24×7 support.</p> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-ce5c582 e-flex e-con-boxed e-con e-child" data-id="ce5c582" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-5b55de6 elementor-widget elementor-widget-rs-heading" data-id="5b55de6" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 subtitle-gradient-no"> <div class="title-inner"> <h4 class="title rs-split-text-disable ">Contact Sales & Get Discount !!</h4> </div> </div> </div> </div> <div class="elementor-element elementor-element-e457e4e elementor-widget elementor-widget-rs-cf7" data-id="e457e4e" data-element_type="widget" data-widget_type="rs-cf7.default"> <div class="elementor-widget-container"> <div class="wpcf7 no-js" id="wpcf7-f12166-p12301-o1" lang="en-US" dir="ltr" data-wpcf7-id="12166"> <div class="screen-reader-response"><p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul></div> <form action="/products/microsoft-365-premium/#wpcf7-f12166-p12301-o1" method="post" class="wpcf7-form init" aria-label="Contact form" novalidate="novalidate" data-status="init"> <div style="display: none;"> <input type="hidden" name="_wpcf7" value="12166" /> <input type="hidden" name="_wpcf7_version" value="6.0.1" /> <input type="hidden" name="_wpcf7_locale" value="en_US" /> <input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f12166-p12301-o1" /> <input type="hidden" name="_wpcf7_container_post" value="12301" /> <input type="hidden" name="_wpcf7_posted_data_hash" value="" /> </div> <div class="row"> <div class="col-md-6"> <p><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" autocomplete="name" aria-required="true" aria-invalid="false" placeholder="Your Name" value="" type="text" name="your-name" /></span> </p> </div> <div class="col-md-6"> <p><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" autocomplete="email" aria-required="true" aria-invalid="false" placeholder="Email Address" value="" type="email" name="your-email" /></span> </p> </div> <div class="col-md-6"> <p><span class="wpcf7-form-control-wrap" data-name="domain"><input size="40" maxlength="400" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" placeholder="Domain" value="" type="text" name="domain" /></span> </p> </div> <div class="col-md-6"> <p><span class="wpcf7-form-control-wrap" data-name="qty"><input size="40" maxlength="400" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" placeholder="Quantity" value="" type="text" name="qty" /></span> </p> </div> <div class="form-btn-area"> <p><input class="wpcf7-form-control wpcf7-submit has-spinner" type="submit" value="Send Message" /> </p> </div> </div><div class="wpcf7-response-output" aria-hidden="true"></div> </form> </div> </div> </div> </div> </div> </div> </div> </div> <footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo"> <div class='footer-width-fixer'> <div data-elementor-type="wp-post" data-elementor-id="8765" class="elementor elementor-8765"> <div class="no-position rs-sticky-default elementor-element elementor-element-bcddc31 e-flex e-con-boxed e-con e-child" data-id="bcddc31" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-50f67d0 elementor-absolute animated-slow elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-image" data-id="50f67d0" data-element_type="widget" data-settings="{"_position":"absolute","_animation":"fadeInLeft"}" data-widget_type="image.default"> <div class="elementor-widget-container"> <img width="104" height="113" src="https://www.flozen.media/wp-content/uploads/2024/06/footer-iconv-01.png" class="attachment-large size-large wp-image-8819" alt="" /> </div> </div> <div class="elementor-element elementor-element-15e227f elementor-absolute animated-slow elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-image" data-id="15e227f" data-element_type="widget" data-settings="{"_position":"absolute","_animation":"fadeInRight","_animation_delay":500}" data-widget_type="image.default"> <div class="elementor-widget-container"> <img width="197" height="200" src="https://www.flozen.media/wp-content/uploads/2024/06/about-shapdes.png" class="attachment-large size-large wp-image-8820" alt="" /> </div> </div> <div class="elementor-element elementor-element-739bc66 elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget elementor-widget-rs-heading" data-id="739bc66" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style2 center subtitle-gradient-yes"> <div class="title-inner"> <span class="sub-text"> Let's Do Something Great Together </span> <h2 class="title rs-split-text-enable split-in-rotate">We make creative solutions for business!</h2> </div> </div> </div> </div> <div class="elementor-element elementor-element-719a142 elementor-widget elementor-widget-rs-button" data-id="719a142" data-element_type="widget" data-widget_type="rs-button.default"> <div class="elementor-widget-container"> <div class="rs-button style1 unique-58809"> <a class="rs-btn" href="https://demo.rstheme.com/wordpress/bandco/contact/" > <span>Contact With Us <em> <svg xmlns="http://www.w3.org/2000/svg" width="17" height="12" viewBox="0 0 17 12" fill="none"><path d="M16.5303 6.53033C16.8232 6.23744 16.8232 5.76256 16.5303 5.46967L11.7574 0.696698C11.4645 0.403805 10.9896 0.403805 10.6967 0.696698C10.4038 0.989592 10.4038 1.46447 10.6967 1.75736L14.9393 6L10.6967 10.2426C10.4038 10.5355 10.4038 11.0104 10.6967 11.3033C10.9896 11.5962 11.4645 11.5962 11.7574 11.3033L16.5303 6.53033ZM6.55671e-08 6.75L16 6.75L16 5.25L-6.55671e-08 5.25L6.55671e-08 6.75Z" fill="white"></path></svg> <svg xmlns="http://www.w3.org/2000/svg" width="17" height="12" viewBox="0 0 17 12" fill="none"><path d="M16.5303 6.53033C16.8232 6.23744 16.8232 5.76256 16.5303 5.46967L11.7574 0.696698C11.4645 0.403805 10.9896 0.403805 10.6967 0.696698C10.4038 0.989592 10.4038 1.46447 10.6967 1.75736L14.9393 6L10.6967 10.2426C10.4038 10.5355 10.4038 11.0104 10.6967 11.3033C10.9896 11.5962 11.4645 11.5962 11.7574 11.3033L16.5303 6.53033ZM6.55671e-08 6.75L16 6.75L16 5.25L-6.55671e-08 5.25L6.55671e-08 6.75Z" fill="white"></path></svg> </em> </span> </a> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-1bbd3d9 e-con-full e-flex e-con e-parent" data-id="1bbd3d9" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="no-position rs-sticky-default elementor-element elementor-element-5da41b3 e-flex e-con-boxed e-con e-child" data-id="5da41b3" data-element_type="container"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-c1d6550 e-flex e-con-boxed e-con e-child" data-id="c1d6550" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-f40864d e-con-full e-flex e-con e-child" data-id="f40864d" data-element_type="container"> <div class="elementor-element elementor-element-7f32109 elementor-widget elementor-widget-site-logo" data-id="7f32109" data-element_type="widget" data-settings="{"align":"left","logo_height":{"unit":"px","size":50,"sizes":[]},"logo_height_tablet":{"unit":"px","size":"","sizes":[]},"logo_height_mobile":{"unit":"px","size":"","sizes":[]},"align_mobile":"center","logo_height_laptop":{"unit":"px","size":"","sizes":[]},"image_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_space":{"unit":"px","size":0,"sizes":[]},"caption_space_laptop":{"unit":"px","size":"","sizes":[]},"caption_space_tablet":{"unit":"px","size":"","sizes":[]},"caption_space_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="site-logo.default"> <div class="elementor-widget-container"> <div class="hfe-site-logo"> <a data-elementor-open-lightbox="" class='elementor-clickable' href="https://www.flozen.media"> <div class="hfe-site-logo-set"> <div class="hfe-site-logo-container"> <img class="hfe-site-logo-img elementor-animation-" src="https://www.flozen.media/wp-content/uploads/2024/06/logo-new2.png" alt="logo"/> </div> </div> </a> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-22c5dd5 e-con-full e-flex e-con e-child" data-id="22c5dd5" data-element_type="container"> <div class="no-position rs-sticky-default elementor-element elementor-element-38c282c e-con-full e-flex e-con e-child" data-id="38c282c" data-element_type="container"> <div class="elementor-element elementor-element-48bceaa elementor-widget elementor-widget-text-editor" data-id="48bceaa" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> Subscribe for the latest news. Stay updated on the latest trends. </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-5f4a445 e-con-full e-flex e-con e-child" data-id="5f4a445" data-element_type="container"> <div class="elementor-element elementor-element-3cb3445 elementor-widget elementor-widget-rs-newsletter" data-id="3cb3445" data-element_type="widget" data-widget_type="rs-newsletter.default"> <div class="elementor-widget-container"> <div class="rs-newsletter-form rs_newsletterstyle2 ">[mc4wp_form id=2408]</div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-1f7192f e-flex e-con-boxed e-con e-child" data-id="1f7192f" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-adc0e51 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="adc0e51" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-ddf596d e-flex e-con-boxed e-con e-child" data-id="ddf596d" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-0e6ed8f e-con-full e-flex e-con e-child" data-id="0e6ed8f" data-element_type="container"> <div class="elementor-element elementor-element-81456ca elementor-widget elementor-widget-heading" data-id="81456ca" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">About Company</h3> </div> </div> <div class="elementor-element elementor-element-0a763d0 elementor-widget elementor-widget-text-editor" data-id="0a763d0" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>Helps businesses develop and implement marketing strategies to increase market and improve brand recognition.</p> </div> </div> <div class="elementor-element elementor-element-144a1b3 elementor-widget elementor-widget-rs-button" data-id="144a1b3" data-element_type="widget" data-widget_type="rs-button.default"> <div class="elementor-widget-container"> <div class="rs-button style1 unique-40430"> <a class="rs-btn" href="https://demo.rstheme.com/wordpress/bandco/contact/" > <span>Get in Touch <em> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="12" viewBox="0 0 18 12" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 6C0 5.66249 0.273604 5.38889 0.611111 5.38889L15.0246 5.38889L11.179 1.54323C10.9403 1.30458 10.9403 0.917645 11.179 0.678991C11.4176 0.440337 11.8046 0.440337 12.0432 0.678991L16.9321 5.56788C17.1708 5.80653 17.1708 6.19347 16.9321 6.43212L12.0432 11.321C11.8046 11.5597 11.4176 11.5597 11.179 11.321C10.9403 11.0824 10.9403 10.6954 11.179 10.4568L15.0246 6.61111L0.611111 6.61111C0.273604 6.61111 0 6.33751 0 6Z" fill="white"></path></svg> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="12" viewBox="0 0 18 12" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 6C0 5.66249 0.273604 5.38889 0.611111 5.38889L15.0246 5.38889L11.179 1.54323C10.9403 1.30458 10.9403 0.917645 11.179 0.678991C11.4176 0.440337 11.8046 0.440337 12.0432 0.678991L16.9321 5.56788C17.1708 5.80653 17.1708 6.19347 16.9321 6.43212L12.0432 11.321C11.8046 11.5597 11.4176 11.5597 11.179 11.321C10.9403 11.0824 10.9403 10.6954 11.179 10.4568L15.0246 6.61111L0.611111 6.61111C0.273604 6.61111 0 6.33751 0 6Z" fill="white"></path></svg> </em> </span> </a> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-25fba07 e-con-full e-flex e-con e-child" data-id="25fba07" data-element_type="container"> <div class="elementor-element elementor-element-c9f477f elementor-widget__width-inherit elementor-widget elementor-widget-heading" data-id="c9f477f" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">Useful Links</h3> </div> </div> <div class="elementor-element elementor-element-8730ded hfe-nav-menu__breakpoint-none elementor-widget__width-initial hfe-nav-menu__align-left hfe-submenu-icon-arrow hfe-link-redirect-child elementor-widget elementor-widget-navigation-menu" data-id="8730ded" data-element_type="widget" data-settings="{"padding_horizontal_menu_item":{"unit":"px","top":"10","right":"30","bottom":"10","left":"0","isLinked":false},"location_area_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"menu_bottom_space_last_zero":{"unit":"px","size":"","sizes":[]},"menu_bottom_space_last_zero_laptop":{"unit":"px","size":"","sizes":[]},"menu_bottom_space_last_zero_tablet":{"unit":"px","size":"","sizes":[]},"menu_bottom_space_last_zero_mobile":{"unit":"px","size":"","sizes":[]},"main_menu_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_dropdown_item":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item":{"unit":"px","size":15,"sizes":[]},"padding_vertical_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"distance_from_menu":{"unit":"px","size":"","sizes":[]},"distance_from_menu_laptop":{"unit":"px","size":"","sizes":[]},"distance_from_menu_tablet":{"unit":"px","size":"","sizes":[]},"distance_from_menu_mobile":{"unit":"px","size":"","sizes":[]},"toggle_size":{"unit":"px","size":"","sizes":[]},"toggle_size_laptop":{"unit":"px","size":"","sizes":[]},"toggle_size_tablet":{"unit":"px","size":"","sizes":[]},"toggle_size_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_width":{"unit":"px","size":"","sizes":[]},"toggle_border_width_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_width_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_width_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_radius":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="navigation-menu.default"> <div class="elementor-widget-container"> <style> .hfe-layout-vertical .left-arrow ul .menu-item:hover a:after { background: !important; } .hfe-layout-vertical .left-arrow ul .menu-item:hover a:before { border-left: 6px solid } </style> <div class="hfe-nav-menu hfe-layout-vertical normal hfe-nav-menu-layout mega_columns1 vertical" data-layout="vertical"> <div class="hfe-nav-menu__toggle elementor-clickable"> <div class="hfe-nav-menu-icon"> </div> </div> <nav class="hfe-nav-menu__layout-vertical hfe-nav-menu__submenu-arrow rs_one_columns no-separator right-arrow-style2 no-circle arrow icon-enable" data-toggle-icon="" data-close-icon="" data-full-width=""> <ul id="menu-1-8730ded" class="hfe-nav-menu"><li id="menu-item-12484" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/services/logo-designing/" class = "hfe-menu-item">Logo Designing<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12485" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/services/software-development/" class = "hfe-menu-item">Software Development<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12486" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/services/seo-branding/" class = "hfe-menu-item">SEO & Branding<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12487" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/services/domain-web-hosting/" class = "hfe-menu-item">Domain & Web Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12488" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/services/web-design-and-development/" class = "hfe-menu-item">Web Design & Development<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12489" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/services/business-emails/" class = "hfe-menu-item">Business Mails<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> </ul> </nav> </div> </div> </div> <div class="elementor-element elementor-element-b89127e hfe-nav-menu__breakpoint-none elementor-widget__width-initial hfe-nav-menu__align-left hfe-submenu-icon-arrow hfe-link-redirect-child elementor-widget elementor-widget-navigation-menu" data-id="b89127e" data-element_type="widget" data-settings="{"padding_horizontal_menu_item":{"unit":"px","top":"10","right":"30","bottom":"10","left":"0","isLinked":false},"location_area_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"menu_bottom_space_last_zero":{"unit":"px","size":"","sizes":[]},"menu_bottom_space_last_zero_laptop":{"unit":"px","size":"","sizes":[]},"menu_bottom_space_last_zero_tablet":{"unit":"px","size":"","sizes":[]},"menu_bottom_space_last_zero_mobile":{"unit":"px","size":"","sizes":[]},"main_menu_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_dropdown_item":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item":{"unit":"px","size":15,"sizes":[]},"padding_vertical_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"distance_from_menu":{"unit":"px","size":"","sizes":[]},"distance_from_menu_laptop":{"unit":"px","size":"","sizes":[]},"distance_from_menu_tablet":{"unit":"px","size":"","sizes":[]},"distance_from_menu_mobile":{"unit":"px","size":"","sizes":[]},"toggle_size":{"unit":"px","size":"","sizes":[]},"toggle_size_laptop":{"unit":"px","size":"","sizes":[]},"toggle_size_tablet":{"unit":"px","size":"","sizes":[]},"toggle_size_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_width":{"unit":"px","size":"","sizes":[]},"toggle_border_width_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_width_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_width_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_radius":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="navigation-menu.default"> <div class="elementor-widget-container"> <style> .hfe-layout-vertical .left-arrow ul .menu-item:hover a:after { background: !important; } .hfe-layout-vertical .left-arrow ul .menu-item:hover a:before { border-left: 6px solid } </style> <div class="hfe-nav-menu hfe-layout-vertical normal hfe-nav-menu-layout mega_columns1 vertical" data-layout="vertical"> <div class="hfe-nav-menu__toggle elementor-clickable"> <div class="hfe-nav-menu-icon"> </div> </div> <nav class="hfe-nav-menu__layout-vertical hfe-nav-menu__submenu-arrow rs_one_columns no-separator right-arrow-style2 no-circle arrow icon-enable" data-toggle-icon="" data-close-icon="" data-full-width=""> <ul id="menu-1-b89127e" class="hfe-nav-menu"><li id="menu-item-12721" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/products/microsoft-365-basic/" class = "hfe-menu-item">Microsoft 365 Basic<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12722" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/products/microsoft-365-standard/" class = "hfe-menu-item">Microsoft 365 Standard<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12723" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item parent hfe-creative-menu"><a href="/products/microsoft-365-premium/" class = "hfe-menu-item">Microsoft 365 Premium<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12724" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/products/google-workspace/" class = "hfe-menu-item">Google Workspace<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12725" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/products/linux-shared-hosting/" class = "hfe-menu-item">Linux Shared Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12726" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/products/windows-shared-hosting/" class = "hfe-menu-item">Windows Shared Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> </ul> </nav> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-d5bba5d e-con-full e-flex e-con e-child" data-id="d5bba5d" data-element_type="container"> <div class="elementor-element elementor-element-25a3cc9 elementor-widget elementor-widget-heading" data-id="25a3cc9" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">Office Address</h3> </div> </div> <div class="elementor-element elementor-element-1d2943d elementor-widget elementor-widget-text-editor" data-id="1d2943d" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <div>42 Mamnoun Street, Saba Carpet and Antiques Store, UK</div> </div> </div> <div class="elementor-element elementor-element-e62bd3b elementor-widget elementor-widget-heading" data-id="e62bd3b" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">Email Address</h3> </div> </div> <div class="elementor-element elementor-element-c3b5f27 rs-emails_bor elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="c3b5f27" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-text">Interested in working with us?</span> </li> <li class="elementor-icon-list-item"> <a href="mailto:support.bandco@gmail.com"> <span class="elementor-icon-list-text">support.bandco@gmail.com</span> </a> </li> </ul> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-6d2e1e9 e-con-full e-flex e-con e-child" data-id="6d2e1e9" data-element_type="container"> <div class="elementor-element elementor-element-49c3a7c elementor-widget elementor-widget-heading" data-id="49c3a7c" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">Phone Number</h3> </div> </div> <div class="elementor-element elementor-element-4656e0c elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="4656e0c" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <a href="tel:%20+971%20551%20579%20261"> <span class="elementor-icon-list-text">+971 551 579 261</span> </a> </li> <li class="elementor-icon-list-item"> <a href="tel:%20+97%20155%20596%201659"> <span class="elementor-icon-list-text">+97 155 596 1659</span> </a> </li> </ul> </div> </div> <div class="elementor-element elementor-element-b6c1bf7 elementor-widget elementor-widget-heading" data-id="b6c1bf7" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">Follow Us</h3> </div> </div> <div class="elementor-element elementor-element-fef2901 e-grid-align-left elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="fef2901" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-repeater-item-5aa3175" target="_blank"> <span class="elementor-screen-only">Facebook-f</span> <svg class="e-font-icon-svg e-fab-facebook-f" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"></path></svg> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-x-twitter elementor-repeater-item-a8b0318" target="_blank"> <span class="elementor-screen-only">X-twitter</span> <svg class="e-font-icon-svg e-fab-x-twitter" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"></path></svg> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-1ab8cfd" target="_blank"> <span class="elementor-screen-only">Youtube</span> <svg class="e-font-icon-svg e-fab-youtube" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path></svg> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin-in elementor-repeater-item-ec6ee6f" target="_blank"> <span class="elementor-screen-only">Linkedin-in</span> <svg class="e-font-icon-svg e-fab-linkedin-in" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"></path></svg> </a> </span> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-d116c33 e-con-full e-flex e-con e-child" data-id="d116c33" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-afc7d90 elementor-widget elementor-widget-copyright" data-id="afc7d90" data-element_type="widget" data-settings="{"align_tablet":"left","align_mobile":"left"}" data-widget_type="copyright.default"> <div class="elementor-widget-container"> <div class="hfe-copyright-wrapper normal"> <span><span>Copyright © <span id="current-year">2024</span>. Designed By <a target="_blank" href="https://rstheme.com">RSTheme.</a></span></span> </div> </div> </div> <div class="elementor-element elementor-element-b2c6179 elementor-widget elementor-widget-rs-iconbox" data-id="b2c6179" data-element_type="widget" data-widget_type="rs-iconbox.default"> <div class="elementor-widget-container"> <div class="rs-iconbox-area "> <div class="box-inner"> <div class="icon-area "> <svg aria-hidden="true" class="e-font-icon-svg e-fas-map-marker-alt" viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg> </div> <div class="text-area"> <p class=""> 19 Brooklyn Gold Street(USA)</p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </footer> </div><!-- #page --> <!-- start scrollUp --> <div id="scrollUp"> <i class="ri-arrow-up-s-line"></i> </div> <!-- Custom Cursor Start --> <div id="rs-mouse"> <div id="cursor-ball"></div> </div> <!-- Custom Cursor End --> <script> window.RS_MODULES = window.RS_MODULES || {}; window.RS_MODULES.modules = window.RS_MODULES.modules || {}; window.RS_MODULES.waiting = window.RS_MODULES.waiting || []; window.RS_MODULES.defered = true; window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {}; window.RS_MODULES.type = 'compiled'; </script> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/bandco-child/*","/wp-content/themes/bandco/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <div id="wa"></div> <script type='text/javascript'> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/dist/hooks.min.js?ver=dd5603f07f9220ed27f1" id="wp-hooks-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/dist/i18n.min.js?ver=c26c3dc7bed366793375" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); //# sourceURL=wp-i18n-js-after /* ]]> */ </script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.0.1" id="swv-js"></script> <script type="text/javascript" id="contact-form-7-js-before"> /* <![CDATA[ */ var wpcf7 = { "api": { "root": "https:\/\/www.flozen.media\/wp-json\/", "namespace": "contact-form-7\/v1" } }; //# sourceURL=contact-form-7-js-before /* ]]> */ </script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.0.1" id="contact-form-7-js"></script> <script type="text/javascript" src="//www.flozen.media/wp-content/plugins/revslider/sr6/assets/js/rbtools.min.js?ver=6.7.13" defer async id="tp-tools-js"></script> <script type="text/javascript" src="//www.flozen.media/wp-content/plugins/revslider/sr6/assets/js/rs6.min.js?ver=6.7.13" defer async id="revmin-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/popper.min.js?ver=201513434" id="popper-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/headding-title.js?ver=201513434" id="headding-title-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/slick.min.js?ver=201513434" id="slick-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/tilt.jquery.min.js?ver=201513434" id="js-tilt-view-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/jquery-ui.js?ver=201513434" id="jquery-ui-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/parallax-effect.min.js?ver=201513434" id="parallax-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/jQuery-plugin-progressbar.js?ver=201513434" id="jquery-plugin-progressbar-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/ddbeforeandafter.js?ver=201513434" id="ddbefore-and-after-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/imagesloaded.min.js?ver=5.0.0" id="imagesloaded-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/custom.js?ver=201513434" id="rsaddons-custom-pro-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/jquery.marquee.min.js?ver=201513434" id="rsaddons-marquee-js-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/jquery.marquee.min.js?ver=201513434" id="rsaddons-music-player-js-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/wp-whatsapp/assets/dist/js/njt-whatsapp.js?ver=3.6.9" id="nta-wa-libs-js"></script> <script type="text/javascript" id="nta-js-global-js-extra"> /* <![CDATA[ */ var njt_wa_global = {"ajax_url":"https://www.flozen.media/wp-admin/admin-ajax.php","nonce":"c60caffd34","defaultAvatarSVG":"\u003Csvg width=\"48px\" height=\"48px\" class=\"nta-whatsapp-default-avatar\" version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003E\n \u003Cpath style=\"fill:#EDEDED;\" d=\"M0,512l35.31-128C12.359,344.276,0,300.138,0,254.234C0,114.759,114.759,0,255.117,0\n S512,114.759,512,254.234S395.476,512,255.117,512c-44.138,0-86.51-14.124-124.469-35.31L0,512z\"/\u003E\n \u003Cpath style=\"fill:#55CD6C;\" d=\"M137.71,430.786l7.945,4.414c32.662,20.303,70.621,32.662,110.345,32.662\n c115.641,0,211.862-96.221,211.862-213.628S371.641,44.138,255.117,44.138S44.138,137.71,44.138,254.234\n c0,40.607,11.476,80.331,32.662,113.876l5.297,7.945l-20.303,74.152L137.71,430.786z\"/\u003E\n \u003Cpath style=\"fill:#FEFEFE;\" d=\"M187.145,135.945l-16.772-0.883c-5.297,0-10.593,1.766-14.124,5.297\n c-7.945,7.062-21.186,20.303-24.717,37.959c-6.179,26.483,3.531,58.262,26.483,90.041s67.09,82.979,144.772,105.048\n c24.717,7.062,44.138,2.648,60.028-7.062c12.359-7.945,20.303-20.303,22.952-33.545l2.648-12.359\n c0.883-3.531-0.883-7.945-4.414-9.71l-55.614-25.6c-3.531-1.766-7.945-0.883-10.593,2.648l-22.069,28.248\n c-1.766,1.766-4.414,2.648-7.062,1.766c-15.007-5.297-65.324-26.483-92.69-79.448c-0.883-2.648-0.883-5.297,0.883-7.062\n l21.186-23.834c1.766-2.648,2.648-6.179,1.766-8.828l-25.6-57.379C193.324,138.593,190.676,135.945,187.145,135.945\"/\u003E\n \u003C/svg\u003E","defaultAvatarUrl":"https://www.flozen.media/wp-content/plugins/wp-whatsapp/assets/img/whatsapp_logo.svg","timezone":"+00:00","i18n":{"online":"Online","offline":"Offline"},"urlSettings":{"onDesktop":"api","onMobile":"api","openInNewTab":"ON"}}; //# sourceURL=nta-js-global-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/wp-whatsapp/assets/js/whatsapp-button.js?ver=3.6.9" id="nta-js-global-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/rs-header-footer-elementor/inc/js/frontend.js?ver=1.0.1" id="hfe-frontend-js-js"></script> <script type="text/javascript" id="nta-js-popup-js-extra"> /* <![CDATA[ */ var njt_wa = {"gdprStatus":"","accounts":[{"accountId":12466,"accountName":"Support (India)","avatar":"","number":"+918891643300","title":"","predefinedText":"","willBeBackText":"I will be back in [njwa_time_work]","dayOffsText":"I will be back soon","isAlwaysAvailable":"ON","daysOfWeekWorking":{"sunday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"monday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"tuesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"wednesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"thursday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"friday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"saturday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]}}},{"accountId":12467,"accountName":"Support (UAE)","avatar":"","number":"+971585907472","title":"","predefinedText":"","willBeBackText":"I will be back in [njwa_time_work]","dayOffsText":"I will be back soon","isAlwaysAvailable":"ON","daysOfWeekWorking":{"sunday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"monday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"tuesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"wednesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"thursday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"friday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"saturday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]}}}],"options":{"display":{"displayCondition":"showAllPage","includePages":[],"excludePages":[],"includePosts":[],"showOnDesktop":"ON","showOnMobile":"ON","time_symbols":"h:m"},"styles":{"title":"Start a Conversation","responseText":"The team typically replies in a few minutes.","description":"Hi! Click one of our member below to chat on \u003Cstrong\u003EWhatsApp\u003C/strong\u003E","backgroundColor":"#2db742","textColor":"#fff","titleSize":"18","accountNameSize":"14","descriptionTextSize":"12","regularTextSize":"11","scrollHeight":"500","isShowScroll":"OFF","isShowResponseText":"OFF","isShowPoweredBy":"ON","btnLabel":"Need Help? \u003Cstrong\u003EChat with us\u003C/strong\u003E","btnLabelWidth":"156","btnPosition":"right","btnLeftDistance":"30","btnRightDistance":"30","btnBottomDistance":"93","isShowBtnLabel":"ON","isShowGDPR":"OFF","gdprContent":"Please accept our \u003Ca href=\"https://ninjateam.org/privacy-policy/\"\u003Eprivacy policy\u003C/a\u003E first to start a conversation."},"analytics":{"enabledGoogle":"OFF","enabledFacebook":"OFF","enabledGoogleGA4":"OFF"}}}; //# sourceURL=nta-js-popup-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/wp-whatsapp/assets/js/whatsapp-popup.js?ver=3.6.9" id="nta-js-popup-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/custom.js?ver=201513434" id="rsaddons-offcanvas-js-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/jquery.countdownTimer.js?ver=201513434" id="rsaddons-countdowntimer-js-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=3.25.11" id="elementor-webpack-runtime-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.25.11" id="elementor-frontend-modules-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script> <script type="text/javascript" id="elementor-frontend-js-before"> /* <![CDATA[ */ var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselWrapperAriaLabel":"Carousel | Horizontal scrolling: Arrow Left & Right","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":true},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":true},"version":"3.25.11","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"e_swiper_latest":true,"e_nested_atomic_repeaters":true,"e_optimized_control_loading":true,"e_onboarding":true,"e_css_smooth_scroll":true,"home_screen":true,"nested-elements":true,"editor_v2":true,"link-in-bio":true,"floating-buttons":true},"urls":{"assets":"https:\/\/www.flozen.media\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.flozen.media\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.flozen.media\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"17f6524338"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet","viewport_laptop"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":12301,"title":"Microsoft%20365%20Premium%20-%20Flozen%20Media%20Technologies%20%7C%20Microsoft%20365%2C%20Google%20Workspace%2C%20Business%20Emails%2C%20Web%20Hosting%2C%20Web%20Design%2C%20Logo%20%26%20Branding%2C%20SEO%20%26%20SMM%20in%20Kerala%20and%20UAE","excerpt":"","featuredImage":"https:\/\/www.flozen.media\/wp-content\/uploads\/2024\/05\/portfolio_01.jpg"}}; //# sourceURL=elementor-frontend-js-before /* ]]> */ </script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.25.11" id="elementor-frontend-js"></script> </body> </html>