/** * @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 offers cheap Linux Web Hosting, Windows web Hosting, Logo & Branding, SEO and Email Packages across India and the Middle East." /> <link rel="canonical" href="https://www.flozen.media/products/linux-shared-hosting/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Linux Shared Hosting - 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 offers cheap Linux Web Hosting, Windows web Hosting, Logo & Branding, SEO and Email Packages across India and the Middle East." /> <meta property="og:url" content="https://www.flozen.media/products/linux-shared-hosting/" /> <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-29T08:26:36+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/linux-shared-hosting/","url":"https://www.flozen.media/products/linux-shared-hosting/","name":"Linux Shared Hosting - 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/linux-shared-hosting/#primaryimage"},"image":{"@id":"https://www.flozen.media/products/linux-shared-hosting/#primaryimage"},"thumbnailUrl":"https://www.flozen.media/wp-content/uploads/2024/05/portfolio_01.jpg","datePublished":"2024-11-28T10:23:28+00:00","dateModified":"2024-11-29T08:26:36+00:00","description":"Flozen Media Technologies offers cheap Linux Web Hosting, Windows web Hosting, Logo & Branding, SEO and Email Packages across India and the Middle East.","breadcrumb":{"@id":"https://www.flozen.media/products/linux-shared-hosting/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.flozen.media/products/linux-shared-hosting/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.flozen.media/products/linux-shared-hosting/#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/linux-shared-hosting/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.flozen.media/"},{"@type":"ListItem","position":2,"name":"Linux Shared Hosting"}]},{"@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.1' type='text/css' media='all' /> <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='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.1' 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=1770647450' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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.1' 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-12669-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-12669.css?ver=1734354069' 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.1' 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.1' 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> <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-12669 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-12669"> <!--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 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 hfe-creative-menu"><a href="/products/microsoft-365-premium/" class = "hfe-sub-menu-item">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 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">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 current-menu-item hfe-creative-menu"><a href="/products/linux-shared-hosting/" class = "hfe-sub-menu-item hfe-sub-menu-item-active">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-60142"> <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 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 hfe-creative-menu"><a href="/products/microsoft-365-premium/" class = "hfe-sub-menu-item">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 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">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 current-menu-item hfe-creative-menu"><a href="/products/linux-shared-hosting/" class = "hfe-sub-menu-item hfe-sub-menu-item-active">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-56152"> <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"> Linux Shared Hosting </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">Linux Shared Hosting</span><meta property="url" content="https://www.flozen.media/products/linux-shared-hosting/"><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="12669" class="elementor elementor-12669"> <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 ">Linux Shared Hosting in India and Middle East</h3> </div> <div class="description"> <p>Flozen Media Technologies offers reliable, cost-effective, and cheap Linux Shared Hosting, making it the perfect choice for businesses looking to establish a strong online presence. Our hosting services are designed to deliver high performance with varnish cache, ensuring fast website load times and a seamless user experience. With our Linux Shared Hosting, your website will run efficiently, providing the foundation for long-term success.</p><p>For websites built with HTML/CSS, PHP, or WordPress, Linux Shared Hosting is the ideal choice. It’s reliable, scalable, and offers the tools needed to grow your online presence. If you're looking for a cost-effective and efficient way to host your website, our Linux Shared Hosting service is the solution.</p><p>In addition to our general hosting services, we also specialize in Drupal Hosting and Magento Hosting. Drupal is a powerful community-based content management system (CMS) that requires no programming skills for basic website installation and administration, making it a great choice for businesses of all sizes. Magento, on the other hand, is an open-source e-commerce platform offering a flexible shopping cart system and complete control over the design and functionality of your online store.</p><p>Flozen Media Technologies serves businesses in Kerala and the Middle East, delivering hosting solutions tailored to local needs while maintaining a global standard of service. Whether you're a small local business or a large enterprise, we provide top-tier hosting solutions that ensure optimal performance, security, and reliability for all types of websites.</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" src="https://www.flozen.media/wp-content/uploads/elementor/thumbs/cpanel-white-qxpwgp74663imhuxw53z32kw5vozmtptobngfj3pig.png" title="cpanel-white" alt="cpanel-white" loading="lazy" /> </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 ">Linux Shared Web Hosting</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 ">Fast & Reliable Linux Web Hosting Servers</h5> </div> <div class="description"> <p><i class="fas fa-check"></i> Industry-Leading cPanel Control Panel<br /><i class="fas fa-check"></i> Fast Page Loading Times & Unlimited Bandwidth<br /><i class="fas fa-check"></i> Free DDoS, Firewall Protection & Daily Backup Included<br /><i class="fas fa-check"></i> Powerful SSD Cloud Storage</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">Extensive features included as standard with our hosting plans.</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-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 > Host Unlimited Websites </span> </h3> <p class="elementor-icon-box-description"> We don't limit the number of sites; you can host additional websites, domains and email on the same account for no extra cost. </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-cpanel" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M210.3 220.2c-5.6-24.8-26.9-41.2-51-41.2h-37c-7.1 0-12.5 4.5-14.3 10.9L73.1 320l24.7-.1c6.8 0 12.3-4.5 14.2-10.7l25.8-95.7h19.8c8.4 0 16.2 5.6 18.3 14.8 2.5 10.9-5.9 22.6-18.3 22.6h-10.3c-7 0-12.5 4.6-14.3 10.8l-6.4 23.8h32c37.2 0 58.3-36.2 51.7-65.3zm-156.5 28h18.6c6.9 0 12.4-4.4 14.3-10.9l6.2-23.6h-40C30 213.7 9 227.8 1.7 254.8-7 288.6 18.5 320 52 320h12.4l7.1-26.1c1.2-4.4-2.2-8.3-6.4-8.3H53.8c-24.7 0-24.9-37.4 0-37.4zm247.5-34.8h-77.9l-3.5 13.4c-2.4 9.6 4.5 18.5 14.2 18.5h57.5c4 0 2.4 4.3 2.1 5.3l-8.6 31.8c-.4 1.4-.9 5.3-5.5 5.3h-34.9c-5.3 0-5.3-7.9 0-7.9h21.6c6.8 0 12.3-4.6 14.2-10.8l3.5-13.2h-48.4c-39.2 0-43.6 63.8-.7 63.8l57.5.2c11.2 0 20.6-7.2 23.4-17.8l14-51.8c4.8-19.2-9.7-36.8-28.5-36.8zM633.1 179h-18.9c-4.9 0-9.2 3.2-10.4 7.9L568.2 320c20.7 0 39.8-13.8 44.9-34.5l26.5-98.2c1.2-4.3-2-8.3-6.5-8.3zm-236.3 34.7v.1h-48.3l-26.2 98c-1.2 4.4 2.2 8.3 6.4 8.3h18.9c4.8 0 9.2-3 10.4-7.8l17.2-64H395c12.5 0 21.4 11.8 18.1 23.4l-10.6 40c-1.2 4.3 1.9 8.3 6.4 8.3H428c4.6 0 9.1-2.9 10.3-7.8l8.8-33.1c9-33.1-15.9-65.4-50.3-65.4zm98.3 74.6c-3.6 0-6-3.4-5.1-6.7l8-30c.9-3.9 3.7-6 7.8-6h32.9c2.6 0 4.6 2.4 3.9 5.1l-.7 2.6c-.6 2-1.9 3-3.9 3h-21.6c-7 0-12.6 4.6-14.2 10.8l-3.5 13h53.4c10.5 0 20.3-6.6 23.2-17.6l3.2-12c4.9-19.1-9.3-36.8-28.3-36.8h-47.3c-17.9 0-33.8 12-38.6 29.6l-10.8 40c-5 17.7 8.3 36.7 28.3 36.7h66.7c6.8 0 12.3-4.5 14.2-10.7l5.7-21z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > cPanel Control Panel </span> </h3> <p class="elementor-icon-box-description"> cPanel-managed hosting makes it easy; bringing you the familiar user interface and leading industry-standard control panel. </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-fas-server" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > 100% SSD Webspace </span> </h3> <p class="elementor-icon-box-description"> Treat your website to lightning-fast performance; thanks to our enterprise-grade Intel® 100% SSD storage platform. </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-expeditedssl" viewBox="0 0 496 512" xmlns="http://www.w3.org/2000/svg"><path d="M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Free SSL Certificates </span> </h3> <p class="elementor-icon-box-description"> We include unlimited, free SSL certificates provided by LetsEncrypt to help protect data and keep your customers safe. </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-fas-laptop-code" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M255.03 261.65c6.25 6.25 16.38 6.25 22.63 0l11.31-11.31c6.25-6.25 6.25-16.38 0-22.63L253.25 192l35.71-35.72c6.25-6.25 6.25-16.38 0-22.63l-11.31-11.31c-6.25-6.25-16.38-6.25-22.63 0l-58.34 58.34c-6.25 6.25-6.25 16.38 0 22.63l58.35 58.34zm96.01-11.3l11.31 11.31c6.25 6.25 16.38 6.25 22.63 0l58.34-58.34c6.25-6.25 6.25-16.38 0-22.63l-58.34-58.34c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63L386.75 192l-35.71 35.72c-6.25 6.25-6.25 16.38 0 22.63zM624 416H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33.02-17.47-32.77-32H16c-8.8 0-16 7.2-16 16v16c0 35.2 28.8 64 64 64h512c35.2 0 64-28.8 64-64v-16c0-8.8-7.2-16-16-16zM576 48c0-26.4-21.6-48-48-48H112C85.6 0 64 21.6 64 48v336h512V48zm-64 272H128V64h384v256z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Free Website Builder </span> </h3> <p class="elementor-icon-box-description"> Get online in minutes with our drag and drop website builder Over 200+ ready-made web templates to suit different sectors. </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-save" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Free Daily Backups </span> </h3> <p class="elementor-icon-box-description"> We include automatic website backups as standard with our plans, using JetBackup. Be smarter and keep your data safe & secure. </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-b71fcd4 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="b71fcd4" 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-user-shield" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Spam Protection </span> </h3> <p class="elementor-icon-box-description"> Powerful market-leading algorithms help to filter junk emails and malware from your mailbox to help keep you protected. </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-4381ae2 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="4381ae2" 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-"> <i aria-hidden="true" class=" flaticon-routine"></i> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > 100% Network Uptime </span> </h3> <p class="elementor-icon-box-description"> Our redundant, load-balanced platform features high-speed networking to ensure a consistent 100% network uptime. </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-90852a5 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="90852a5" 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-life-ring" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > cPanel Accredited Support </span> </h3> <p class="elementor-icon-box-description"> Need help? Our India based team of cPanel certified engineers are on hand to provide personal support, when you need it. </p> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-fa65453 e-flex e-con-boxed e-con e-parent" data-id="fa65453" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-b518a96 elementor-widget elementor-widget-heading" data-id="b518a96" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">Shared Hosting Plans built to suit your needs, your budget - your website.</h3> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-4305d6b e-con-full e-grid e-con e-child" data-id="4305d6b" data-element_type="container"> <div class="elementor-element elementor-element-aca36b4 elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-rsprice" data-id="aca36b4" data-element_type="widget" data-widget_type="rsprice.default"> <div class="elementor-widget-container"> <div class="rs-price-table style-1 color_primary_scheme"> <div class="rs-pricing-table-header"> <h3 class="rs-pricing-table-title">Basic Plan</h3> </div> <div class="rs-pricing-table-price display-inline"> <div class="rs-pricing-table-price-tag price-gradient-color"> <span class="rs-pricing-table-currency">₹</span><span class="rs-pricing-table-price-text">1,000</span><span class="rs-pricing-table-period">/yr</span> </div> </div> <div class="short-desc">This plan includes consultation options for all users</div> <div class="rs-pricing-table-body"> <ul class="rs-pricing-table-features-list "> <li class="elementor-repeater-item-06ec6af "> <span class="rs-pricing-table-feature-text">Unlimited Sub Domains</span> </li> <li class="elementor-repeater-item-31d8ce5 "> <span class="rs-pricing-table-feature-text">Unlimited Emails</span> </li> <li class="elementor-repeater-item-6ed05ab "> <span class="rs-pricing-table-feature-text">1 GB Disk Space</span> </li> <li class="elementor-repeater-item-4ad00c2 "> <span class="rs-pricing-table-feature-text">10 GB Transfer</span> </li> <li class="elementor-repeater-item-d7bae57 "> <span class="rs-pricing-table-feature-text">Free SSL Certificate</span> </li> <li class="elementor-repeater-item-b055a16 "> <span class="rs-pricing-table-feature-text">Full Control Panel Access</span> </li> </ul> </div> <div class="btn-part btn-arrow-rotate"> <a class="rs-pricing-table-btn" href="/contact/">More Details <svg xmlns="http://www.w3.org/2000/svg" width="16" height="12" viewBox="0 0 16 12" fill="none"><path d="M15.5303 6.53033C15.8232 6.23744 15.8232 5.76256 15.5303 5.46967L10.7574 0.696698C10.4645 0.403805 9.98959 0.403805 9.6967 0.696698C9.40381 0.989592 9.40381 1.46447 9.6967 1.75736L13.9393 6L9.6967 10.2426C9.40381 10.5355 9.40381 11.0104 9.6967 11.3033C9.98959 11.5962 10.4645 11.5962 10.7574 11.3033L15.5303 6.53033ZM6.55671e-08 6.75L15 6.75L15 5.25L-6.55671e-08 5.25L6.55671e-08 6.75Z" fill="url(#paint0_linear_38_1452)"></path><defs><linearGradient id="paint0_linear_38_1452" x1="0" y1="6" x2="2.02894" y2="11.6544" gradientUnits="userSpaceOnUse"><stop stop-color="#0B57CA"></stop><stop offset="1" stop-color="#E84037"></stop></linearGradient></defs></svg> </a> </div> </div> </div> </div> <div class="elementor-element elementor-element-5d70516 elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-rsprice" data-id="5d70516" data-element_type="widget" data-widget_type="rsprice.default"> <div class="elementor-widget-container"> <div class="rs-price-table style-1 color_primary_scheme"> <div class="rs-pricing-table-header"> <h3 class="rs-pricing-table-title">Standard Plan</h3> </div> <div class="rs-pricing-table-price display-inline"> <div class="rs-pricing-table-price-tag price-gradient-color"> <span class="rs-pricing-table-currency">₹</span><span class="rs-pricing-table-price-text">2,000</span><span class="rs-pricing-table-period">/yr</span> </div> </div> <div class="short-desc">This plan includes consultation options for all users</div> <div class="rs-pricing-table-body"> <ul class="rs-pricing-table-features-list "> <li class="elementor-repeater-item-06ec6af "> <span class="rs-pricing-table-feature-text">Unlimited Sub Domains</span> </li> <li class="elementor-repeater-item-31d8ce5 "> <span class="rs-pricing-table-feature-text">Unlimited Emails</span> </li> <li class="elementor-repeater-item-6ed05ab "> <span class="rs-pricing-table-feature-text">2 GB Disk Space</span> </li> <li class="elementor-repeater-item-4ad00c2 "> <span class="rs-pricing-table-feature-text">20 GB Transfer</span> </li> <li class="elementor-repeater-item-d7bae57 "> <span class="rs-pricing-table-feature-text">Free SSL Certificate</span> </li> <li class="elementor-repeater-item-1612d84 "> <span class="rs-pricing-table-feature-text">Full Control Panel Access</span> </li> </ul> </div> <div class="btn-part btn-arrow-rotate"> <a class="rs-pricing-table-btn" href="/contact/">More Details <svg xmlns="http://www.w3.org/2000/svg" width="16" height="12" viewBox="0 0 16 12" fill="none"><path d="M15.5303 6.53033C15.8232 6.23744 15.8232 5.76256 15.5303 5.46967L10.7574 0.696698C10.4645 0.403805 9.98959 0.403805 9.6967 0.696698C9.40381 0.989592 9.40381 1.46447 9.6967 1.75736L13.9393 6L9.6967 10.2426C9.40381 10.5355 9.40381 11.0104 9.6967 11.3033C9.98959 11.5962 10.4645 11.5962 10.7574 11.3033L15.5303 6.53033ZM6.55671e-08 6.75L15 6.75L15 5.25L-6.55671e-08 5.25L6.55671e-08 6.75Z" fill="url(#paint0_linear_38_1452)"></path><defs><linearGradient id="paint0_linear_38_1452" x1="0" y1="6" x2="2.02894" y2="11.6544" gradientUnits="userSpaceOnUse"><stop stop-color="#0B57CA"></stop><stop offset="1" stop-color="#E84037"></stop></linearGradient></defs></svg> </a> </div> </div> </div> </div> <div class="elementor-element elementor-element-ce99867 elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-rsprice" data-id="ce99867" data-element_type="widget" data-widget_type="rsprice.default"> <div class="elementor-widget-container"> <div class="rs-price-table style-1 color_primary_scheme"> <span class="rs-pricing-table-badge">Popular</span> <div class="rs-pricing-table-header"> <h3 class="rs-pricing-table-title">Business Plan</h3> </div> <div class="rs-pricing-table-price display-inline"> <div class="rs-pricing-table-price-tag price-gradient-color"> <span class="rs-pricing-table-currency">₹</span><span class="rs-pricing-table-price-text">4,000</span><span class="rs-pricing-table-period">/yr</span> </div> </div> <div class="short-desc">This plan includes consultation options for all users</div> <div class="rs-pricing-table-body"> <ul class="rs-pricing-table-features-list "> <li class="elementor-repeater-item-06ec6af "> <span class="rs-pricing-table-feature-text">Unlimited Sub Domains</span> </li> <li class="elementor-repeater-item-31d8ce5 "> <span class="rs-pricing-table-feature-text">Unlimited Emails</span> </li> <li class="elementor-repeater-item-6ed05ab "> <span class="rs-pricing-table-feature-text">5 GB Disk Space</span> </li> <li class="elementor-repeater-item-4ad00c2 "> <span class="rs-pricing-table-feature-text">50 GB Transfer</span> </li> <li class="elementor-repeater-item-d7bae57 "> <span class="rs-pricing-table-feature-text">Free SSL Certificate</span> </li> <li class="elementor-repeater-item-4cdaebd "> <span class="rs-pricing-table-feature-text">Full Control Panel Access</span> </li> </ul> </div> <div class="btn-part btn-arrow-rotate"> <a class="rs-pricing-table-btn" href="/contact/">More Details <svg xmlns="http://www.w3.org/2000/svg" width="16" height="12" viewBox="0 0 16 12" fill="none"><path d="M15.5303 6.53033C15.8232 6.23744 15.8232 5.76256 15.5303 5.46967L10.7574 0.696698C10.4645 0.403805 9.98959 0.403805 9.6967 0.696698C9.40381 0.989592 9.40381 1.46447 9.6967 1.75736L13.9393 6L9.6967 10.2426C9.40381 10.5355 9.40381 11.0104 9.6967 11.3033C9.98959 11.5962 10.4645 11.5962 10.7574 11.3033L15.5303 6.53033ZM6.55671e-08 6.75L15 6.75L15 5.25L-6.55671e-08 5.25L6.55671e-08 6.75Z" fill="url(#paint0_linear_38_1452)"></path><defs><linearGradient id="paint0_linear_38_1452" x1="0" y1="6" x2="2.02894" y2="11.6544" gradientUnits="userSpaceOnUse"><stop stop-color="#0B57CA"></stop><stop offset="1" stop-color="#E84037"></stop></linearGradient></defs></svg> </a> </div> </div> </div> </div> <div class="elementor-element elementor-element-f7e0c6c elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-rsprice" data-id="f7e0c6c" data-element_type="widget" data-widget_type="rsprice.default"> <div class="elementor-widget-container"> <div class="rs-price-table style-1 color_primary_scheme"> <div class="rs-pricing-table-header"> <h3 class="rs-pricing-table-title">Unlimited Plan</h3> </div> <div class="rs-pricing-table-price display-inline"> <div class="rs-pricing-table-price-tag price-gradient-color"> <span class="rs-pricing-table-currency">₹</span><span class="rs-pricing-table-price-text">10,000</span><span class="rs-pricing-table-period">/yr</span> </div> </div> <div class="short-desc">This plan includes consultation options for all users</div> <div class="rs-pricing-table-body"> <ul class="rs-pricing-table-features-list "> <li class="elementor-repeater-item-06ec6af "> <span class="rs-pricing-table-feature-text">Unlimited Sub Domains</span> </li> <li class="elementor-repeater-item-31d8ce5 "> <span class="rs-pricing-table-feature-text">Unlimited Emails</span> </li> <li class="elementor-repeater-item-6ed05ab "> <span class="rs-pricing-table-feature-text">Unlimited Storage</span> </li> <li class="elementor-repeater-item-4ad00c2 "> <span class="rs-pricing-table-feature-text">Unlimited Transfer</span> </li> <li class="elementor-repeater-item-d7bae57 "> <span class="rs-pricing-table-feature-text">Free SSL Certificate</span> </li> <li class="elementor-repeater-item-153f8e9 "> <span class="rs-pricing-table-feature-text">Full Control Panel Access</span> </li> </ul> </div> <div class="btn-part btn-arrow-rotate"> <a class="rs-pricing-table-btn" href="/contact/">More Details <svg xmlns="http://www.w3.org/2000/svg" width="16" height="12" viewBox="0 0 16 12" fill="none"><path d="M15.5303 6.53033C15.8232 6.23744 15.8232 5.76256 15.5303 5.46967L10.7574 0.696698C10.4645 0.403805 9.98959 0.403805 9.6967 0.696698C9.40381 0.989592 9.40381 1.46447 9.6967 1.75736L13.9393 6L9.6967 10.2426C9.40381 10.5355 9.40381 11.0104 9.6967 11.3033C9.98959 11.5962 10.4645 11.5962 10.7574 11.3033L15.5303 6.53033ZM6.55671e-08 6.75L15 6.75L15 5.25L-6.55671e-08 5.25L6.55671e-08 6.75Z" fill="url(#paint0_linear_38_1452)"></path><defs><linearGradient id="paint0_linear_38_1452" x1="0" y1="6" x2="2.02894" y2="11.6544" gradientUnits="userSpaceOnUse"><stop stop-color="#0B57CA"></stop><stop offset="1" stop-color="#E84037"></stop></linearGradient></defs></svg> </a> </div> </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>Web Hosting Provider since 2014 </span> <h4 class="title rs-split-text-disable ">Why choose us for Linux Hosting?</h4> </div> <div class="description"> <p>Flozen Media Technologies offers wide range of Linux and Windows Shared Hosting Solutions. You will be provided with full control panels so that you can manage your hosting account yourself. All our hosting plans are with Unlimited Databases, Email Accounts, FTP Accounts, etc. We have a Corporate Server which is best suited for Corporate Customers for their Email Solutions in which they can create unlimited Email Accounts, have higher per hour Email Sending limits and whitelisting of their ip address to avoid spams. Higher plans have the ability to customise their webmail and include their brand, logo, etc on webmails, control panels, etc. We also provide 24x7x365 phone 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-p12669-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/linux-shared-hosting/#wpcf7-f12166-p12669-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-p12669-o1" /> <input type="hidden" name="_wpcf7_container_post" value="12669" /> <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-48032"> <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-44719"> <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 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 current-menu-item 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":"d415d53adc","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":"61698def8f"},"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":12669,"title":"Linux%20Shared%20Hosting%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>