/** * @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 Microsoft 365, Google Workspace, Website Design, Web Hosting, Logo & Branding, SEO and Email Packages across Kerala, India and the Middle East." /> <link rel="canonical" href="https://www.flozen.media/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="website" /> <meta property="og:title" content="Home - 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 Microsoft 365, Google Workspace, Website Design, Web Hosting, Logo & Branding, SEO and Email Packages across Kerala, India and the Middle East." /> <meta property="og:url" content="https://www.flozen.media/" /> <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-12-16T12:34:31+00:00" /> <meta property="og:image" content="https://www.flozen.media/wp-content/uploads/2024/06/1337934.jpg" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:site" content="@flozenmedia" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://www.flozen.media/","url":"https://www.flozen.media/","name":"Home - 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"},"about":{"@id":"https://www.flozen.media/#organization"},"primaryImageOfPage":{"@id":"https://www.flozen.media/#primaryimage"},"image":{"@id":"https://www.flozen.media/#primaryimage"},"thumbnailUrl":"https://www.flozen.media/wp-content/uploads/2024/06/1337934.jpg","datePublished":"2024-06-02T04:45:51+00:00","dateModified":"2024-12-16T12:34:31+00:00","description":"Flozen Media Technologies offers Microsoft 365, Google Workspace, Website Design, Web Hosting, Logo & Branding, SEO and Email Packages across Kerala, India and the Middle East.","breadcrumb":{"@id":"https://www.flozen.media/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.flozen.media/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.flozen.media/#primaryimage","url":"https://www.flozen.media/wp-content/uploads/2024/06/1337934.jpg","contentUrl":"https://www.flozen.media/wp-content/uploads/2024/06/1337934.jpg","width":1000,"height":500},{"@type":"BreadcrumbList","@id":"https://www.flozen.media/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home"}]},{"@type":"WebSite","@id":"https://www.flozen.media/#website","url":"https://www.flozen.media/","name":"Flozen Media Technologies","description":"","publisher":{"@id":"https://www.flozen.media/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.flozen.media/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://www.flozen.media/#organization","name":"Flozen Media Technologies","url":"https://www.flozen.media/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.flozen.media/#/schema/logo/image/","url":"https://www.flozen.media/wp-content/uploads/2024/06/logo-new.png","contentUrl":"https://www.flozen.media/wp-content/uploads/2024/06/logo-new.png","width":400,"height":103,"caption":"Flozen Media Technologies"},"image":{"@id":"https://www.flozen.media/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/flozenmedia","https://x.com/flozenmedia","https://www.instagram.com/flozenmedia"]}]}</script> <!-- / Yoast SEO plugin. --> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel='stylesheet' id='nta-css-popup-css' href='https://www.flozen.media/wp-content/plugins/wp-whatsapp/assets/dist/css/style.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='contact-form-7-css' href='https://www.flozen.media/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='headding-title-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/assets/css/headding-title.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rsaddons-pro-css-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/assets/css/rsaddons.css?ver=1769119584' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-heading-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/heading/heading.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-team_grid-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/team-member/team-grid-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-team_slider-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/team-member-slider/team-slider-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-portfolio_grid-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/portfolio-grid/portfolio-grid.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-portfolio_filter-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/portfolio-filter/portfolio-filter-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-portfolio_slider-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/portfolio-slider/portfolio-slider.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-counter-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/counter/counter.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-service_grid-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/services/rs-service-grid.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-service_slider-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/service-slider/service-slider-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-service_list-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/service-list/rs-service-list.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-video-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/video/rs-video.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-gsap-marquee-slide-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/gsap-marquee-slide/gsap-marquee-slide.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-button-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/button/button.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-logo_widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/logo-widget/logo-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-line_rain_animation-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/line-rain-animation/line-rain-animation.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-breadcrumb-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/breadcrumb-widget/breadcrumb-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-newsletter-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/newsletter/newsletter.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-post_navigation-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/post-navigation/post-navigation.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-pricing_switcher-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/pricing-switcher/pricing-switcher.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-hotspots_showcase-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/hotspot-widget/hotspot.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-testimonial_slider-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/testimonial/slider/testimonial-slider-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-social-icons-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/social-icons/rs-social-icons.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-header-offcanvas-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/header-offcanvas/header-offcanvas.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-cf7-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/cf7/cf7.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-accordion-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/rs-accordion/rs-accordion.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-advanced-tab-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/advanced-tab/advanced-tab.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-button-rotating-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/button-rotating/button-rotating.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-project-information-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/project-information/project-information.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='marquee-slider-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/marquee-slider-logo/marquee-slider-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-iconbox-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/iconbox/iconbox.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-image-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/image-widget/image-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-progress-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/progress/rs-progress.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-work-process-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/work-process/work-process.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-award-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/rs-award-widget/award-widget.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-brochures-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/brochures/brochures.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='hfe-style-css' href='https://www.flozen.media/wp-content/plugins/rs-header-footer-elementor/assets/css/header-footer-elementor.css?ver=1.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/custom-frontend.min.css?ver=1734352953' type='text/css' media='all' /> <link rel='stylesheet' id='swiper-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5' type='text/css' media='all' /> <link rel='stylesheet' id='e-swiper-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-2918-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-2918.css?ver=1734352953' type='text/css' media='all' /> <link rel='stylesheet' id='widget-image-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-7766-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-7766.css?ver=1734353018' 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-7771-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-7771.css?ver=1766871976' type='text/css' media='all' /> <link rel='stylesheet' id='childstyle-css' href='https://www.flozen.media/wp-content/themes/bandco/style.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Inter%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CSora%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=swap&ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/assets/fonts/flaticon_lifetec2.css?ver=1.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-rselement-icons-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/assets/fonts/flaticon_lifetec2.css?ver=1.0.1' type='text/css' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="https://www.flozen.media/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Organization", "name": "Flozen Media Technologies", "url": "https://flozenmedia.in", "aggregateRating": { "@type": "AggregateRating", "ratingValue": "5.0", "reviewCount": "6800" } } </script><meta name="generator" content="Elementor 3.25.11; features: e_font_icon_svg, additional_custom_breakpoints, e_optimized_control_loading; settings: css_print_method-external, google_font-enabled, font_display-swap"> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <meta name="generator" content="Powered by Slider Revolution 6.7.13 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <link rel="icon" href="https://www.flozen.media/wp-content/uploads/2024/06/cropped-fm-logo-256-32x32.png" sizes="32x32" /> <link rel="icon" href="https://www.flozen.media/wp-content/uploads/2024/06/cropped-fm-logo-256-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://www.flozen.media/wp-content/uploads/2024/06/cropped-fm-logo-256-180x180.png" /> <meta name="msapplication-TileImage" content="https://www.flozen.media/wp-content/uploads/2024/06/cropped-fm-logo-256-270x270.png" /> <script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> <style type="text/css" id="wp-custom-css"> .header-social .rs-social-menu ul li i{ color: #ffffff; line-height: 28px; } </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} /*# sourceURL=global-styles-inline-css */ </style> <link rel='stylesheet' id='widget-icon-list-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/custom-widget-icon-list.min.css?ver=1734352953' type='text/css' media='all' /> <link rel='stylesheet' id='widget-divider-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/css/widget-divider.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='hfe-widgets-style-css' href='https://www.flozen.media/wp-content/plugins/rs-header-footer-elementor/inc/widgets-css/frontend.css?ver=1.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='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-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-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="home wp-singular page-template page-template-elementor_header_footer page page-id-7766 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-7766"> <!--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 current-menu-item page_item page-item-7766 current_page_item 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 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 menu-item-has-children hfe-has-submenu hfe-creative-menu"><div class="hfe-has-submenu-container"><a href="#" class = "hfe-sub-menu-item">Shared Web Hosting<span class='hfe-menu-toggle sub-arrow hfe-menu-child-1'><i class='ri-arrow-down-s-line'></i> </span><em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></div> <ul class="sub-menu"> <li id="menu-item-12688" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/products/linux-shared-hosting/" class = "hfe-sub-menu-item">Linux Shared Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12687" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/products/windows-shared-hosting/" class = "hfe-sub-menu-item">Windows Shared Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> </ul> </li> </ul> </li> <li id="menu-item-11503" class="menu-item menu-item-type-post_type menu-item-object-page parent hfe-creative-menu"><a href="https://www.flozen.media/clients/" class = "hfe-menu-item">Clients<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-20680" class="menu-item menu-item-type-post_type menu-item-object-page 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-56621"> <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 current-menu-item page_item page-item-7766 current_page_item 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 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 menu-item-has-children hfe-has-submenu hfe-creative-menu"><div class="hfe-has-submenu-container"><a href="#" class = "hfe-sub-menu-item">Shared Web Hosting<span class='hfe-menu-toggle sub-arrow hfe-menu-child-1'><i class='ri-arrow-down-s-line'></i> </span><em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></div> <ul class="sub-menu"> <li id="menu-item-12688" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/products/linux-shared-hosting/" class = "hfe-sub-menu-item">Linux Shared Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12687" class="menu-item menu-item-type-custom menu-item-object-custom hfe-creative-menu"><a href="/products/windows-shared-hosting/" class = "hfe-sub-menu-item">Windows Shared Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> </ul> </li> </ul> </li> <li id="menu-item-11503" class="menu-item menu-item-type-post_type menu-item-object-page parent hfe-creative-menu"><a href="https://www.flozen.media/clients/" class = "hfe-menu-item">Clients<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-20680" class="menu-item menu-item-type-post_type menu-item-object-page 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-58363"> <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 data-elementor-type="wp-page" data-elementor-id="7766" class="elementor elementor-7766"> <div class="no-position rs-sticky-default elementor-element elementor-element-938be01 e-con-full e-flex e-con e-parent" data-id="938be01" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="elementor-element elementor-element-32019c5 elementor-widget elementor-widget-slider_revolution" data-id="32019c5" data-element_type="widget" data-widget_type="slider_revolution.default"> <div class="elementor-widget-container"> <div class="wp-block-themepunch-revslider"> <!-- START Slider 1 REVOLUTION SLIDER 6.7.13 --><p class="rs-p-wp-fix"></p> <rs-module-wrap id="rev_slider_1_1_wrapper" data-source="gallery" style="visibility:hidden;background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;"> <rs-module id="rev_slider_1_1" style="" data-version="6.7.13"> <rs-slides style="overflow: hidden; position: absolute;"> <rs-slide style="position: absolute;" data-key="rs-1" data-title="Slide" data-anim="d:20;p:dark;f:oppslidebased;" data-in="o:0;sx:1.1;sy:1.1;m:true;row:6;col:6;" data-out="a:false;"> <img fetchpriority="high" decoding="async" src="//www.flozen.media/wp-content/plugins/revslider/sr6/assets/assets/dummy.png" alt="" title="Blue polygon on dark background social template vector" width="2560" height="1440" class="rev-slidebg tp-rs-img rs-lazyload" data-lazyload="//www.flozen.media/wp-content/uploads/2024/09/16340578_v796-nunny-03b-scaled.jpg" data-bg="p:0% 0%;" data-no-retina> <!-- --><rs-layer id="slider-1-slide-1-layer-0" data-type="text" data-color="rgba(255, 255, 255, 0)" data-rsp_ch="on" data-xy="xo:30px,-195px,-137px,-81px;y:m;yo:-78px,-55px,-49px,-78px;" data-text="w:normal;s:70,42,31,42;l:150,90,68,42;fw:500;" data-tst="c:#ffffff;" data-vbility="t,t,t,f" data-frame_0="x:-50,-30,-22,-13;" data-frame_1="st:800;sp:1000;" data-frame_999="o:0;st:w;sR:8000;" style="z-index:8;font-family:'Inter';text-transform:capitalize;" >DIGITAL INNOVATIONS </rs-layer><!-- --><rs-layer id="slider-1-slide-1-layer-1" data-type="text" data-rsp_ch="on" data-xy="xo:39px,102px,87px,83px;y:m;yo:42px,50px,46px,11px;" data-text="w:normal;s:18,16,16,16;l:32,26,26,26;" data-dim="w:631px,378px,381px,332px;minh:0px,none,none,none;" data-frame_0="x:50,30,22,13;" data-frame_1="st:1200;sp:1000;sR:500;" data-frame_999="o:0;st:w;sR:7500;" style="z-index:7;font-family:'Inter';" >Welcome to Flozen Media Technologies, a premier solution provider in India and the Middle East with a rich history of excellence, offering innovative and modern approach for digital transformation. </rs-layer><!-- --><rs-layer id="slider-1-slide-1-layer-3" data-type="text" data-rsp_ch="on" data-xy="xo:30px,13px,17px,15px;yo:159px,175px,167px,150px;" data-text="w:normal;s:70,85,64,38;l:150,90,68,40;fw:500;" data-tst="c:rgba(0, 0, 0, 0.12);" data-vbility="t,t,t,f" data-frame_0="x:-50,-30,-22,-13;" data-frame_1="x:-2px,-1px,0px,0px;y:-1px,0px,0px,0px;st:400;sp:1000;" data-frame_999="o:0;st:w;sR:8000;" style="z-index:10;font-family:'Inter';" >STEP INTO THE WORLD OF </rs-layer><!-- --><rs-layer id="slider-1-slide-1-layer-4" data-type="object" data-rsp_ch="on" data-xy="xo:50px,30px,22px,13px;yo:250px,150px,113px,69px;" data-text="w:normal;s:20,12,9,5;l:0,15,11,6;" data-frame_999="o:0;st:w;sR:8700;" style="z-index:9;font-family:'Roboto';" > </rs-layer><!-- --><rs-layer id="slider-1-slide-1-layer-5" data-type="text" data-rsp_ch="on" data-xy="xo:72px,72px,69px,64px;yo:115px,138px,129px,112px;" data-text="w:normal;s:18,16,16,16;l:32,26,26,26;fw:500;" data-frame_1="st:100;sp:1000;" data-frame_999="o:0;st:w;" style="z-index:11;font-family:'Inter';text-transform:uppercase;" >FLOZEN MEDIA TECHNO SOLUTIONS LLP </rs-layer><!-- --><rs-layer id="slider-1-slide-1-layer-6" data-type="image" data-rsp_ch="on" data-xy="xo:20px,20px,17px,15px;yo:122px,145px,136px,119px;" data-text="w:normal;s:20,12,9,5;l:0,15,11,6;" data-dim="w:auto,auto,auto,36px;h:auto,auto,auto,10px;" data-frame_1="st:100;sp:1000;" data-frame_999="o:0;st:w;" style="z-index:12;" ><img decoding="async" src="//www.flozen.media/wp-content/plugins/revslider/sr6/assets/assets/dummy.png" alt="" class="tp-rs-img rs-lazyload" width="40" height="11" data-lazyload="//www.flozen.media/wp-content/uploads/2024/06/Line.png" data-no-retina> </rs-layer><!-- --><rs-layer id="slider-1-slide-1-layer-9" data-type="button" data-rsp_ch="on" data-xy="xo:142px,100px,86px,83px;yo:550px,506px,450px,393px;" data-text="w:normal;s:20,16,16,16;l:25,26,26,26;" data-padding="t:18,15,15,15;r:35,25,25,25;b:18,15,15,15;l:35,25,25,25;" data-border="bor:2px,2px,2px,2px;" data-frame_1="st:1600;" data-frame_999="o:0;st:w;" style="z-index:16;background-color:#034903;font-family:'Inter';" ><a class="rs-btn" style="color:white;" href="/services/">View Our Services</a> </rs-layer><!-- --> </rs-slide> </rs-slides> <rs-static-layers><!-- --></rs-static-layers> </rs-module> <script> setREVStartSize({c: 'rev_slider_1_1',rl:[1240,1024,778,480],el:[820,768,660,600],gw:[1700,1024,778,480],gh:[820,768,660,600],type:'standard',justify:'',layout:'fullwidth',mh:"0"});if (window.RS_MODULES!==undefined && window.RS_MODULES.modules!==undefined && window.RS_MODULES.modules["revslider11"]!==undefined) {window.RS_MODULES.modules["revslider11"].once = false;window.revapi1 = undefined;if (window.RS_MODULES.checkMinimal!==undefined) window.RS_MODULES.checkMinimal()} </script> </rs-module-wrap> <!-- END REVOLUTION SLIDER --> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-4b65ab0 e-flex e-con-boxed e-con e-parent" data-id="4b65ab0" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-ec564e8 e-con-full e-flex e-con e-child" data-id="ec564e8" data-element_type="container"> <div class="elementor-element elementor-element-a76fc20 elementor-widget elementor-widget-rs-iconbox" data-id="a76fc20" 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 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve"><defs></defs><g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)"> <path d="M 52.552 37.239 h -4.339 c -0.655 0 -1.188 -0.532 -1.188 -1.187 v -3.366 c 0 -0.654 0.532 -1.187 1.188 -1.187 h 4.339 c 0.654 0 1.187 0.533 1.187 1.187 c 0 0.552 0.447 1 1 1 s 1 -0.448 1 -1 c 0 -1.757 -1.43 -3.187 -3.187 -3.187 h -1.17 V 27.79 c 0 -0.552 -0.447 -1 -1 -1 s -1 0.448 -1 1 v 1.708 h -1.169 c -1.758 0 -3.188 1.43 -3.188 3.187 v 3.366 c 0 1.757 1.43 3.187 3.188 3.187 h 4.339 c 0.654 0 1.187 0.533 1.187 1.187 v 3.366 c 0 0.654 -0.532 1.187 -1.187 1.187 h -4.339 c -0.655 0 -1.188 -0.533 -1.188 -1.187 c 0 -0.552 -0.447 -1 -1 -1 c -0.552 0 -1 0.448 -1 1 c 0 1.757 1.43 3.188 3.188 3.188 h 1.169 v 1.946 c 0 0.553 0.447 1 1 1 s 1 -0.447 1 -1 v -1.946 h 1.17 c 1.757 0 3.187 -1.43 3.187 -3.188 v -3.366 C 55.738 38.668 54.309 37.239 52.552 37.239 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 89.496 59.503 c -3.376 -5.601 -8.701 -8.292 -13.819 -7.215 c -0.979 -3.382 -1.429 -7.265 -1.896 -11.364 c -1.229 -10.788 -2.498 -21.942 -14.165 -24.149 c -3.605 -0.424 -4.716 -1.521 -4.713 -1.873 c 0.003 -0.236 0.721 -0.992 2.988 -1.217 c 4.681 -0.886 5.883 -4.948 6.44 -8.805 c 0.064 -0.445 -0.176 -0.879 -0.588 -1.059 c -7.972 -3.489 -16.052 -3.49 -24.022 -0.011 c -0.422 0.17 -0.683 0.609 -0.616 1.071 c 0.56 3.856 1.763 7.918 6.531 8.817 c 2.179 0.212 2.897 0.968 2.9 1.205 c 0.003 0.352 -1.107 1.449 -4.781 1.883 c -11.598 2.196 -12.869 13.351 -14.097 24.139 c -0.628 5.509 -1.24 10.716 -3.138 14.653 c -1.61 -0.673 -3.31 -1.18 -5.243 -1.004 l -2.223 0.197 v -1.967 c 0 -1.842 -1.499 -3.341 -3.341 -3.341 H 3.342 c -1.842 0 -3.341 1.499 -3.341 3.341 v 32.652 c 0 1.842 1.499 3.341 3.341 3.341 h 12.371 c 1.842 0 3.341 -1.499 3.341 -3.341 v -0.344 l 5.791 -0.514 c 3.195 -0.28 6.412 0.912 9.523 2.068 c 2.822 1.049 5.73 2.13 8.667 2.13 c 0.335 0 0.671 -0.014 1.007 -0.044 c 6.322 -0.553 21.117 -9.822 38.248 -20.557 c 1.968 -1.233 3.957 -2.479 5.953 -3.725 C 89.945 63.41 90.507 61.182 89.496 59.503 z M 31.646 41.151 c 1.199 -10.531 2.332 -20.478 12.413 -22.39 c 4.076 -0.479 6.497 -1.929 6.478 -3.878 c -0.013 -1.315 -1.256 -2.839 -4.616 -3.163 c -3.04 -0.576 -4.12 -2.854 -4.715 -6.366 c 6.981 -2.859 14.049 -2.859 21.03 0 c -0.595 3.512 -1.669 5.79 -4.626 6.354 c -3.449 0.336 -4.692 1.86 -4.705 3.175 c -0.02 1.949 2.402 3.399 6.408 3.868 c 10.15 1.922 11.283 11.869 12.482 22.399 c 0.457 4.018 0.936 8.154 1.973 11.731 c -0.135 0.055 -0.272 0.098 -0.406 0.158 l -15.394 7.156 c -1.676 -2.657 -4.437 -5.581 -9.471 -4.723 l -14.065 2.553 c -2.185 0.188 -4.084 -0.695 -6.089 -1.629 C 30.375 52.133 31.03 46.565 31.646 41.151 z M 17.055 85.457 c 0 0.739 -0.602 1.341 -1.341 1.341 H 3.342 c -0.74 0 -1.341 -0.602 -1.341 -1.341 V 52.805 c 0 -0.739 0.602 -1.341 1.341 -1.341 h 12.371 c 0.74 0 1.341 0.602 1.341 1.341 v 2.145 v 30.342 V 85.457 z M 87.185 62.775 c -1.998 1.246 -3.987 2.493 -5.957 3.727 C 65.02 76.658 49.71 86.251 43.867 86.762 c -2.834 0.253 -5.731 -0.827 -8.802 -1.968 c -2.965 -1.103 -6.019 -2.237 -9.234 -2.237 c -0.385 0 -0.773 0.017 -1.163 0.051 l -5.614 0.498 V 56.779 l 2.4 -0.213 c 2.118 -0.188 3.999 0.688 5.99 1.617 c 2.172 1.013 4.422 2.054 7.248 1.823 l 14.153 -2.564 c 4.226 -0.722 6.341 1.888 7.861 4.537 l 0.456 0.796 l 0.001 0 l 0.859 1.496 c -7.292 4.119 -13.557 6.668 -19.126 7.781 c -0.542 0.108 -0.893 0.635 -0.784 1.177 c 0.095 0.476 0.513 0.804 0.979 0.804 c 0.065 0 0.131 -0.006 0.197 -0.02 c 6.005 -1.201 12.743 -3.982 20.599 -8.503 c 0.478 -0.275 0.643 -0.887 0.368 -1.365 l -1.272 -2.217 l 15.21 -7.071 c 4.782 -2.148 10.246 0.13 13.589 5.677 C 88.234 61.283 87.965 62.288 87.185 62.775 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path></g></svg> </div> <div class="text-area"> <div class="iconbox-title"> <h2 class="title"> Quality Digital Products and services </h2> </div> <p class=""> Premium website development, Graphic, Digital marketing and other business related services available here.</p> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-167a72b e-con-full e-flex e-con e-child" data-id="167a72b" data-element_type="container"> <div class="elementor-element elementor-element-ff40049 elementor-widget elementor-widget-rs-iconbox" data-id="ff40049" 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 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve"><defs></defs><g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)"> <path d="M 43.729 89.656 c -6.955 0 -15.869 -9.654 -24.542 -19.83 c -0.358 -0.42 -0.308 -1.052 0.113 -1.409 c 0.419 -0.36 1.051 -0.31 1.41 0.112 c 9.526 11.176 20.185 22.705 26.09 18.037 c 0.436 -0.344 1.063 -0.27 1.404 0.164 c 0.343 0.434 0.27 1.062 -0.164 1.404 C 46.716 89.181 45.27 89.656 43.729 89.656 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 50.435 90 c -1.113 0 -2.226 -0.428 -3.067 -1.279 l -10.95 -11.085 c -0.388 -0.394 -0.384 -1.026 0.009 -1.415 c 0.393 -0.388 1.025 -0.383 1.414 0.009 l 10.95 11.085 c 0.895 0.906 2.363 0.916 3.27 0.02 c 0.906 -0.895 0.915 -2.362 0.019 -3.27 l -8.96 -9.07 c -0.388 -0.394 -0.384 -1.026 0.009 -1.414 c 0.393 -0.39 1.025 -0.384 1.414 0.008 l 8.96 9.071 c 1.671 1.692 1.654 4.429 -0.036 6.098 C 52.627 89.586 51.53 89.999 50.435 90 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 57.136 87.358 c -1.113 0 -2.226 -0.427 -3.067 -1.279 l -1.989 -2.015 c -0.388 -0.393 -0.384 -1.025 0.01 -1.414 c 0.392 -0.388 1.024 -0.384 1.414 0.01 l 1.988 2.014 c 0.431 0.437 1.01 0.679 1.631 0.683 c 0.614 -0.006 1.202 -0.232 1.639 -0.663 c 0.907 -0.896 0.917 -2.363 0.021 -3.271 l -8.96 -9.07 c -0.389 -0.394 -0.385 -1.026 0.008 -1.414 c 0.394 -0.39 1.026 -0.384 1.414 0.008 l 8.961 9.071 c 1.671 1.692 1.654 4.429 -0.037 6.098 C 59.329 86.944 58.232 87.358 57.136 87.358 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 62.347 83.027 c -0.09 0 -0.181 -0.003 -0.272 -0.008 c -1.171 -0.068 -2.298 -0.568 -3.091 -1.372 c -0.388 -0.393 -0.384 -1.025 0.01 -1.414 c 0.392 -0.388 1.024 -0.385 1.414 0.01 c 0.449 0.455 1.1 0.739 1.784 0.779 c 0.673 0.046 1.276 -0.164 1.687 -0.57 c 0.907 -0.896 0.916 -2.363 0.021 -3.269 c -5.549 -6.826 -11.75 -12.647 -18.498 -17.379 c -1.197 0.652 -2.572 0.932 -4.159 0.844 c -5.18 5.316 -8.47 4.026 -11.251 1.824 c -0.029 -0.023 -0.057 -0.048 -0.083 -0.074 c -1.222 -1.214 -1.388 -3.112 -0.467 -5.346 c 2.068 -5.017 9.218 -11.146 14.616 -11.146 c 7.054 -0.273 15.343 1.155 20.583 3.553 c 0.502 0.229 0.723 0.823 0.493 1.325 c -0.229 0.501 -0.821 0.723 -1.325 0.493 c -4.981 -2.279 -12.906 -3.631 -19.712 -3.372 c -4.511 0.001 -11.023 5.583 -12.806 9.909 c -0.413 1.001 -0.744 2.35 -0.007 3.131 c 1.787 1.414 4.022 3.105 8.835 -2.014 c 0.212 -0.227 0.516 -0.339 0.827 -0.311 c 1.594 0.157 2.88 -0.115 3.925 -0.833 c 0.341 -0.235 0.792 -0.236 1.133 0.001 c 7.113 4.905 13.634 10.982 19.383 18.063 c 1.606 1.618 1.59 4.353 -0.102 6.024 C 64.536 82.614 63.478 83.027 62.347 83.027 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 36.91 50.768 H 25.96 c -0.552 0 -1 -0.447 -1 -1 s 0.448 -1 1 -1 h 10.95 c 0.552 0 1 0.447 1 1 S 37.463 50.768 36.91 50.768 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 63.1 75.662 c -0.338 0 -0.667 -0.171 -0.855 -0.48 c -0.287 -0.472 -0.138 -1.087 0.335 -1.374 l 7.279 -4.431 c 0.474 -0.287 1.088 -0.136 1.374 0.335 c 0.287 0.472 0.138 1.087 -0.335 1.374 l -7.279 4.431 C 63.456 75.615 63.277 75.662 63.1 75.662 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 19.123 72.841 H 8.994 c -0.552 0 -1 -0.447 -1 -1 V 43.738 c 0 -0.274 0.112 -0.536 0.311 -0.725 c 0.199 -0.188 0.467 -0.29 0.739 -0.274 c 5.314 0.263 11.083 1.146 18.157 2.778 c 0.271 0.063 0.503 0.235 0.642 0.476 c 0.139 0.241 0.171 0.529 0.088 0.794 l -7.852 25.349 C 19.949 72.556 19.562 72.841 19.123 72.841 z M 9.994 70.841 h 8.392 L 25.7 47.227 c -6.022 -1.35 -11.067 -2.131 -15.706 -2.431 V 70.841 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 81.007 72.841 H 70.876 c -0.438 0 -0.825 -0.285 -0.955 -0.704 L 62.07 46.788 c -0.082 -0.266 -0.051 -0.554 0.088 -0.794 c 0.139 -0.241 0.371 -0.414 0.643 -0.476 c 7.073 -1.632 12.843 -2.515 18.157 -2.778 c 0.272 -0.014 0.541 0.085 0.739 0.274 c 0.198 0.189 0.311 0.451 0.311 0.725 v 28.103 C 82.007 72.394 81.559 72.841 81.007 72.841 z M 71.613 70.841 h 8.393 V 44.796 c -4.639 0.3 -9.685 1.081 -15.707 2.431 L 71.613 70.841 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 12.278 11.5 c -1.719 0 -3.117 -1.398 -3.117 -3.117 c 0 -1.718 1.398 -3.117 3.117 -3.117 c 1.718 0 3.117 1.398 3.117 3.117 C 15.395 10.102 13.997 11.5 12.278 11.5 z M 12.278 5.781 c -1.435 0 -2.603 1.167 -2.603 2.602 s 1.168 2.603 2.603 2.603 s 2.603 -1.168 2.603 -2.603 S 13.714 5.781 12.278 5.781 z M 4.732 10.812 c -0.101 0 -0.197 -0.06 -0.238 -0.159 C 4.222 9.995 4.536 9.237 5.194 8.964 C 5.544 8.819 5.582 8.51 5.582 8.383 c 0 -0.127 -0.037 -0.436 -0.388 -0.581 c -0.319 -0.132 -0.567 -0.381 -0.7 -0.7 c -0.132 -0.319 -0.132 -0.67 0 -0.99 l 0.675 -1.629 c 0.273 -0.658 1.031 -0.972 1.689 -0.699 c 0.35 0.145 0.596 -0.047 0.685 -0.136 c 0.09 -0.09 0.282 -0.335 0.137 -0.686 c -0.132 -0.319 -0.132 -0.671 0 -0.989 c 0.132 -0.319 0.381 -0.568 0.7 -0.7 L 10.008 0.6 c 0.659 -0.272 1.416 0.041 1.689 0.7 c 0.145 0.35 0.455 0.388 0.581 0.388 c 0.126 0 0.436 -0.038 0.581 -0.388 c 0.132 -0.319 0.38 -0.568 0.7 -0.7 c 0.318 -0.132 0.67 -0.133 0.99 0 l 1.628 0.674 c 0.319 0.132 0.568 0.381 0.7 0.7 c 0.132 0.319 0.132 0.671 0 0.99 c -0.145 0.35 0.047 0.596 0.136 0.685 c 0.089 0.089 0.334 0.282 0.685 0.136 c 0.319 -0.132 0.671 -0.132 0.99 0 c 0.32 0.132 0.568 0.381 0.7 0.7 l 0.675 1.628 c 0.132 0.319 0.132 0.671 0 0.99 c -0.132 0.319 -0.381 0.568 -0.7 0.7 c -0.35 0.145 -0.388 0.455 -0.388 0.581 c 0 0.126 0.038 0.436 0.389 0.581 c 0.658 0.273 0.972 1.031 0.699 1.689 c -0.055 0.131 -0.206 0.193 -0.336 0.139 c -0.131 -0.054 -0.194 -0.205 -0.139 -0.336 c 0.164 -0.396 -0.024 -0.853 -0.421 -1.017 c -0.655 -0.271 -0.706 -0.877 -0.706 -1.056 c 0 -0.369 0.185 -0.841 0.705 -1.056 c 0.192 -0.079 0.342 -0.229 0.421 -0.421 c 0.08 -0.192 0.08 -0.404 0 -0.596 l -0.675 -1.628 c -0.08 -0.192 -0.229 -0.342 -0.421 -0.421 c -0.192 -0.08 -0.404 -0.08 -0.596 0 c -0.655 0.272 -1.119 -0.121 -1.246 -0.248 c -0.261 -0.261 -0.463 -0.725 -0.248 -1.246 c 0.08 -0.192 0.08 -0.404 0 -0.596 c -0.08 -0.192 -0.229 -0.342 -0.421 -0.421 l -1.628 -0.674 c -0.192 -0.08 -0.404 -0.08 -0.596 0 c -0.192 0.08 -0.342 0.229 -0.421 0.421 c -0.271 0.655 -0.877 0.706 -1.056 0.706 c -0.369 0 -0.84 -0.185 -1.056 -0.705 c -0.165 -0.397 -0.621 -0.586 -1.018 -0.422 L 8.576 1.749 c -0.192 0.08 -0.342 0.229 -0.421 0.421 c -0.08 0.192 -0.08 0.404 0 0.596 c 0.216 0.52 0.013 0.985 -0.248 1.246 C 7.647 4.274 7.183 4.476 6.662 4.26 C 6.266 4.096 5.809 4.285 5.644 4.681 L 4.969 6.31 c -0.08 0.192 -0.08 0.404 0 0.596 c 0.08 0.192 0.229 0.342 0.422 0.421 c 0.521 0.216 0.706 0.687 0.705 1.056 c 0 0.179 -0.051 0.784 -0.705 1.055 c -0.397 0.165 -0.586 0.621 -0.422 1.017 c 0.054 0.131 -0.008 0.282 -0.139 0.336 C 4.798 10.806 4.765 10.812 4.732 10.812 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(3.89 0 0 3.89 -1.9444444444444287 -1.9444444444444287) " stroke-linecap="round"></path></g></svg> </div> <div class="text-area"> <div class="iconbox-title"> <h2 class="title"> Global service </h2> </div> <p class=""> Our service is accessible worldwide, and our customer support continues to offer comprehensive consulting and solutions to clients</p> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-e8b3940 e-con-full elementor-hidden-tablet e-flex e-con e-child" data-id="e8b3940" data-element_type="container"> <div class="elementor-element elementor-element-65d184e elementor-widget elementor-widget-rs-iconbox" data-id="65d184e" 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 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve"><defs></defs><g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)"> <path d="M 50.376 57.847 c -0.437 -0.336 -1.064 -0.258 -1.403 0.179 c -0.338 0.437 -0.258 1.064 0.179 1.403 c 6.02 4.662 11.635 10.181 16.752 16.475 c 0.495 0.501 0.766 1.168 0.761 1.879 c -0.005 0.711 -0.283 1.375 -0.784 1.87 c -0.475 0.47 -1.164 0.703 -1.937 0.657 c -0.778 -0.045 -1.52 -0.369 -2.032 -0.89 c -0.015 -0.015 -0.034 -0.02 -0.05 -0.033 c -0.061 -0.07 -0.109 -0.149 -0.175 -0.216 l -9.877 -9.998 c -0.388 -0.392 -1.02 -0.397 -1.414 -0.008 c -0.393 0.388 -0.396 1.021 -0.008 1.414 l 9.876 9.998 c 0.495 0.501 0.766 1.168 0.761 1.879 s -0.283 1.375 -0.784 1.87 c -0.496 0.49 -1.157 0.761 -1.862 0.761 c -0.005 0 -0.011 0 -0.017 0 c -0.711 -0.005 -1.374 -0.283 -1.869 -0.784 l -2.192 -2.219 l -9.876 -9.998 c -0.389 -0.392 -1.022 -0.397 -1.414 -0.008 c -0.393 0.388 -0.397 1.02 -0.009 1.414 l 9.876 9.998 c 0.495 0.501 0.766 1.168 0.762 1.879 c -0.005 0.711 -0.283 1.375 -0.784 1.869 c -0.5 0.495 -1.171 0.77 -1.879 0.761 c -0.711 -0.005 -1.375 -0.283 -1.87 -0.784 L 37.037 74.999 c -0.388 -0.393 -1.021 -0.397 -1.414 -0.008 c -0.393 0.388 -0.397 1.02 -0.009 1.414 l 10.468 10.597 c -6.645 3.349 -17.633 -8.44 -27.575 -20.081 l 6.245 -20.16 h 4.306 c 0.552 0 1 -0.448 1 -1 c 0 -0.552 -0.448 -1 -1 -1 h -3.686 l 0.717 -2.316 c 0.083 -0.266 0.05 -0.553 -0.088 -0.794 c -0.138 -0.241 -0.371 -0.414 -0.642 -0.476 c -7.788 -1.797 -14.141 -2.769 -19.994 -3.059 c -0.272 -0.016 -0.54 0.085 -0.739 0.274 c -0.198 0.189 -0.311 0.451 -0.311 0.725 v 30.974 c 0 0.553 0.448 1 1 1 h 11.164 c 0.438 0 0.826 -0.285 0.955 -0.704 l 0.373 -1.205 c 9.166 10.674 18.481 20.442 25.788 20.442 c 1.396 0 2.717 -0.363 3.951 -1.137 l 0.136 0.137 c 0.871 0.881 2.035 1.37 3.28 1.378 c 0.011 0 0.021 0 0.03 0 c 1.234 0 2.394 -0.475 3.268 -1.337 c 0.704 -0.696 1.144 -1.582 1.301 -2.544 c 0.798 0.612 1.76 0.962 2.788 0.968 c 0.01 0.001 0.02 0.001 0.029 0.001 c 1.234 0 2.394 -0.475 3.268 -1.338 c 0.881 -0.871 1.37 -2.035 1.378 -3.28 c 0.001 -0.097 -0.021 -0.19 -0.026 -0.287 c 0.272 0.061 0.548 0.108 0.829 0.125 c 0.099 0.006 0.196 0.009 0.295 0.009 c 1.218 0 2.359 -0.444 3.165 -1.24 c 0.881 -0.871 1.37 -2.035 1.378 -3.28 s -0.467 -2.416 -1.272 -3.226 C 62.242 68.231 56.517 62.604 50.376 57.847 z M 6.315 69.089 V 40.173 c 5.178 0.327 10.808 1.198 17.544 2.712 l -8.117 26.204 H 6.315 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 85.375 38.39 c -0.198 -0.188 -0.466 -0.288 -0.739 -0.274 c -5.852 0.29 -12.206 1.262 -19.993 3.059 c -0.271 0.063 -0.504 0.235 -0.643 0.476 c -0.139 0.241 -0.17 0.529 -0.088 0.794 l 0.696 2.248 c -5.738 -2.135 -13.727 -3.354 -20.646 -3.089 c -3.845 0 -8.517 2.707 -12.499 7.242 c -3.727 4.245 -5.776 8.926 -5.347 12.216 c 0.034 0.259 0.167 0.493 0.371 0.655 c 1.411 1.117 2.902 1.678 4.488 1.678 c 2.659 0 5.581 -1.578 8.825 -4.748 c 2.272 -0.01 5.034 -1.482 6.248 -2.316 c 0.455 -0.312 0.57 -0.935 0.258 -1.391 c -0.312 -0.455 -0.935 -0.571 -1.39 -0.258 c -1.557 1.068 -4.003 2.093 -5.412 1.952 c -0.298 -0.027 -0.594 0.076 -0.806 0.289 c -5.566 5.582 -8.614 4.919 -10.633 3.478 c -0.128 -2.696 1.754 -6.651 4.901 -10.236 c 3.554 -4.047 7.767 -6.561 11.035 -6.562 c 7.334 -0.278 15.849 1.142 21.37 3.553 l 6.414 20.71 l -3.346 2.036 c -0.472 0.287 -0.621 0.902 -0.334 1.375 c 0.188 0.309 0.518 0.479 0.855 0.479 c 0.177 0 0.356 -0.047 0.519 -0.146 l 2.916 -1.775 l 0.17 0.548 c 0.13 0.419 0.517 0.704 0.955 0.704 h 11.165 c 0.553 0 1 -0.447 1 -1 V 39.115 C 85.685 38.841 85.573 38.579 85.375 38.39 z M 83.685 69.089 h -9.428 l -8.116 -26.204 c 6.736 -1.515 12.365 -2.385 17.544 -2.712 V 69.089 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 33.526 39.625 c -0.264 0 -0.527 -0.104 -0.724 -0.31 c -3.721 -3.9 -5.687 -8.6 -5.687 -13.592 V 9.358 c 0 -1.385 0.986 -2.57 2.345 -2.817 c 5.324 -0.968 9.966 -2.968 13.797 -5.944 c 1.026 -0.797 2.461 -0.797 3.486 0 c 3.831 2.975 8.474 4.975 13.797 5.943 c 1.359 0.247 2.346 1.432 2.346 2.817 v 16.365 c 0 4.702 -1.766 9.183 -5.105 12.957 c -0.365 0.416 -0.998 0.452 -1.412 0.086 c -0.413 -0.366 -0.452 -0.998 -0.086 -1.412 c 3.012 -3.404 4.603 -7.426 4.603 -11.632 V 9.358 c 0 -0.418 -0.296 -0.775 -0.703 -0.849 c -5.643 -1.027 -10.578 -3.157 -14.666 -6.331 c -0.305 -0.237 -0.729 -0.237 -1.033 0 c -4.088 3.175 -9.023 5.306 -14.666 6.332 c -0.408 0.074 -0.703 0.431 -0.703 0.849 v 16.365 c 0 4.467 1.775 8.69 5.135 12.211 c 0.381 0.4 0.366 1.033 -0.033 1.414 C 34.022 39.533 33.774 39.625 33.526 39.625 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 42.652 30.095 c -0.306 0 -0.596 -0.141 -0.785 -0.381 l -4.696 -5.957 c -0.342 -0.434 -0.268 -1.062 0.166 -1.404 c 0.435 -0.341 1.062 -0.268 1.404 0.166 l 3.911 4.961 l 8.606 -10.919 c 0.342 -0.433 0.971 -0.508 1.404 -0.166 c 0.434 0.342 0.508 0.97 0.166 1.404 l -9.391 11.915 C 43.248 29.955 42.959 30.095 42.652 30.095 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path></g></svg> </div> <div class="text-area"> <div class="iconbox-title"> <h2 class="title"> Assured and Quality Support </h2> </div> <p class=""> We are focused on the digital growth of our each customer and service team and are ready for quick support and regular assistance</p> </div> </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-3d8203c8 e-con-full e-flex e-con e-parent" data-id="3d8203c8" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="no-position rs-sticky-default elementor-element elementor-element-321dbe41 e-flex e-con-boxed e-con e-child" data-id="321dbe41" data-element_type="container"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-498ac971 e-con-full e-flex e-con e-child" data-id="498ac971" data-element_type="container"> <div class="elementor-element elementor-element-30a676cb elementor-widget__width-inherit elementor-widget-laptop__width-inherit elementor-widget elementor-widget-image" data-id="30a676cb" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img decoding="async" width="1000" height="500" src="https://www.flozen.media/wp-content/uploads/2024/06/1337934.jpg" class="attachment-full size-full wp-image-11888" alt="" srcset="https://www.flozen.media/wp-content/uploads/2024/06/1337934.jpg 1000w, https://www.flozen.media/wp-content/uploads/2024/06/1337934-300x150.jpg 300w, https://www.flozen.media/wp-content/uploads/2024/06/1337934-768x384.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" /> </div> </div> <div class="elementor-element elementor-element-75dba57 elementor-widget__width-initial elementor-widget elementor-widget-rs-tab-advanced" data-id="75dba57" data-element_type="widget" data-widget_type="rs-tab-advanced.default"> <div class="elementor-widget-container"> <div class="rstab-main horizontal tab_75dba57 auto_switch_no full_tab_item style2"> <nav class="tab-menu-wrapper"> <div class="nav nav-tabs all-menu-after-border" id="nav-tab-75dba57" role="tablist"> <button class="nav-link active count_number_no" id="nav-home-1-1336263" data-bs-toggle="tab" data-bs-target="#tab1-1336263" type="button" role="tab" aria-controls="nav-home-1-1336263" aria-selected="true"> Our Mission </button> <button class="nav-link count_number_no" id="nav-home-2-1336263" data-bs-toggle="tab" data-bs-target="#tab2-1336263" type="button" role="tab" aria-controls="nav-home-2-1336263" aria-selected="true"> Our Vision </button> <button class="nav-link count_number_no" id="nav-home-3-1336263" data-bs-toggle="tab" data-bs-target="#tab3-1336263" type="button" role="tab" aria-controls="nav-home-3-1336263" aria-selected="true"> Insights </button> </div> </nav> <div class="tab-content" id="nav-tabContent-75dba57"> <div class="tab-pane fade show active" id="tab1-1336263" role="tabpanel" aria-labelledby="nav-home-1-1336263"> <div class="content--teb-area full-sec"> <div class="content--left-area"> <div class="desc_btn_wrapper"> <p>Our mission is to deliver optimal solutions effectively with top quality and best services at affordable prices. Empowering Enterprises, Mid Size And Small Business To Deliver High-Performance With Smart And Innovative IT Solutions. We strive to be a partner of choice in our focused area of expertise by providing innovative, faster, reliable and profitable solutions.</p> </div> </div> </div> </div> <div class="tab-pane fade " id="tab2-1336263" role="tabpanel" aria-labelledby="nav-home-2-1336263"> <div class="content--teb-area full-sec"> <div class="content--left-area"> <div class="desc_btn_wrapper"> <p>Help to Transform Technology for our Customers, Empower every organization to adopt modern digital technologies to enhance their productivity and sustainability. Make our customers work life simpler, and to be their preferred Technology consultant by providing world’s best cost effective technology solutions and healthier ROI on their Investment.</p> </div> </div> </div> </div> <div class="tab-pane fade " id="tab3-1336263" role="tabpanel" aria-labelledby="nav-home-3-1336263"> <div class="content--teb-area full-sec"> <div class="content--left-area"> <div class="desc_btn_wrapper"> <p>Flozen Media Technologies located in Kochi Kerala, offers Microsoft 365, Google Workspace, Website Design, Web Hosting, Logo & Branding, SEO and Email Packages across India and the Middle East.</p> </div> </div> </div> </div> </div> </div> <div class="accordion tab-menu-wrapper accordion-menu-wrapper rs_horizontal" id="accordionExample-75dba57"> <div class="accordion-item nav-tabs"> <div class="accordion-headerd" id="heading_1-1336263"> <button class="nav-link accordion-button collapsed show" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_1-1336263" aria-expanded="true" aria-controls="collapse_1-1336263"> Our Mission </button> </div> <div id="collapse_1-1336263" class="accordion-collapse collapse show" aria-labelledby="heading_1-1336263" data-bs-parent="#accordionExample-75dba57"> <div class="tab-pane"> <div class="content--teb-area full-sec"> <div class="content--left-area"> <div class="desc_btn_wrapper"> <p>Our mission is to deliver optimal solutions effectively with top quality and best services at affordable prices. Empowering Enterprises, Mid Size And Small Business To Deliver High-Performance With Smart And Innovative IT Solutions. We strive to be a partner of choice in our focused area of expertise by providing innovative, faster, reliable and profitable solutions.</p> </div> </div> </div> </div> </div> </div> <div class="accordion-item nav-tabs"> <div class="accordion-headerd" id="heading_2-1336263"> <button class="nav-link accordion-button collapsed " type="button" data-bs-toggle="collapse" data-bs-target="#collapse_2-1336263" aria-expanded="true" aria-controls="collapse_2-1336263"> Our Vision </button> </div> <div id="collapse_2-1336263" class="accordion-collapse collapse " aria-labelledby="heading_2-1336263" data-bs-parent="#accordionExample-75dba57"> <div class="tab-pane"> <div class="content--teb-area full-sec"> <div class="content--left-area"> <div class="desc_btn_wrapper"> <p>Help to Transform Technology for our Customers, Empower every organization to adopt modern digital technologies to enhance their productivity and sustainability. Make our customers work life simpler, and to be their preferred Technology consultant by providing world’s best cost effective technology solutions and healthier ROI on their Investment.</p> </div> </div> </div> </div> </div> </div> <div class="accordion-item nav-tabs"> <div class="accordion-headerd" id="heading_3-1336263"> <button class="nav-link accordion-button collapsed " type="button" data-bs-toggle="collapse" data-bs-target="#collapse_3-1336263" aria-expanded="true" aria-controls="collapse_3-1336263"> Insights </button> </div> <div id="collapse_3-1336263" class="accordion-collapse collapse " aria-labelledby="heading_3-1336263" data-bs-parent="#accordionExample-75dba57"> <div class="tab-pane"> <div class="content--teb-area full-sec"> <div class="content--left-area"> <div class="desc_btn_wrapper"> <p>Flozen Media Technologies located in Kochi Kerala, offers Microsoft 365, Google Workspace, Website Design, Web Hosting, Logo & Branding, SEO and Email Packages across India and the Middle East.</p> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-4b595b74 elementor-widget elementor-widget-rs-button" data-id="4b595b74" data-element_type="widget" data-widget_type="rs-button.default"> <div class="elementor-widget-container"> <div class="rs-button style1 unique-44670"> <a class="rs-btn" href="/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-36d7a637 e-con-full e-flex e-con e-child" data-id="36d7a637" data-element_type="container"> <div class="elementor-element elementor-element-17abe6d1 elementor-widget__width-initial elementor-widget elementor-widget-rs-heading" data-id="17abe6d1" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 left subtitle-gradient-no"> <div class="title-inner"> <span class="sub-text"> Welcome to Flozen Media Technologies </span> <h2 class="title rs-split-text-disable ">A Digital Agency that delivers guaranteed business growth</h2> </div> </div> </div> </div> <div class="elementor-element elementor-element-8e1e848 elementor-widget elementor-widget-rs-image" data-id="8e1e848" data-element_type="widget" data-widget_type="rs-image.default"> <div class="elementor-widget-container"> <div class="rs-image no ruler_image_no ruler_position_ "> <img decoding="async" class="rs-multi-image reverse- blend_unset" src="https://www.flozen.media/wp-content/uploads/2024/06/2150970179.jpg" alt="image"/> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-3feb2c37 e-con-full e-flex e-con e-child" data-id="3feb2c37" data-element_type="container" data-settings="{"background_background":"classic","position":"absolute"}"> <div class="no-position rs-sticky-default elementor-element elementor-element-56ba9844 e-flex e-con-boxed e-con e-child" data-id="56ba9844" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-43601eb0 elementor-widget elementor-widget-rs-counter" data-id="43601eb0" data-element_type="widget" data-widget_type="rs-counter.default"> <div class="elementor-widget-container"> <div class="counter-top-area"> <div class="rs-counter-list"> <div class="count-text"> <div class="count-number"> <span class="rs-counter odometer" data-count="13">00</span> <span class="prefix"> + </span> </div> </div> </div> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-196b63dc elementor-widget elementor-widget-rs-heading" data-id="196b63dc" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 left subtitle-gradient-no"> <div class="title-inner"> <div class="title rs-split-text-disable ">Years of Experience</div> </div> </div> </div> </div> <div class="elementor-element elementor-element-55aef731 elementor-widget elementor-widget-rs-counter" data-id="55aef731" data-element_type="widget" data-widget_type="rs-counter.default"> <div class="elementor-widget-container"> <div class="counter-top-area"> <div class="rs-counter-list"> <div class="count-text"> <div class="count-number"> <span class="rs-counter odometer" data-count="5">0</span> <span class="prefix"> k+ </span> </div> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-a07c1ad elementor-widget elementor-widget-rs-heading" data-id="a07c1ad" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 left subtitle-gradient-no"> <div class="title-inner"> <div class="title rs-split-text-disable ">Successful Projects</div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-15e05666 e-flex e-con-boxed e-con e-parent" data-id="15e05666" 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-e8f6183 e-flex e-con-boxed e-con e-child" data-id="e8f6183" data-element_type="container"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-11f5ea61 e-con-full e-flex e-con e-child" data-id="11f5ea61" data-element_type="container"> <div class="elementor-element elementor-element-4c62d1ee elementor-widget elementor-widget-rs-heading" data-id="4c62d1ee" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 left subtitle-gradient-no"> <div class="title-inner"> <span class="sub-text"> Our Services </span> <h2 class="title rs-split-text-disable ">We Provide Our Services All Over The World</h2> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-413954e elementor-widget__width-auto elementor-widget-tablet__width-inherit elementor-widget elementor-widget-rs-button" data-id="413954e" data-element_type="widget" data-widget_type="rs-button.default"> <div class="elementor-widget-container"> <div class="rs-button style1 unique-41236"> <a class="rs-btn" href="/services/" > <span>View All Solutions <em> <svg xmlns="http://www.w3.org/2000/svg" width="23" height="15" viewBox="0 0 23 15" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 7.5C0 7.03976 0.367766 6.66667 0.821429 6.66667L20.1955 6.66667L15.0263 1.42259C14.7055 1.09715 14.7055 0.569515 15.0263 0.244079C15.3471 -0.0813589 15.8672 -0.0813589 16.188 0.244079L22.7594 6.91074C23.0802 7.23618 23.0802 7.76382 22.7594 8.08926L16.188 14.7559C15.8672 15.0814 15.3471 15.0814 15.0263 14.7559C14.7055 14.4305 14.7055 13.9028 15.0263 13.5774L20.1955 8.33333H0.821429C0.367766 8.33333 0 7.96024 0 7.5Z" fill="#F7C600"></path></svg> <svg xmlns="http://www.w3.org/2000/svg" width="23" height="15" viewBox="0 0 23 15" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 7.5C0 7.03976 0.367766 6.66667 0.821429 6.66667L20.1955 6.66667L15.0263 1.42259C14.7055 1.09715 14.7055 0.569515 15.0263 0.244079C15.3471 -0.0813589 15.8672 -0.0813589 16.188 0.244079L22.7594 6.91074C23.0802 7.23618 23.0802 7.76382 22.7594 8.08926L16.188 14.7559C15.8672 15.0814 15.3471 15.0814 15.0263 14.7559C14.7055 14.4305 14.7055 13.9028 15.0263 13.5774L20.1955 8.33333H0.821429C0.367766 8.33333 0 7.96024 0 7.5Z" fill="#F7C600"></path></svg> </em> </span> </a> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-a7c12fa e-con-full e-flex e-con e-child" data-id="a7c12fa" data-element_type="container"> <div class="no-position rs-sticky-default elementor-element elementor-element-25e62726 e-con-full e-flex e-con e-child" data-id="25e62726" data-element_type="container"> <div class="no-position rs-sticky-default elementor-element elementor-element-3d819c48 e-con-full e-flex e-con e-child" data-id="3d819c48" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-5da78545 elementor-widget elementor-widget-rs-service-grid" data-id="5da78545" data-element_type="widget" data-widget_type="rs-service-grid.default"> <div class="elementor-widget-container"> <div class="rs-addon-services style7"> <div class="services-inner box"> <div class="numbering"> <span>01</span> </div> <div class="media_wrap"> <div class="icon_style media-cmn normal"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve"><defs></defs><g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)"> <path d="M 43.729 89.656 c -6.955 0 -15.869 -9.654 -24.542 -19.83 c -0.358 -0.42 -0.308 -1.052 0.113 -1.409 c 0.419 -0.36 1.051 -0.31 1.41 0.112 c 9.526 11.176 20.185 22.705 26.09 18.037 c 0.436 -0.344 1.063 -0.27 1.404 0.164 c 0.343 0.434 0.27 1.062 -0.164 1.404 C 46.716 89.181 45.27 89.656 43.729 89.656 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 50.435 90 c -1.113 0 -2.226 -0.428 -3.067 -1.279 l -10.95 -11.085 c -0.388 -0.394 -0.384 -1.026 0.009 -1.415 c 0.393 -0.388 1.025 -0.383 1.414 0.009 l 10.95 11.085 c 0.895 0.906 2.363 0.916 3.27 0.02 c 0.906 -0.895 0.915 -2.362 0.019 -3.27 l -8.96 -9.07 c -0.388 -0.394 -0.384 -1.026 0.009 -1.414 c 0.393 -0.39 1.025 -0.384 1.414 0.008 l 8.96 9.071 c 1.671 1.692 1.654 4.429 -0.036 6.098 C 52.627 89.586 51.53 89.999 50.435 90 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 57.136 87.358 c -1.113 0 -2.226 -0.427 -3.067 -1.279 l -1.989 -2.015 c -0.388 -0.393 -0.384 -1.025 0.01 -1.414 c 0.392 -0.388 1.024 -0.384 1.414 0.01 l 1.988 2.014 c 0.431 0.437 1.01 0.679 1.631 0.683 c 0.614 -0.006 1.202 -0.232 1.639 -0.663 c 0.907 -0.896 0.917 -2.363 0.021 -3.271 l -8.96 -9.07 c -0.389 -0.394 -0.385 -1.026 0.008 -1.414 c 0.394 -0.39 1.026 -0.384 1.414 0.008 l 8.961 9.071 c 1.671 1.692 1.654 4.429 -0.037 6.098 C 59.329 86.944 58.232 87.358 57.136 87.358 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 62.347 83.027 c -0.09 0 -0.181 -0.003 -0.272 -0.008 c -1.171 -0.068 -2.298 -0.568 -3.091 -1.372 c -0.388 -0.393 -0.384 -1.025 0.01 -1.414 c 0.392 -0.388 1.024 -0.385 1.414 0.01 c 0.449 0.455 1.1 0.739 1.784 0.779 c 0.673 0.046 1.276 -0.164 1.687 -0.57 c 0.907 -0.896 0.916 -2.363 0.021 -3.269 c -5.549 -6.826 -11.75 -12.647 -18.498 -17.379 c -1.197 0.652 -2.572 0.932 -4.159 0.844 c -5.18 5.316 -8.47 4.026 -11.251 1.824 c -0.029 -0.023 -0.057 -0.048 -0.083 -0.074 c -1.222 -1.214 -1.388 -3.112 -0.467 -5.346 c 2.068 -5.017 9.218 -11.146 14.616 -11.146 c 7.054 -0.273 15.343 1.155 20.583 3.553 c 0.502 0.229 0.723 0.823 0.493 1.325 c -0.229 0.501 -0.821 0.723 -1.325 0.493 c -4.981 -2.279 -12.906 -3.631 -19.712 -3.372 c -4.511 0.001 -11.023 5.583 -12.806 9.909 c -0.413 1.001 -0.744 2.35 -0.007 3.131 c 1.787 1.414 4.022 3.105 8.835 -2.014 c 0.212 -0.227 0.516 -0.339 0.827 -0.311 c 1.594 0.157 2.88 -0.115 3.925 -0.833 c 0.341 -0.235 0.792 -0.236 1.133 0.001 c 7.113 4.905 13.634 10.982 19.383 18.063 c 1.606 1.618 1.59 4.353 -0.102 6.024 C 64.536 82.614 63.478 83.027 62.347 83.027 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 36.91 50.768 H 25.96 c -0.552 0 -1 -0.447 -1 -1 s 0.448 -1 1 -1 h 10.95 c 0.552 0 1 0.447 1 1 S 37.463 50.768 36.91 50.768 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 63.1 75.662 c -0.338 0 -0.667 -0.171 -0.855 -0.48 c -0.287 -0.472 -0.138 -1.087 0.335 -1.374 l 7.279 -4.431 c 0.474 -0.287 1.088 -0.136 1.374 0.335 c 0.287 0.472 0.138 1.087 -0.335 1.374 l -7.279 4.431 C 63.456 75.615 63.277 75.662 63.1 75.662 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 19.123 72.841 H 8.994 c -0.552 0 -1 -0.447 -1 -1 V 43.738 c 0 -0.274 0.112 -0.536 0.311 -0.725 c 0.199 -0.188 0.467 -0.29 0.739 -0.274 c 5.314 0.263 11.083 1.146 18.157 2.778 c 0.271 0.063 0.503 0.235 0.642 0.476 c 0.139 0.241 0.171 0.529 0.088 0.794 l -7.852 25.349 C 19.949 72.556 19.562 72.841 19.123 72.841 z M 9.994 70.841 h 8.392 L 25.7 47.227 c -6.022 -1.35 -11.067 -2.131 -15.706 -2.431 V 70.841 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 81.007 72.841 H 70.876 c -0.438 0 -0.825 -0.285 -0.955 -0.704 L 62.07 46.788 c -0.082 -0.266 -0.051 -0.554 0.088 -0.794 c 0.139 -0.241 0.371 -0.414 0.643 -0.476 c 7.073 -1.632 12.843 -2.515 18.157 -2.778 c 0.272 -0.014 0.541 0.085 0.739 0.274 c 0.198 0.189 0.311 0.451 0.311 0.725 v 28.103 C 82.007 72.394 81.559 72.841 81.007 72.841 z M 71.613 70.841 h 8.393 V 44.796 c -4.639 0.3 -9.685 1.081 -15.707 2.431 L 71.613 70.841 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 12.278 11.5 c -1.719 0 -3.117 -1.398 -3.117 -3.117 c 0 -1.718 1.398 -3.117 3.117 -3.117 c 1.718 0 3.117 1.398 3.117 3.117 C 15.395 10.102 13.997 11.5 12.278 11.5 z M 12.278 5.781 c -1.435 0 -2.603 1.167 -2.603 2.602 s 1.168 2.603 2.603 2.603 s 2.603 -1.168 2.603 -2.603 S 13.714 5.781 12.278 5.781 z M 4.732 10.812 c -0.101 0 -0.197 -0.06 -0.238 -0.159 C 4.222 9.995 4.536 9.237 5.194 8.964 C 5.544 8.819 5.582 8.51 5.582 8.383 c 0 -0.127 -0.037 -0.436 -0.388 -0.581 c -0.319 -0.132 -0.567 -0.381 -0.7 -0.7 c -0.132 -0.319 -0.132 -0.67 0 -0.99 l 0.675 -1.629 c 0.273 -0.658 1.031 -0.972 1.689 -0.699 c 0.35 0.145 0.596 -0.047 0.685 -0.136 c 0.09 -0.09 0.282 -0.335 0.137 -0.686 c -0.132 -0.319 -0.132 -0.671 0 -0.989 c 0.132 -0.319 0.381 -0.568 0.7 -0.7 L 10.008 0.6 c 0.659 -0.272 1.416 0.041 1.689 0.7 c 0.145 0.35 0.455 0.388 0.581 0.388 c 0.126 0 0.436 -0.038 0.581 -0.388 c 0.132 -0.319 0.38 -0.568 0.7 -0.7 c 0.318 -0.132 0.67 -0.133 0.99 0 l 1.628 0.674 c 0.319 0.132 0.568 0.381 0.7 0.7 c 0.132 0.319 0.132 0.671 0 0.99 c -0.145 0.35 0.047 0.596 0.136 0.685 c 0.089 0.089 0.334 0.282 0.685 0.136 c 0.319 -0.132 0.671 -0.132 0.99 0 c 0.32 0.132 0.568 0.381 0.7 0.7 l 0.675 1.628 c 0.132 0.319 0.132 0.671 0 0.99 c -0.132 0.319 -0.381 0.568 -0.7 0.7 c -0.35 0.145 -0.388 0.455 -0.388 0.581 c 0 0.126 0.038 0.436 0.389 0.581 c 0.658 0.273 0.972 1.031 0.699 1.689 c -0.055 0.131 -0.206 0.193 -0.336 0.139 c -0.131 -0.054 -0.194 -0.205 -0.139 -0.336 c 0.164 -0.396 -0.024 -0.853 -0.421 -1.017 c -0.655 -0.271 -0.706 -0.877 -0.706 -1.056 c 0 -0.369 0.185 -0.841 0.705 -1.056 c 0.192 -0.079 0.342 -0.229 0.421 -0.421 c 0.08 -0.192 0.08 -0.404 0 -0.596 l -0.675 -1.628 c -0.08 -0.192 -0.229 -0.342 -0.421 -0.421 c -0.192 -0.08 -0.404 -0.08 -0.596 0 c -0.655 0.272 -1.119 -0.121 -1.246 -0.248 c -0.261 -0.261 -0.463 -0.725 -0.248 -1.246 c 0.08 -0.192 0.08 -0.404 0 -0.596 c -0.08 -0.192 -0.229 -0.342 -0.421 -0.421 l -1.628 -0.674 c -0.192 -0.08 -0.404 -0.08 -0.596 0 c -0.192 0.08 -0.342 0.229 -0.421 0.421 c -0.271 0.655 -0.877 0.706 -1.056 0.706 c -0.369 0 -0.84 -0.185 -1.056 -0.705 c -0.165 -0.397 -0.621 -0.586 -1.018 -0.422 L 8.576 1.749 c -0.192 0.08 -0.342 0.229 -0.421 0.421 c -0.08 0.192 -0.08 0.404 0 0.596 c 0.216 0.52 0.013 0.985 -0.248 1.246 C 7.647 4.274 7.183 4.476 6.662 4.26 C 6.266 4.096 5.809 4.285 5.644 4.681 L 4.969 6.31 c -0.08 0.192 -0.08 0.404 0 0.596 c 0.08 0.192 0.229 0.342 0.422 0.421 c 0.521 0.216 0.706 0.687 0.705 1.056 c 0 0.179 -0.051 0.784 -0.705 1.055 c -0.397 0.165 -0.586 0.621 -0.422 1.017 c 0.054 0.131 -0.008 0.282 -0.139 0.336 C 4.798 10.806 4.765 10.812 4.732 10.812 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(3.89 0 0 3.89 -1.9444444444444287 -1.9444444444444287) " stroke-linecap="round"></path></g></svg> </div> </div> <div class="content_part"> <div class="services-title"> <h3 class="title"> <a href="https://www.flozen.media/services/web-design-and-development/" > Website Designing & Development </a> </h3> </div> <div class="desc-text"> We create and develop websites and web applications compatible with Windows, Mac OS X, and BSD/Unix platforms </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-36dc16b3 e-con-full e-flex e-con e-child" data-id="36dc16b3" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-36a6a0d elementor-widget elementor-widget-rs-service-grid" data-id="36a6a0d" data-element_type="widget" data-widget_type="rs-service-grid.default"> <div class="elementor-widget-container"> <div class="rs-addon-services style7"> <div class="services-inner box"> <div class="numbering"> <span>01</span> </div> <div class="media_wrap"> <div class="icon_style media-cmn normal"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve"><defs></defs><g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)"> <path d="M 47.497 59.209 l -4.003 -3.616 c -0.521 -0.412 -1.138 -0.703 -1.789 -0.844 l -12.117 -2.565 c -0.541 -0.114 -1.071 0.23 -1.186 0.771 c -0.114 0.54 0.231 1.071 0.771 1.186 l 12.113 2.564 c 0.35 0.075 0.684 0.233 0.916 0.414 l 4.003 3.616 c 1.43 1.132 1.748 3.2 0.726 4.709 l -0.421 0.619 c -1.004 1.48 -2.936 1.965 -4.517 1.138 l -4.469 -3.257 c -0.036 -0.025 -0.073 -0.049 -0.111 -0.07 c -0.51 -0.277 -1.061 -0.447 -1.683 -0.511 l -7.523 -0.424 c -0.272 -0.012 -0.54 0.081 -0.74 0.269 c -0.199 0.187 -0.314 0.446 -0.316 0.72 c -0.031 3.314 -1.197 6.693 -3.288 9.636 L 11.559 60.313 c 1.87 -2.123 3.394 -4.106 4.854 -6.022 c 2.781 -3.651 5.183 -6.805 9.108 -9.524 c 2.256 -1.563 5.192 -1.802 7.705 -0.606 l 2.604 1.095 c 0.511 0.214 1.096 -0.026 1.31 -0.534 c 0.214 -0.509 -0.025 -1.096 -0.534 -1.31 l -2.562 -1.076 c -3.114 -1.485 -6.817 -1.183 -9.661 0.787 c -4.186 2.899 -6.676 6.169 -9.56 9.956 c -1.403 1.841 -2.867 3.745 -4.632 5.76 L 9.06 57.622 c -0.181 -0.194 -0.431 -0.309 -0.696 -0.318 c -0.279 -0.022 -0.523 0.085 -0.718 0.267 l -7.327 6.805 c -0.404 0.376 -0.428 1.008 -0.052 1.413 l 17.525 18.871 c 0.197 0.212 0.465 0.319 0.733 0.319 c 0.244 0 0.488 -0.089 0.681 -0.268 l 7.327 -6.804 c 0.194 -0.18 0.309 -0.431 0.319 -0.695 c 0.01 -0.266 -0.086 -0.523 -0.267 -0.718 l -1.336 -1.439 c 2.254 -3.048 3.608 -6.556 3.86 -10.062 l 6.463 0.363 c 0.291 0.029 0.571 0.113 0.833 0.247 l 4.467 3.256 c 0.035 0.025 0.072 0.049 0.11 0.069 c 2.5 1.363 5.587 0.612 7.183 -1.742 l 0.42 -0.619 C 50.194 64.196 49.694 60.945 47.497 59.209 z M 18.578 82.565 L 2.413 65.159 l 5.861 -5.443 l 16.165 17.406 L 18.578 82.565 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 83.844 12.102 c -8.5 -9.153 -22.863 -9.685 -32.021 -1.184 c -4.435 4.119 -7 9.718 -7.224 15.766 c -0.168 4.544 1.002 8.932 3.341 12.715 l -7.767 7.214 c -0.404 0.376 -0.428 1.008 -0.052 1.413 c 0.197 0.212 0.465 0.319 0.733 0.319 c 0.244 0 0.488 -0.089 0.681 -0.268 l 7.551 -7.012 c 0.484 0.646 0.997 1.274 1.555 1.874 c 0.559 0.601 1.143 1.166 1.749 1.692 l -6.462 6.002 c -0.404 0.376 -0.428 1.008 -0.052 1.413 c 0.197 0.212 0.464 0.319 0.733 0.319 c 0.244 0 0.488 -0.089 0.681 -0.268 l 6.691 -6.214 c 3.933 2.842 8.596 4.282 13.272 4.282 c 5.521 0 11.055 -2 15.41 -6.044 c 4.435 -4.119 7 -9.718 7.224 -15.766 S 87.963 16.537 83.844 12.102 z M 81.299 42.657 c -8.346 7.751 -21.442 7.267 -29.194 -1.08 c -3.755 -4.043 -5.71 -9.307 -5.506 -14.821 c 0.203 -5.514 2.543 -10.619 6.586 -14.374 c 3.852 -3.577 8.81 -5.521 14.038 -5.521 c 0.26 0 0.521 0.005 0.782 0.015 c 5.514 0.204 10.619 2.543 14.374 6.586 c 3.755 4.043 5.71 9.307 5.506 14.821 C 87.682 33.798 85.342 38.902 81.299 42.657 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 51.232 85.138 H 40.854 c -0.552 0 -1 -0.447 -1 -1 v -7.632 c 0 -0.553 0.448 -1 1 -1 h 10.379 c 0.553 0 1 0.447 1 1 v 7.632 C 52.232 84.69 51.785 85.138 51.232 85.138 z M 41.854 83.138 h 8.379 v -5.632 h -8.379 V 83.138 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 70.116 85.138 H 59.737 c -0.553 0 -1 -0.447 -1 -1 v -22.47 c 0 -0.553 0.447 -1 1 -1 h 10.379 c 0.553 0 1 0.447 1 1 v 22.47 C 71.116 84.69 70.669 85.138 70.116 85.138 z M 60.737 83.138 h 8.379 v -20.47 h -8.379 V 83.138 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 89 85.138 H 78.621 c -0.553 0 -1 -0.447 -1 -1 V 54.924 c 0 -0.553 0.447 -1 1 -1 s 1 0.447 1 1 v 28.214 H 88 V 46.831 c 0 -0.553 0.447 -1 1 -1 s 1 0.447 1 1 v 37.307 C 90 84.69 89.553 85.138 89 85.138 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 54.78 34.481 c -0.287 0 -0.572 -0.123 -0.771 -0.361 c -0.353 -0.425 -0.294 -1.056 0.131 -1.408 l 8.799 -7.31 c 0.21 -0.175 0.48 -0.255 0.757 -0.224 c 0.271 0.032 0.519 0.175 0.683 0.395 l 3.43 4.59 l 12.045 -9.894 c 0.429 -0.352 1.058 -0.289 1.407 0.138 c 0.351 0.427 0.289 1.057 -0.138 1.408 L 68.269 32.373 c -0.211 0.173 -0.484 0.251 -0.755 0.22 c -0.271 -0.033 -0.518 -0.175 -0.681 -0.394 l -3.426 -4.585 l -7.989 6.637 C 55.231 34.405 55.005 34.481 54.78 34.481 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path></g></svg> </div> </div> <div class="content_part"> <div class="services-title"> <h3 class="title"> <a href="/services/business-emails/" > Cloud Technology Services </a> </h3> </div> <div class="desc-text"> We resell Google Cloud, Microsoft, and AWS technologies to help businesses grow, providing tailored solutions for our clients. </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-47d14a9f e-con-full e-flex e-con e-child" data-id="47d14a9f" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-7ce5180 elementor-widget elementor-widget-rs-service-grid" data-id="7ce5180" data-element_type="widget" data-widget_type="rs-service-grid.default"> <div class="elementor-widget-container"> <div class="rs-addon-services style7"> <div class="services-inner box"> <div class="numbering"> <span>01</span> </div> <div class="media_wrap"> <div class="icon_style media-cmn normal"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve"><defs></defs><g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)"> <path d="M 52.552 37.239 h -4.339 c -0.655 0 -1.188 -0.532 -1.188 -1.187 v -3.366 c 0 -0.654 0.532 -1.187 1.188 -1.187 h 4.339 c 0.654 0 1.187 0.533 1.187 1.187 c 0 0.552 0.447 1 1 1 s 1 -0.448 1 -1 c 0 -1.757 -1.43 -3.187 -3.187 -3.187 h -1.17 V 27.79 c 0 -0.552 -0.447 -1 -1 -1 s -1 0.448 -1 1 v 1.708 h -1.169 c -1.758 0 -3.188 1.43 -3.188 3.187 v 3.366 c 0 1.757 1.43 3.187 3.188 3.187 h 4.339 c 0.654 0 1.187 0.533 1.187 1.187 v 3.366 c 0 0.654 -0.532 1.187 -1.187 1.187 h -4.339 c -0.655 0 -1.188 -0.533 -1.188 -1.187 c 0 -0.552 -0.447 -1 -1 -1 c -0.552 0 -1 0.448 -1 1 c 0 1.757 1.43 3.188 3.188 3.188 h 1.169 v 1.946 c 0 0.553 0.447 1 1 1 s 1 -0.447 1 -1 v -1.946 h 1.17 c 1.757 0 3.187 -1.43 3.187 -3.188 v -3.366 C 55.738 38.668 54.309 37.239 52.552 37.239 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 89.496 59.503 c -3.376 -5.601 -8.701 -8.292 -13.819 -7.215 c -0.979 -3.382 -1.429 -7.265 -1.896 -11.364 c -1.229 -10.788 -2.498 -21.942 -14.165 -24.149 c -3.605 -0.424 -4.716 -1.521 -4.713 -1.873 c 0.003 -0.236 0.721 -0.992 2.988 -1.217 c 4.681 -0.886 5.883 -4.948 6.44 -8.805 c 0.064 -0.445 -0.176 -0.879 -0.588 -1.059 c -7.972 -3.489 -16.052 -3.49 -24.022 -0.011 c -0.422 0.17 -0.683 0.609 -0.616 1.071 c 0.56 3.856 1.763 7.918 6.531 8.817 c 2.179 0.212 2.897 0.968 2.9 1.205 c 0.003 0.352 -1.107 1.449 -4.781 1.883 c -11.598 2.196 -12.869 13.351 -14.097 24.139 c -0.628 5.509 -1.24 10.716 -3.138 14.653 c -1.61 -0.673 -3.31 -1.18 -5.243 -1.004 l -2.223 0.197 v -1.967 c 0 -1.842 -1.499 -3.341 -3.341 -3.341 H 3.342 c -1.842 0 -3.341 1.499 -3.341 3.341 v 32.652 c 0 1.842 1.499 3.341 3.341 3.341 h 12.371 c 1.842 0 3.341 -1.499 3.341 -3.341 v -0.344 l 5.791 -0.514 c 3.195 -0.28 6.412 0.912 9.523 2.068 c 2.822 1.049 5.73 2.13 8.667 2.13 c 0.335 0 0.671 -0.014 1.007 -0.044 c 6.322 -0.553 21.117 -9.822 38.248 -20.557 c 1.968 -1.233 3.957 -2.479 5.953 -3.725 C 89.945 63.41 90.507 61.182 89.496 59.503 z M 31.646 41.151 c 1.199 -10.531 2.332 -20.478 12.413 -22.39 c 4.076 -0.479 6.497 -1.929 6.478 -3.878 c -0.013 -1.315 -1.256 -2.839 -4.616 -3.163 c -3.04 -0.576 -4.12 -2.854 -4.715 -6.366 c 6.981 -2.859 14.049 -2.859 21.03 0 c -0.595 3.512 -1.669 5.79 -4.626 6.354 c -3.449 0.336 -4.692 1.86 -4.705 3.175 c -0.02 1.949 2.402 3.399 6.408 3.868 c 10.15 1.922 11.283 11.869 12.482 22.399 c 0.457 4.018 0.936 8.154 1.973 11.731 c -0.135 0.055 -0.272 0.098 -0.406 0.158 l -15.394 7.156 c -1.676 -2.657 -4.437 -5.581 -9.471 -4.723 l -14.065 2.553 c -2.185 0.188 -4.084 -0.695 -6.089 -1.629 C 30.375 52.133 31.03 46.565 31.646 41.151 z M 17.055 85.457 c 0 0.739 -0.602 1.341 -1.341 1.341 H 3.342 c -0.74 0 -1.341 -0.602 -1.341 -1.341 V 52.805 c 0 -0.739 0.602 -1.341 1.341 -1.341 h 12.371 c 0.74 0 1.341 0.602 1.341 1.341 v 2.145 v 30.342 V 85.457 z M 87.185 62.775 c -1.998 1.246 -3.987 2.493 -5.957 3.727 C 65.02 76.658 49.71 86.251 43.867 86.762 c -2.834 0.253 -5.731 -0.827 -8.802 -1.968 c -2.965 -1.103 -6.019 -2.237 -9.234 -2.237 c -0.385 0 -0.773 0.017 -1.163 0.051 l -5.614 0.498 V 56.779 l 2.4 -0.213 c 2.118 -0.188 3.999 0.688 5.99 1.617 c 2.172 1.013 4.422 2.054 7.248 1.823 l 14.153 -2.564 c 4.226 -0.722 6.341 1.888 7.861 4.537 l 0.456 0.796 l 0.001 0 l 0.859 1.496 c -7.292 4.119 -13.557 6.668 -19.126 7.781 c -0.542 0.108 -0.893 0.635 -0.784 1.177 c 0.095 0.476 0.513 0.804 0.979 0.804 c 0.065 0 0.131 -0.006 0.197 -0.02 c 6.005 -1.201 12.743 -3.982 20.599 -8.503 c 0.478 -0.275 0.643 -0.887 0.368 -1.365 l -1.272 -2.217 l 15.21 -7.071 c 4.782 -2.148 10.246 0.13 13.589 5.677 C 88.234 61.283 87.965 62.288 87.185 62.775 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path></g></svg> </div> </div> <div class="content_part"> <div class="services-title"> <h3 class="title"> <a href="/services/logo-designing/" > Logo Designing & <BR>Branding </a> </h3> </div> <div class="desc-text"> Want your brand to captivate clients? We create simple, powerful visuals to ensure your brand's unique identity. Let us help you. </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-54d56793 e-con-full e-flex e-con e-child" data-id="54d56793" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-3ca8245 elementor-widget elementor-widget-rs-service-grid" data-id="3ca8245" data-element_type="widget" data-widget_type="rs-service-grid.default"> <div class="elementor-widget-container"> <div class="rs-addon-services style7"> <div class="services-inner box"> <div class="numbering"> <span>01</span> </div> <div class="media_wrap"> <div class="icon_style media-cmn normal"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve"><defs></defs><g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)"> <path d="M 1 87.973 c -0.552 0 -1 -0.447 -1 -1 V 3.027 c 0 -0.552 0.448 -1 1 -1 s 1 0.448 1 1 v 83.946 C 2 87.525 1.552 87.973 1 87.973 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 89 87.973 H 1 c -0.552 0 -1 -0.447 -1 -1 s 0.448 -1 1 -1 h 88 c 0.553 0 1 0.447 1 1 S 89.553 87.973 89 87.973 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 28.645 87.973 H 16.76 c -0.552 0 -1 -0.447 -1 -1 v -16.86 h -4.069 c -0.389 0 -0.743 -0.226 -0.907 -0.579 c -0.164 -0.353 -0.108 -0.769 0.143 -1.066 l 11.012 -13.042 c 0.38 -0.449 1.148 -0.449 1.528 0 l 11.012 13.042 c 0.251 0.298 0.307 0.714 0.143 1.066 c -0.164 0.354 -0.518 0.579 -0.907 0.579 h -4.069 v 16.86 C 29.645 87.525 29.197 87.973 28.645 87.973 z M 17.76 85.973 h 9.885 v -16.86 c 0 -0.553 0.448 -1 1 -1 h 2.916 L 22.703 57.62 l -8.858 10.492 h 2.916 c 0.552 0 1 0.447 1 1 V 85.973 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 55.045 87.973 H 43.16 c -0.552 0 -1 -0.447 -1 -1 V 47.368 h -4.069 c -0.389 0 -0.743 -0.226 -0.907 -0.579 c -0.164 -0.353 -0.108 -0.769 0.143 -1.066 l 11.012 -13.042 c 0.379 -0.45 1.148 -0.45 1.527 0 l 11.012 13.042 c 0.252 0.297 0.308 0.713 0.144 1.066 c -0.164 0.354 -0.518 0.579 -0.907 0.579 h -4.069 v 39.604 C 56.045 87.525 55.598 87.973 55.045 87.973 z M 44.16 85.973 h 9.885 V 46.368 c 0 -0.552 0.447 -1 1 -1 h 2.916 l -8.858 -10.492 l -8.858 10.492 h 2.916 c 0.552 0 1 0.448 1 1 V 85.973 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 81.445 87.973 H 69.561 c -0.553 0 -1 -0.447 -1 -1 V 24.624 h -4.069 c -0.39 0 -0.743 -0.226 -0.907 -0.579 s -0.108 -0.769 0.144 -1.066 L 74.739 9.936 c 0.379 -0.45 1.148 -0.45 1.527 0 l 11.012 13.042 c 0.252 0.297 0.308 0.713 0.144 1.066 s -0.518 0.579 -0.907 0.579 h -4.069 v 62.349 C 82.445 87.525 81.998 87.973 81.445 87.973 z M 70.561 85.973 h 9.885 V 23.624 c 0 -0.552 0.447 -1 1 -1 h 2.916 l -8.858 -10.492 l -8.858 10.492 h 2.916 c 0.553 0 1 0.448 1 1 V 85.973 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 38.091 22.169 h -26.4 c -0.552 0 -1 -0.448 -1 -1 V 10.246 c 0 -0.552 0.448 -1 1 -1 h 26.4 c 0.552 0 1 0.448 1 1 v 10.923 C 39.091 21.722 38.644 22.169 38.091 22.169 z M 12.691 20.169 h 24.4 v -8.923 h -24.4 V 20.169 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 38.091 29.39 h -26.4 c -0.552 0 -1 -0.448 -1 -1 s 0.448 -1 1 -1 h 26.4 c 0.552 0 1 0.448 1 1 S 38.644 29.39 38.091 29.39 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 24.242 37.278 H 11.691 c -0.552 0 -1 -0.448 -1 -1 s 0.448 -1 1 -1 h 12.551 c 0.552 0 1 0.448 1 1 S 24.794 37.278 24.242 37.278 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path></g></svg> </div> </div> <div class="content_part"> <div class="services-title"> <h3 class="title"> <a href="/services/seo-branding/" > Search Engine Optimization </a> </h3> </div> <div class="desc-text"> Search engine optimization helps achieve organic search result listings on internet search engines! </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-513d7d16 e-con-full e-flex e-con e-child" data-id="513d7d16" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-1b4a39c elementor-widget elementor-widget-rs-service-grid" data-id="1b4a39c" data-element_type="widget" data-widget_type="rs-service-grid.default"> <div class="elementor-widget-container"> <div class="rs-addon-services style7"> <div class="services-inner box"> <div class="numbering"> <span>01</span> </div> <div class="media_wrap"> <div class="icon_style media-cmn normal"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve"><defs></defs><g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)"> <path d="M 86.159 8.322 H 3.84 c -2.118 0 -3.84 1.723 -3.84 3.84 v 64.414 c 0 2.118 1.723 3.841 3.84 3.841 H 30.95 c 0.552 0 1 -0.447 1 -1 s -0.448 -1 -1 -1 H 3.84 c -1.015 0 -1.84 -0.826 -1.84 -1.841 V 22.743 h 86 v 53.833 c 0 1.015 -0.826 1.841 -1.841 1.841 H 59.227 c -0.553 0 -1 0.447 -1 1 s 0.447 1 1 1 h 26.933 c 2.118 0 3.841 -1.723 3.841 -3.841 V 12.163 C 90 10.045 88.277 8.322 86.159 8.322 z M 2 20.743 v -8.581 c 0 -1.015 0.826 -1.84 1.84 -1.84 h 82.319 c 1.015 0 1.841 0.826 1.841 1.84 v 8.581 H 2 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 34.509 16.411 H 6.559 c -0.552 0 -1 -0.448 -1 -1 s 0.448 -1 1 -1 h 27.95 c 0.552 0 1 0.448 1 1 S 35.062 16.411 34.509 16.411 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 83.941 16.411 h -6.5 c -0.553 0 -1 -0.448 -1 -1 s 0.447 -1 1 -1 h 6.5 c 0.553 0 1 0.448 1 1 S 84.494 16.411 83.941 16.411 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 50.151 89.728 h -9.698 c -2.148 0 -3.896 -1.748 -3.896 -3.896 V 80.92 c 0 -2.023 -0.909 -3.899 -2.431 -5.018 C 28.899 72.06 26.123 65.9 26.7 59.428 c 0.811 -9.077 8.298 -16.246 17.417 -16.674 c 5.08 -0.234 9.902 1.557 13.571 5.058 c 3.671 3.503 5.693 8.226 5.693 13.299 c 0 5.544 -2.472 10.737 -6.781 14.246 c -1.623 1.319 -2.553 3.182 -2.553 5.111 v 5.363 C 54.048 87.979 52.3 89.728 50.151 89.728 z M 45.011 44.732 c -0.266 0 -0.533 0.006 -0.8 0.019 c -8.125 0.382 -14.797 6.768 -15.519 14.854 c -0.515 5.771 1.959 11.261 6.618 14.686 c 2.033 1.493 3.247 3.972 3.247 6.629 v 4.911 c 0 1.046 0.851 1.896 1.896 1.896 h 9.698 c 1.046 0 1.896 -0.851 1.896 -1.896 v -5.363 c 0 -2.534 1.199 -4.962 3.29 -6.662 c 3.841 -3.128 6.044 -7.755 6.044 -12.695 c 0 -4.521 -1.802 -8.729 -5.074 -11.852 C 53.23 46.323 49.245 44.732 45.011 44.732 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 53.763 55.447 l -5.058 1.846 l 1.298 1.087 l -3.69 4.406 l -4.795 -4.141 l -6.02 6.758 c -0.368 0.412 -0.331 1.044 0.082 1.412 c 0.19 0.169 0.428 0.253 0.665 0.253 c 0.275 0 0.55 -0.113 0.747 -0.335 l 4.71 -5.287 l 4.84 4.18 l 4.995 -5.962 l 1.297 1.086 L 53.763 55.447 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 24.038 60.517 h -7.999 c -0.552 0 -1 -0.447 -1 -1 s 0.448 -1 1 -1 h 7.999 c 0.552 0 1 0.447 1 1 S 24.59 60.517 24.038 60.517 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 74.039 60.517 H 66.04 c -0.553 0 -1 -0.447 -1 -1 s 0.447 -1 1 -1 h 7.999 c 0.553 0 1 0.447 1 1 S 74.592 60.517 74.039 60.517 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 59.889 45.667 c -0.256 0 -0.512 -0.098 -0.707 -0.293 c -0.391 -0.391 -0.391 -1.023 0 -1.414 l 5.656 -5.656 c 0.391 -0.391 1.023 -0.391 1.414 0 s 0.391 1.023 0 1.414 l -5.656 5.656 C 60.4 45.569 60.145 45.667 59.889 45.667 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 45.039 39.516 c -0.552 0 -1 -0.448 -1 -1 v -7.999 c 0 -0.552 0.448 -1 1 -1 s 1 0.448 1 1 v 7.999 C 46.039 39.068 45.591 39.516 45.039 39.516 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path> <path d="M 30.189 45.667 c -0.256 0 -0.512 -0.098 -0.707 -0.293 l -5.656 -5.656 c -0.391 -0.391 -0.391 -1.023 0 -1.414 s 1.023 -0.391 1.414 0 l 5.656 5.656 c 0.391 0.391 0.391 1.023 0 1.414 C 30.701 45.569 30.445 45.667 30.189 45.667 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path></g></svg> </div> </div> <div class="content_part"> <div class="services-title"> <h3 class="title"> <a href="/services/domain-web-hosting/" > Domains, Web Hosting & Emails </a> </h3> </div> <div class="desc-text"> Our Domain and Web Hosting service ensures your website is reliably accessible and professionally managed. </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-7563398a e-con-full e-flex e-con e-child" data-id="7563398a" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-90ca6d9 elementor-widget elementor-widget-rs-service-grid" data-id="90ca6d9" data-element_type="widget" data-widget_type="rs-service-grid.default"> <div class="elementor-widget-container"> <div class="rs-addon-services style7"> <div class="services-inner box"> <div class="numbering"> <span>01</span> </div> <div class="media_wrap"> <div class="icon_style media-cmn normal"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve"><defs></defs><g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)"> <path d="M 81.459 19.656 H 63.918 v -5.322 c 0 -6.762 -5.501 -12.263 -12.264 -12.263 H 38.346 c -6.762 0 -12.264 5.501 -12.264 12.263 v 5.322 H 8.542 C 3.832 19.656 0 23.488 0 28.198 v 15.595 v 35.595 c 0 4.71 3.832 8.541 8.542 8.541 h 72.917 c 4.71 0 8.541 -3.831 8.541 -8.541 V 43.792 V 28.198 C 90 23.488 86.169 19.656 81.459 19.656 z M 28.082 14.334 c 0 -5.659 4.604 -10.263 10.264 -10.263 h 13.309 c 5.659 0 10.264 4.604 10.264 10.263 v 5.322 h -5.524 v -5.322 c 0 -2.613 -2.126 -4.738 -4.739 -4.738 H 38.346 c -2.613 0 -4.739 2.125 -4.739 4.738 v 5.322 h -5.525 V 14.334 z M 35.607 19.656 v -5.322 c 0 -1.51 1.229 -2.738 2.739 -2.738 h 13.309 c 1.511 0 2.739 1.229 2.739 2.738 v 5.322 H 35.607 z M 2 28.198 c 0 -3.607 2.935 -6.542 6.542 -6.542 h 18.541 h 7.525 h 20.787 h 7.524 h 18.541 c 3.606 0 6.541 2.935 6.541 6.542 v 14.85 l -31.421 9.401 v -7.137 v 0 c 0 -0.552 -0.447 -1 -1 -1 H 34.42 c -0.552 0 -1 0.448 -1 1 v 0 v 7.137 L 2 43.048 V 28.198 z M 35.42 53.792 v -7.479 h 19.159 v 7.479 v 4.211 c 0 1.156 -0.58 2.221 -1.552 2.847 l -6.19 3.994 c -1.115 0.718 -2.557 0.721 -3.673 -0.001 l -6.191 -3.993 c -0.972 -0.626 -1.552 -1.69 -1.552 -2.847 V 53.792 z M 81.459 85.929 H 8.542 C 4.935 85.929 2 82.994 2 79.388 V 45.135 l 31.42 9.401 v 3.466 c 0 1.839 0.922 3.531 2.468 4.528 l 6.191 3.992 c 0.887 0.573 1.903 0.859 2.92 0.859 c 1.017 0 2.034 -0.286 2.921 -0.858 l 6.19 -3.993 c 1.545 -0.997 2.468 -2.689 2.468 -4.528 v -3.466 L 88 45.136 v 34.252 C 88 82.994 85.065 85.929 81.459 85.929 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"></path></g></svg> </div> </div> <div class="content_part"> <div class="services-title"> <h3 class="title"> <a href="/services/software-development/" > IT Business Consulting Services </a> </h3> </div> <div class="desc-text"> By offering both design and construction services under one contract, we streamline the process and maximize efficiency. </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-3af505a5 e-flex e-con-boxed e-con e-parent" data-id="3af505a5" 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-31095c89 e-flex e-con-boxed e-con e-child" data-id="31095c89" data-element_type="container"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-307668e7 e-con-full e-flex e-con e-child" data-id="307668e7" data-element_type="container"> <div class="elementor-element elementor-element-20771bb5 elementor-widget__width-initial elementor-widget elementor-widget-rs-heading" data-id="20771bb5" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 left subtitle-gradient-no"> <div class="title-inner"> <span class="sub-text"> Why Choose Us </span> <h2 class="title rs-split-text-enable split-in-fade">Consulting Solutions For Your Business Development</h2> </div> </div> </div> </div> <div class="elementor-element elementor-element-a5cd07c elementor-widget elementor-widget-rs-service-grid" data-id="a5cd07c" data-element_type="widget" data-widget_type="rs-service-grid.default"> <div class="elementor-widget-container"> <div class="rs-addon-services style7"> <div class="services-inner box"> <div class="media_wrap"> <div class="icon_style media-cmn normal"> <svg aria-hidden="true" class="e-font-icon-svg e-far-object-group" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z"></path></svg> </div> </div> <div class="content_part"> <div class="services-title"> <h4 class="title"> Strategic foundation</h4> </div> <div class="desc-text"> Our smart professionals analyze ideas from all angles as well-defined ideas form the foundation of every digital initiative we undertake at Flozen Media </div> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-f1290e5 elementor-widget elementor-widget-rs-service-grid" data-id="f1290e5" data-element_type="widget" data-widget_type="rs-service-grid.default"> <div class="elementor-widget-container"> <div class="rs-addon-services style7"> <div class="services-inner box"> <div class="media_wrap"> <div class="icon_style media-cmn normal"> <svg aria-hidden="true" class="e-font-icon-svg e-fas-users" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"></path></svg> </div> </div> <div class="content_part"> <div class="services-title"> <h4 class="title"> Expert professionals</h4> </div> <div class="desc-text"> Close collaboration gives birth to successful projects and helps us appreciate the role teamwork plays in turning ideas into reality. </div> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-d071301 elementor-widget elementor-widget-rs-service-grid" data-id="d071301" data-element_type="widget" data-widget_type="rs-service-grid.default"> <div class="elementor-widget-container"> <div class="rs-addon-services style7"> <div class="services-inner box"> <div class="media_wrap"> <div class="icon_style media-cmn normal"> <svg aria-hidden="true" class="e-font-icon-svg e-far-paper-plane" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"></path></svg> </div> </div> <div class="content_part"> <div class="services-title"> <h4 class="title"> Working towards goals</h4> </div> <div class="desc-text"> Conducting thorough research into your specific market and drawing on the experience of certified professionals, we push the envelope to meet objectives. </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-4a612553 e-con-full e-flex e-con e-child" data-id="4a612553" data-element_type="container"> <div class="elementor-element elementor-element-703e7293 elementor-widget elementor-widget-rs-image" data-id="703e7293" data-element_type="widget" data-widget_type="rs-image.default"> <div class="elementor-widget-container"> <div class="rs-image no ruler_image_no ruler_position_ "> <img decoding="async" class="rs-multi-image reverse- blend_unset" src="https://demo.rstheme.com/wordpress/bandco/wp-content/uploads/2024/06/faq3.jpg" alt="image"/> </div> </div> </div> <div class="elementor-element elementor-element-3835e7a5 elementor-widget__width-initial elementor-absolute elementor-hidden-mobile elementor-hidden-tablet elementor-widget elementor-widget-rs-image" data-id="3835e7a5" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="rs-image.default"> <div class="elementor-widget-container"> <div class="rs-image no ruler_image_no ruler_position_ "> <img decoding="async" class="rs-multi-image reverse- blend_unset" src="https://demo.rstheme.com/wordpress/bandco/wp-content/uploads/2024/06/video-1.jpg" alt="image"/> </div> </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-46ca96b6 hidden e-flex e-con-boxed e-con e-parent" data-id="46ca96b6" data-element_type="container"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-2e0eb651 e-flex e-con-boxed e-con e-child" data-id="2e0eb651" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-12f71cc elementor-widget elementor-widget-image" data-id="12f71cc" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img loading="lazy" decoding="async" width="650" height="650" src="https://www.flozen.media/wp-content/uploads/2024/06/why_002.jpg" class="attachment-large size-large wp-image-8990" alt="" srcset="https://www.flozen.media/wp-content/uploads/2024/06/why_002.jpg 650w, https://www.flozen.media/wp-content/uploads/2024/06/why_002-300x300.jpg 300w, https://www.flozen.media/wp-content/uploads/2024/06/why_002-150x150.jpg 150w, https://www.flozen.media/wp-content/uploads/2024/06/why_002-500x500.jpg 500w" sizes="(max-width: 650px) 100vw, 650px" /> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-38f31d40 e-flex e-con-boxed e-con e-child" data-id="38f31d40" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-3e20b72f elementor-widget__width-initial elementor-widget elementor-widget-rs-heading" data-id="3e20b72f" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 left subtitle-gradient-no"> <div class="title-inner"> <span class="sub-text"> Questions </span> <h2 class="title rs-split-text-enable split-in-fade">Do You Have Questions For Our Consulting</h2> </div> <div class="description"> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed eiusmod tempor incididunt ut labore et dolore magna aliqua.</p> </div> </div> </div> </div> <div class="elementor-element elementor-element-3c508155 elementor-widget elementor-widget-rs-accordions-custom" data-id="3c508155" data-element_type="widget" data-widget_type="rs-accordions-custom.default"> <div class="elementor-widget-container"> <div class="rs-accordion-area accordion style1" id="rs_accordion_inner_33042"> <div class="accordion-item"> <div class="accordion-header" id="heading346719"> <div class="accordion-button " data-bs-toggle="collapse" data-bs-target="#collapse_346719" aria-controls="collapse_346719"> <span class="elementor-accordion-icon elementor-accordion-icon-right" aria-hidden="true"> <span class="elementor-accordion-icon-closed"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15" fill="none"><path d="M7.5 0C8.01777 0 8.4375 0.419733 8.4375 0.9375V6.5625H14.0625C14.5803 6.5625 15 6.98223 15 7.5C15 8.01777 14.5803 8.4375 14.0625 8.4375H8.4375V14.0625C8.4375 14.5803 8.01777 15 7.5 15C6.98223 15 6.5625 14.5803 6.5625 14.0625V8.4375H0.9375C0.419733 8.4375 0 8.01777 0 7.5C0 6.98223 0.419733 6.5625 0.9375 6.5625H6.5625V0.9375C6.5625 0.419733 6.98223 0 7.5 0Z" fill="#1F1F1F"></path></svg></span> <span class="elementor-accordion-icon-opened"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="2" viewBox="0 0 15 2" fill="none"><path d="M0 0.9375C0 0.419733 0.419733 0 0.9375 0H14.0625C14.5803 0 15 0.419733 15 0.9375C15 1.45527 14.5803 1.875 14.0625 1.875H0.9375C0.419733 1.875 0 1.45527 0 0.9375Z" fill="#EA5501"></path></svg></span> </span> <div class="tab-title">01. Can i use green energy in my home or business?</div> </div> </div> <div id="collapse_346719" class="accordion-collapse collapse show" aria-labelledby="heading346719" data-bs-parent="#rs_accordion_inner_33042"> <div class="accordion-body"> Randomised words which don’t look even slightly believable. If you are going passage of you need sure there anything. </div> </div> </div> <div class="accordion-item"> <div class="accordion-header" id="heading346720"> <div class="accordion-button collapsed" data-bs-toggle="collapse" data-bs-target="#collapse_346720" aria-controls="collapse_346720"> <span class="elementor-accordion-icon elementor-accordion-icon-right" aria-hidden="true"> <span class="elementor-accordion-icon-closed"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15" fill="none"><path d="M7.5 0C8.01777 0 8.4375 0.419733 8.4375 0.9375V6.5625H14.0625C14.5803 6.5625 15 6.98223 15 7.5C15 8.01777 14.5803 8.4375 14.0625 8.4375H8.4375V14.0625C8.4375 14.5803 8.01777 15 7.5 15C6.98223 15 6.5625 14.5803 6.5625 14.0625V8.4375H0.9375C0.419733 8.4375 0 8.01777 0 7.5C0 6.98223 0.419733 6.5625 0.9375 6.5625H6.5625V0.9375C6.5625 0.419733 6.98223 0 7.5 0Z" fill="#1F1F1F"></path></svg></span> <span class="elementor-accordion-icon-opened"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="2" viewBox="0 0 15 2" fill="none"><path d="M0 0.9375C0 0.419733 0.419733 0 0.9375 0H14.0625C14.5803 0 15 0.419733 15 0.9375C15 1.45527 14.5803 1.875 14.0625 1.875H0.9375C0.419733 1.875 0 1.45527 0 0.9375Z" fill="#EA5501"></path></svg></span> </span> <div class="tab-title">02. How do i get started with green energy?</div> </div> </div> <div id="collapse_346720" class="accordion-collapse collapse " aria-labelledby="heading346720" data-bs-parent="#rs_accordion_inner_33042"> <div class="accordion-body"> Randomised words which don’t look even slightly believable. If you are going passage of you need sure there anything. </div> </div> </div> <div class="accordion-item"> <div class="accordion-header" id="heading346721"> <div class="accordion-button collapsed" data-bs-toggle="collapse" data-bs-target="#collapse_346721" aria-controls="collapse_346721"> <span class="elementor-accordion-icon elementor-accordion-icon-right" aria-hidden="true"> <span class="elementor-accordion-icon-closed"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15" fill="none"><path d="M7.5 0C8.01777 0 8.4375 0.419733 8.4375 0.9375V6.5625H14.0625C14.5803 6.5625 15 6.98223 15 7.5C15 8.01777 14.5803 8.4375 14.0625 8.4375H8.4375V14.0625C8.4375 14.5803 8.01777 15 7.5 15C6.98223 15 6.5625 14.5803 6.5625 14.0625V8.4375H0.9375C0.419733 8.4375 0 8.01777 0 7.5C0 6.98223 0.419733 6.5625 0.9375 6.5625H6.5625V0.9375C6.5625 0.419733 6.98223 0 7.5 0Z" fill="#1F1F1F"></path></svg></span> <span class="elementor-accordion-icon-opened"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="2" viewBox="0 0 15 2" fill="none"><path d="M0 0.9375C0 0.419733 0.419733 0 0.9375 0H14.0625C14.5803 0 15 0.419733 15 0.9375C15 1.45527 14.5803 1.875 14.0625 1.875H0.9375C0.419733 1.875 0 1.45527 0 0.9375Z" fill="#EA5501"></path></svg></span> </span> <div class="tab-title">03. Green energy reliable during bad weather?</div> </div> </div> <div id="collapse_346721" class="accordion-collapse collapse " aria-labelledby="heading346721" data-bs-parent="#rs_accordion_inner_33042"> <div class="accordion-body"> Randomised words which don’t look even slightly believable. If you are going passage of you need sure there anything. </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-39a16276 e-con-full hidden e-flex e-con e-parent" data-id="39a16276" data-element_type="container"> <div class="no-position rs-sticky-default elementor-element elementor-element-12f51a1 e-flex e-con-boxed e-con e-child" data-id="12f51a1" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-1cb8db4f elementor-widget__width-initial elementor-widget elementor-widget-rs-heading" data-id="1cb8db4f" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 center subtitle-gradient-no"> <div class="title-inner"> <span class="sub-text"> Team Members </span> <h2 class="title rs-split-text-disable ">Best Consulting Experts</h2> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-4f6c1d39 e-flex e-con-boxed e-con e-child" data-id="4f6c1d39" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-b0f07e1 elementor-widget elementor-widget-rsteam" data-id="b0f07e1" data-element_type="widget" data-widget_type="rsteam.default"> <div class="elementor-widget-container"> <div class="rs-team-grid rs-team team-grid-style1 rsaddon_pro_box "> <div class="row"> <div class="col-lg-4 col-md-6 col-xs-1 team-style-column"> <div class="team-item"> <div class="team-inner-wrap"> <div class="image-wrap"> <a href="https://www.flozen.media/clients/refocc-org/"> <img loading="lazy" decoding="async" width="1080" height="826" src="https://www.flozen.media/wp-content/uploads/2024/09/374399763_316494697716133_2051472823514651843_n-e1727341124255.jpg" class="attachment-industrie_team-member-grid size-industrie_team-member-grid wp-post-image" alt="" srcset="https://www.flozen.media/wp-content/uploads/2024/09/374399763_316494697716133_2051472823514651843_n-e1727341124255.jpg 1080w, https://www.flozen.media/wp-content/uploads/2024/09/374399763_316494697716133_2051472823514651843_n-e1727341124255-300x229.jpg 300w, https://www.flozen.media/wp-content/uploads/2024/09/374399763_316494697716133_2051472823514651843_n-e1727341124255-1024x783.jpg 1024w, https://www.flozen.media/wp-content/uploads/2024/09/374399763_316494697716133_2051472823514651843_n-e1727341124255-768x587.jpg 768w" sizes="(max-width: 1080px) 100vw, 1080px" /> </a> </div> <div class="team-content"> <h4 class="team-name"> <a href="https://www.flozen.media/clients/refocc-org/"> refocc.org </a> </h4> <span class="team-title">Microsoft 365 Mails</span> </div> </div> </div> </div> <!-- Hidden PupupBox Text --> <div id="rs_popupBox4_2165796" class="rspopup_style1 mfp-with-anim mfp-hide" > <div class="row"> <div class="col-md-5"> <div class="rsteam_img"> <img loading="lazy" decoding="async" width="1080" height="826" src="https://www.flozen.media/wp-content/uploads/2024/09/374399763_316494697716133_2051472823514651843_n-e1727341124255.jpg" class="attachment-industrie_team-member-grid size-industrie_team-member-grid wp-post-image" alt="" srcset="https://www.flozen.media/wp-content/uploads/2024/09/374399763_316494697716133_2051472823514651843_n-e1727341124255.jpg 1080w, https://www.flozen.media/wp-content/uploads/2024/09/374399763_316494697716133_2051472823514651843_n-e1727341124255-300x229.jpg 300w, https://www.flozen.media/wp-content/uploads/2024/09/374399763_316494697716133_2051472823514651843_n-e1727341124255-1024x783.jpg 1024w, https://www.flozen.media/wp-content/uploads/2024/09/374399763_316494697716133_2051472823514651843_n-e1727341124255-768x587.jpg 768w" sizes="(max-width: 1080px) 100vw, 1080px" /> </div> </div> <div class="col-md-7"> <div class="rsteam_content"> <div class="team-content"> <div class="team-heading"> <h3 class="team-name" >refocc.org</h3> <span class="team-title" >Microsoft 365 Mails</span> </div> </div> </div> </div> </div> <style> </style> </div> <div class="col-lg-4 col-md-6 col-xs-1 team-style-column"> <div class="team-item"> <div class="team-inner-wrap"> <div class="image-wrap"> <a href="https://www.flozen.media/clients/grand-freightx-shipping-llc/"> <img loading="lazy" decoding="async" width="239" height="171" src="https://www.flozen.media/wp-content/uploads/2024/06/grand-freight-logo-1.png" class="attachment-industrie_team-member-grid size-industrie_team-member-grid wp-post-image" alt="" /> </a> </div> <div class="team-content"> <h4 class="team-name"> <a href="https://www.flozen.media/clients/grand-freightx-shipping-llc/"> Grand FreightX Shipping LLC </a> </h4> <span class="team-title">Microsoft 365 Mails</span> </div> </div> </div> </div> <!-- Hidden PupupBox Text --> <div id="rs_popupBox4_2873248" class="rspopup_style1 mfp-with-anim mfp-hide" > <div class="row"> <div class="col-md-5"> <div class="rsteam_img"> <img loading="lazy" decoding="async" width="239" height="171" src="https://www.flozen.media/wp-content/uploads/2024/06/grand-freight-logo-1.png" class="attachment-industrie_team-member-grid size-industrie_team-member-grid wp-post-image" alt="" /> </div> </div> <div class="col-md-7"> <div class="rsteam_content"> <div class="team-content"> <div class="team-heading"> <h3 class="team-name" >Grand FreightX Shipping LLC</h3> <span class="team-title" >Microsoft 365 Mails</span> </div> </div> </div> </div> </div> <style> </style> </div> <div class="col-lg-4 col-md-6 col-xs-1 team-style-column"> <div class="team-item"> <div class="team-inner-wrap"> <div class="image-wrap"> <a href="https://www.flozen.media/clients/alexandra-stan/"> <img loading="lazy" decoding="async" width="1934" height="1934" src="https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo.png" class="attachment-industrie_team-member-grid size-industrie_team-member-grid wp-post-image" alt="" srcset="https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo.png 1934w, https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo-300x300.png 300w, https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo-1024x1024.png 1024w, https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo-150x150.png 150w, https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo-768x768.png 768w, https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo-500x500.png 500w, https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo-1536x1536.png 1536w" sizes="(max-width: 1934px) 100vw, 1934px" /> </a> <div class="social-icons"> <a href="#" class="social-icon"><i class="ri-facebook-fill"></i></a> <a href="#" class="social-icon"><i class="ri-twitter-x-line"></i></a><a href="#" class="social-icon"><i class="ri-linkedin-fill"></i></a> </div> </div> <div class="team-content"> <h4 class="team-name"> <a href="https://www.flozen.media/clients/alexandra-stan/"> Kudu Club </a> </h4> <span class="team-title">Management Officer</span> </div> </div> </div> </div> <!-- Hidden PupupBox Text --> <div id="rs_popupBox4_2697873" class="rspopup_style1 mfp-with-anim mfp-hide" > <div class="row"> <div class="col-md-5"> <div class="rsteam_img"> <img loading="lazy" decoding="async" width="1934" height="1934" src="https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo.png" class="attachment-industrie_team-member-grid size-industrie_team-member-grid wp-post-image" alt="" srcset="https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo.png 1934w, https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo-300x300.png 300w, https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo-1024x1024.png 1024w, https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo-150x150.png 150w, https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo-768x768.png 768w, https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo-500x500.png 500w, https://www.flozen.media/wp-content/uploads/2024/07/kudu-club-logo-1536x1536.png 1536w" sizes="(max-width: 1934px) 100vw, 1934px" /> </div> </div> <div class="col-md-7"> <div class="rsteam_content"> <div class="team-content"> <div class="team-heading"> <h3 class="team-name" >Kudu Club</h3> <span class="team-title" >Management Officer</span> </div> <div class="team-des" > <img src="https://www.flozen.media/wp-content/uploads/2024/04/footer-icon-2.png" alt="image" /> <img src="https://www.flozen.media/wp-content/uploads/2024/05/team_5.jpg" alt="image" /> <h2>Hi, I'm Alexandra Stan</h2> Management Officer Adipiscing elit, sed do eiusm consectetur aonsectetur sed do eiusm od tempor adipiscing elit, sed do eiusm od tempor. Consectetur adipiscing elit, sed do eiusm onsectetur adipiscing elit, sed do eiusm od tempor incididunt ut labore.sed do eiusm onsectetur adipiscing elit. <!-- Style 1 Start --> Experience: 10 years Email: <a href="mailto:info@gmail.com">info@gmail.com</a> Phone: <a href="tel:+91123456789">+91 123 456 789</a> Visit Website: yourdomain.com <!-- Style 1 End --> <ul> <li><a href="#"> </a></li> <li><a href="#"> </a></li> <li><a href="#"> </a></li> <li><a href="#"> </a></li> </ul> <h4>Biography​</h4> Bring to the table win-win survival strategies to ensure proactive domination. At the end of the day, going forward, a new normal that has evolved from generation X is on the runway heading towards a streamlined cloud solution. User generated content in real-time will have multiple touchpoints for offshoring capitalize on low hanging fruit to identify. 00 + Years Experience 00 % Customer Satisfied 00 + Complete Project <h4>Working Skills</h4> Bring to the table win-win survival strategies to ensure proactive domination. At the end of the day, going forward, a new normal that has evolved from generation. Business Consultant Market Strategy Business Strategy Business Solution <h4>Quick Contact</h4> Feel free to contact us through Twitter or Facebook if you prefer! <form action="/wordpress/bandco/wp-admin/admin-ajax.php#wpcf7-f4703-o1" method="post" novalidate="novalidate" aria-label="Contact form" data-status="init"><input name="_wpcf7" type="hidden" value="4703" /> <input name="_wpcf7_version" type="hidden" value="5.9.5" /> <input name="_wpcf7_locale" type="hidden" value="en_US" /> <input name="_wpcf7_unit_tag" type="hidden" value="wpcf7-f4703-o1" /> <input name="_wpcf7_container_post" type="hidden" value="0" /> <input name="_wpcf7_posted_data_hash" type="hidden" value="" /></form><input autocomplete="name" name="your-name" size="40" type="text" value="" placeholder="Name" aria-required="true" aria-invalid="false" /> <input autocomplete="email" name="your-email" size="40" type="email" value="" placeholder="Email" aria-required="true" aria-invalid="false" /> <input name="phone" size="40" type="text" value="" placeholder="Phone" aria-required="true" aria-invalid="false" /> <textarea cols="40" name="your-message" rows="10" placeholder="Your Massage..." aria-invalid="false"></textarea> <input type="submit" value="Submit now" /> </div> <div class="rs-social-icons"> <div class="social-icons1"> <a href="#" class="social-icon"><i class="ri-facebook-fill"></i></a> <a href="#" class="social-icon"><i class="ri-twitter-x-line"></i></a><a href="#" class="social-icon"><i class="ri-linkedin-fill"></i></a> </div> </div> </div> </div> </div> </div> <style> </style> </div> </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-cde43ef e-flex e-con-boxed e-con e-child" data-id="cde43ef" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-c217367 e-con-full e-flex e-con e-child" data-id="c217367" data-element_type="container"> <div class="elementor-element elementor-element-3a5571d elementor-widget__width-inherit elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-rs-heading" data-id="3a5571d" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style2 center subtitle-gradient-no"> <div class="title-inner"> <span class="sub-text"> TECHNOLOGY PARTNERS </span> <div class="title rs-split-text-enable split-in-right"><h4 style="color: white">Crafting compelling digital experiences that captivate audiences and drive meaningful connections.</h4></div> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-df255fa elementor-widget elementor-widget-rs-logo" data-id="df255fa" data-element_type="widget" data-widget_type="rs-logo.default"> <div class="elementor-widget-container"> <div class="rsaddon-unique-slider rsaddons-logo-showcase "> <div id="rsaddon-slick-slider-130640" class="rs-addon-slider-130640 rs-addon-slider rsl_logo_style2"> <div class="grid-item "> <div class="rs-grid-figure"> <div class="logo-img ddddd"> <a> <img decoding="async" class="mains-logos rs-grid-img " src="https://www.flozen.media/wp-content/uploads/2024/06/w0.png" title="" alt=""> </a> </div> <span class="left-bottom-shape"></span> </div> </div> <div class="grid-item "> <div class="rs-grid-figure"> <div class="logo-img ddddd"> <a> <img decoding="async" class="mains-logos rs-grid-img " src="https://www.flozen.media/wp-content/uploads/2024/06/w20.png" title="" alt=""> </a> </div> <span class="left-bottom-shape"></span> </div> </div> <div class="grid-item "> <div class="rs-grid-figure"> <div class="logo-img ddddd"> <a> <img decoding="async" class="mains-logos rs-grid-img " src="https://www.flozen.media/wp-content/uploads/2024/06/w30.png" title="" alt=""> </a> </div> <span class="left-bottom-shape"></span> </div> </div> <div class="grid-item "> <div class="rs-grid-figure"> <div class="logo-img ddddd"> <a> <img decoding="async" class="mains-logos rs-grid-img " src="https://www.flozen.media/wp-content/uploads/2024/07/A0.png" title="" alt=""> </a> </div> <span class="left-bottom-shape"></span> </div> </div> <div class="grid-item "> <div class="rs-grid-figure"> <div class="logo-img ddddd"> <a> <img decoding="async" class="mains-logos rs-grid-img " src="https://www.flozen.media/wp-content/uploads/2024/07/z0-1.png" title="" alt=""> </a> </div> <span class="left-bottom-shape"></span> </div> </div> <div class="grid-item "> <div class="rs-grid-figure"> <div class="logo-img ddddd"> <a> <img decoding="async" class="mains-logos rs-grid-img " src="https://www.flozen.media/wp-content/uploads/2024/06/w40.png" title="" alt=""> </a> </div> <span class="left-bottom-shape"></span> </div> </div> <div class="grid-item "> <div class="rs-grid-figure"> <div class="logo-img ddddd"> <a> <img decoding="async" class="mains-logos rs-grid-img " src="https://www.flozen.media/wp-content/uploads/2024/06/w50.png" title="" alt=""> </a> </div> <span class="left-bottom-shape"></span> </div> </div> </div> <div class="rsaddon-slider-conf wpsisac-hide" data-conf="{"slidesToShow":"5","autoplaySpeed":3000,"interval":3000,"slidesToScroll":2,"slider_autoplay":"true","pauseOnHover":"false","sliderDots":"false","sliderNav":"false","infinite":"true","centerMode":"false","col_lg":"5","col_md":3,"col_sm":2,"col_xs":"1"}"></div> </div> <script type="text/javascript"> jQuery(document).ready(function(){ jQuery( '.rs-addon-slider-130640' ).each(function( index ) { var slider_id = jQuery(this).attr('id'); var slider_conf = jQuery.parseJSON( jQuery(this).closest('.rsaddon-unique-slider').find('.rsaddon-slider-conf').attr('data-conf')); if( typeof(slider_id) != 'undefined' && slider_id != '' ) { jQuery('#'+slider_id).not('.slick-initialized').slick({ slidesToShow : parseInt(slider_conf.col_lg), centerMode : (slider_conf.centerMode) == "true" ? true : false, dots : (slider_conf.sliderDots) == "true" ? true : false, arrows : (slider_conf.sliderNav) == "true" ? true : false, autoplay : (slider_conf.slider_autoplay) == "true" ? true : false, slidesToScroll : parseInt(slider_conf.slidesToScroll), centerPadding : '15px', autoplaySpeed : parseInt(slider_conf.autoplaySpeed), pauseOnHover : (slider_conf.pauseOnHover) == "true" ? true : false, loop : false, responsive: [ { breakpoint: 1200, settings: { slidesToShow: parseInt(slider_conf.col_md), } }, { breakpoint: 992, settings: { slidesToShow: parseInt(slider_conf.col_sm), } }, { breakpoint: 768, settings: { arrows: false, slidesToShow: parseInt(slider_conf.col_xs), } }, ] }); } }); }); </script> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-74ee2b6b e-con-full e-flex e-con e-parent" data-id="74ee2b6b" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="no-position rs-sticky-default elementor-element elementor-element-1ad817f6 e-flex e-con-boxed e-con e-child" data-id="1ad817f6" data-element_type="container"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-30857a7b e-con-full e-flex e-con e-child" data-id="30857a7b" data-element_type="container"> <div class="elementor-element elementor-element-1bd717ea elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-rs-heading" data-id="1bd717ea" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 center subtitle-gradient-no"> <div class="title-inner"> <span class="sub-text"> Testimonials </span> <h2 class="title rs-split-text-disable ">What People Say About Our Company</h2> </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-5200b841 e-flex e-con-boxed e-con e-child" data-id="5200b841" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-11c7e8fa elementor-widget elementor-widget-rs-testimonial-slider" data-id="11c7e8fa" data-element_type="widget" data-widget_type="rs-testimonial-slider.default"> <div class="elementor-widget-container"> <div class="rsaddon-unique-slider"> <div id="rsaddon-slick-slider-33641" class="addon-slider-33641 rs-addon-slider rs-testimonial-slider style1 slick-dots- "> <div class="grid-item"> <div class="testimonial-inner"> <div class="quote_icon"> <svg xmlns="http://www.w3.org/2000/svg" width="60" height="43" viewBox="0 0 60 43" fill="none"><path d="M57.3913 0H33.913C32.4746 0 31.3043 1.14482 31.3043 2.55199V24.2439C31.3043 25.6511 32.4746 26.7959 33.913 26.7959H45V42.1077C45 42.7082 45.805 42.9717 46.1739 42.4907L59.8696 24.6267C59.9542 24.5163 60 24.382 60 24.2439V2.55199C60 1.14482 58.8299 0 57.3913 0ZM58.6957 24.0312L46.3043 40.1939V26.1579C46.3043 25.8055 46.0124 25.5199 45.6522 25.5199H33.913C33.1938 25.5199 32.6087 24.9475 32.6087 24.2439V2.55199C32.6087 1.84841 33.1938 1.276 33.913 1.276H57.3913C58.1105 1.276 58.6957 1.84841 58.6957 2.55199V24.0312ZM26.087 0H2.6087C1.17026 0 0 1.14482 0 2.55199V24.2439C0 25.6511 1.17026 26.7959 2.6087 26.7959H13.6957V42.1079C13.6957 42.7049 14.5004 42.9721 14.8696 42.4907L28.5652 24.6267C28.6499 24.5163 28.6957 24.382 28.6957 24.2439V2.55199C28.6957 1.14482 27.5254 0 26.087 0ZM27.3913 24.0312L15 40.1939V26.1579C15 25.8055 14.708 25.5199 14.3478 25.5199H2.6087C1.88948 25.5199 1.30435 24.9475 1.30435 24.2439V2.55199C1.30435 1.84841 1.88948 1.276 2.6087 1.276H26.087C26.8062 1.276 27.3913 1.84841 27.3913 2.55199V24.0312Z" fill="#1F1F1F"></path></svg> </div> <div class="ratings"> <i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-half-line"></i> </div> <div class="description"> I truly appreciated your caliber and creativity, as I mentioned to Mr. Mansoor Babu. The logo you designed is 100% perfect and has fully met our requirements—we are genuinely happy with it! Your effort and the valuable time you dedicated to creating this masterpiece will not be forgotten. ❤️ </div> <div class="testi-card-bottom"> <div class="vendor-img"> <img decoding="async" src="https://www.flozen.media/wp-content/uploads/2024/04/footer-iconv-1.png" alt="Sadiq"> </div> <div class="content-part"> <h5 class="name">Sadiq</h5> <div class="testi-designation">Sportzyn, Dubai</div> </div> </div> </div> </div> <div class="grid-item"> <div class="testimonial-inner"> <div class="quote_icon"> <svg xmlns="http://www.w3.org/2000/svg" width="60" height="43" viewBox="0 0 60 43" fill="none"><path d="M57.3913 0H33.913C32.4746 0 31.3043 1.14482 31.3043 2.55199V24.2439C31.3043 25.6511 32.4746 26.7959 33.913 26.7959H45V42.1077C45 42.7082 45.805 42.9717 46.1739 42.4907L59.8696 24.6267C59.9542 24.5163 60 24.382 60 24.2439V2.55199C60 1.14482 58.8299 0 57.3913 0ZM58.6957 24.0312L46.3043 40.1939V26.1579C46.3043 25.8055 46.0124 25.5199 45.6522 25.5199H33.913C33.1938 25.5199 32.6087 24.9475 32.6087 24.2439V2.55199C32.6087 1.84841 33.1938 1.276 33.913 1.276H57.3913C58.1105 1.276 58.6957 1.84841 58.6957 2.55199V24.0312ZM26.087 0H2.6087C1.17026 0 0 1.14482 0 2.55199V24.2439C0 25.6511 1.17026 26.7959 2.6087 26.7959H13.6957V42.1079C13.6957 42.7049 14.5004 42.9721 14.8696 42.4907L28.5652 24.6267C28.6499 24.5163 28.6957 24.382 28.6957 24.2439V2.55199C28.6957 1.14482 27.5254 0 26.087 0ZM27.3913 24.0312L15 40.1939V26.1579C15 25.8055 14.708 25.5199 14.3478 25.5199H2.6087C1.88948 25.5199 1.30435 24.9475 1.30435 24.2439V2.55199C1.30435 1.84841 1.88948 1.276 2.6087 1.276H26.087C26.8062 1.276 27.3913 1.84841 27.3913 2.55199V24.0312Z" fill="#1F1F1F"></path></svg> </div> <div class="ratings"> <i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-half-line"></i> </div> <div class="description"> Fantastic support, services and great response with online tech help. Been with Flozen Media for over 6 years, and have already recommended to many local companies. I am glad to be hosted with a such professional and friendly host. I’ve been very impressed with the stability of the servers and especially with the support. </div> <div class="testi-card-bottom"> <div class="vendor-img"> <img decoding="async" src="https://www.flozen.media/wp-content/uploads/2024/04/footer-iconv-1.png" alt="Shafnas "> </div> <div class="content-part"> <h5 class="name">Shafnas </h5> <div class="testi-designation">Tech Zone Agency</div> </div> </div> </div> </div> <div class="grid-item"> <div class="testimonial-inner"> <div class="quote_icon"> <svg xmlns="http://www.w3.org/2000/svg" width="60" height="43" viewBox="0 0 60 43" fill="none"><path d="M57.3913 0H33.913C32.4746 0 31.3043 1.14482 31.3043 2.55199V24.2439C31.3043 25.6511 32.4746 26.7959 33.913 26.7959H45V42.1077C45 42.7082 45.805 42.9717 46.1739 42.4907L59.8696 24.6267C59.9542 24.5163 60 24.382 60 24.2439V2.55199C60 1.14482 58.8299 0 57.3913 0ZM58.6957 24.0312L46.3043 40.1939V26.1579C46.3043 25.8055 46.0124 25.5199 45.6522 25.5199H33.913C33.1938 25.5199 32.6087 24.9475 32.6087 24.2439V2.55199C32.6087 1.84841 33.1938 1.276 33.913 1.276H57.3913C58.1105 1.276 58.6957 1.84841 58.6957 2.55199V24.0312ZM26.087 0H2.6087C1.17026 0 0 1.14482 0 2.55199V24.2439C0 25.6511 1.17026 26.7959 2.6087 26.7959H13.6957V42.1079C13.6957 42.7049 14.5004 42.9721 14.8696 42.4907L28.5652 24.6267C28.6499 24.5163 28.6957 24.382 28.6957 24.2439V2.55199C28.6957 1.14482 27.5254 0 26.087 0ZM27.3913 24.0312L15 40.1939V26.1579C15 25.8055 14.708 25.5199 14.3478 25.5199H2.6087C1.88948 25.5199 1.30435 24.9475 1.30435 24.2439V2.55199C1.30435 1.84841 1.88948 1.276 2.6087 1.276H26.087C26.8062 1.276 27.3913 1.84841 27.3913 2.55199V24.0312Z" fill="#1F1F1F"></path></svg> </div> <div class="ratings"> <i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-half-line"></i> </div> <div class="description"> Flozen Media made our migration from Zoho Mail to Microsoft Basic seamless and efficient. With 75 users, we anticipated a complex transition, but their expert team handled everything flawlessly. The process was smooth, and their support was outstanding. Highly recommend them for their professionalism and expertise!” </div> <div class="testi-card-bottom"> <div class="vendor-img"> <img decoding="async" src="https://www.flozen.media/wp-content/uploads/2024/04/footer-iconv-1.png" alt="Sadiq"> </div> <div class="content-part"> <h5 class="name">Sadiq</h5> <div class="testi-designation">Grand FreightX Shipping LLC, Dubai</div> </div> </div> </div> </div> <div class="grid-item"> <div class="testimonial-inner"> <div class="quote_icon"> <svg xmlns="http://www.w3.org/2000/svg" width="60" height="43" viewBox="0 0 60 43" fill="none"><path d="M57.3913 0H33.913C32.4746 0 31.3043 1.14482 31.3043 2.55199V24.2439C31.3043 25.6511 32.4746 26.7959 33.913 26.7959H45V42.1077C45 42.7082 45.805 42.9717 46.1739 42.4907L59.8696 24.6267C59.9542 24.5163 60 24.382 60 24.2439V2.55199C60 1.14482 58.8299 0 57.3913 0ZM58.6957 24.0312L46.3043 40.1939V26.1579C46.3043 25.8055 46.0124 25.5199 45.6522 25.5199H33.913C33.1938 25.5199 32.6087 24.9475 32.6087 24.2439V2.55199C32.6087 1.84841 33.1938 1.276 33.913 1.276H57.3913C58.1105 1.276 58.6957 1.84841 58.6957 2.55199V24.0312ZM26.087 0H2.6087C1.17026 0 0 1.14482 0 2.55199V24.2439C0 25.6511 1.17026 26.7959 2.6087 26.7959H13.6957V42.1079C13.6957 42.7049 14.5004 42.9721 14.8696 42.4907L28.5652 24.6267C28.6499 24.5163 28.6957 24.382 28.6957 24.2439V2.55199C28.6957 1.14482 27.5254 0 26.087 0ZM27.3913 24.0312L15 40.1939V26.1579C15 25.8055 14.708 25.5199 14.3478 25.5199H2.6087C1.88948 25.5199 1.30435 24.9475 1.30435 24.2439V2.55199C1.30435 1.84841 1.88948 1.276 2.6087 1.276H26.087C26.8062 1.276 27.3913 1.84841 27.3913 2.55199V24.0312Z" fill="#1F1F1F"></path></svg> </div> <div class="ratings"> <i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-half-line"></i> </div> <div class="description"> The services provided by Flozen Media exceeded our every expectation. Great quality with the personalized touch. The customized website designed is just fantastic work. Our brand strategy went truly successful making us one of the best drinking water in GCC only because of the support of this Branding firm. </div> <div class="testi-card-bottom"> <div class="vendor-img"> <img decoding="async" src="https://www.flozen.media/wp-content/uploads/2024/04/footer-iconv-1.png" alt="Siraj"> </div> <div class="content-part"> <h5 class="name">Siraj</h5> <div class="testi-designation">Maizaki Trading LLC</div> </div> </div> </div> </div> <div class="grid-item"> <div class="testimonial-inner"> <div class="quote_icon"> <svg xmlns="http://www.w3.org/2000/svg" width="60" height="43" viewBox="0 0 60 43" fill="none"><path d="M57.3913 0H33.913C32.4746 0 31.3043 1.14482 31.3043 2.55199V24.2439C31.3043 25.6511 32.4746 26.7959 33.913 26.7959H45V42.1077C45 42.7082 45.805 42.9717 46.1739 42.4907L59.8696 24.6267C59.9542 24.5163 60 24.382 60 24.2439V2.55199C60 1.14482 58.8299 0 57.3913 0ZM58.6957 24.0312L46.3043 40.1939V26.1579C46.3043 25.8055 46.0124 25.5199 45.6522 25.5199H33.913C33.1938 25.5199 32.6087 24.9475 32.6087 24.2439V2.55199C32.6087 1.84841 33.1938 1.276 33.913 1.276H57.3913C58.1105 1.276 58.6957 1.84841 58.6957 2.55199V24.0312ZM26.087 0H2.6087C1.17026 0 0 1.14482 0 2.55199V24.2439C0 25.6511 1.17026 26.7959 2.6087 26.7959H13.6957V42.1079C13.6957 42.7049 14.5004 42.9721 14.8696 42.4907L28.5652 24.6267C28.6499 24.5163 28.6957 24.382 28.6957 24.2439V2.55199C28.6957 1.14482 27.5254 0 26.087 0ZM27.3913 24.0312L15 40.1939V26.1579C15 25.8055 14.708 25.5199 14.3478 25.5199H2.6087C1.88948 25.5199 1.30435 24.9475 1.30435 24.2439V2.55199C1.30435 1.84841 1.88948 1.276 2.6087 1.276H26.087C26.8062 1.276 27.3913 1.84841 27.3913 2.55199V24.0312Z" fill="#1F1F1F"></path></svg> </div> <div class="ratings"> <i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-half-line"></i> </div> <div class="description"> Flozen Media have been fantastic throughout the design and development of our web application. From the design stage right through to implementation and continuing assistance they have provided everything we needed. Very professional, motivated and dependable team who can really rely </div> <div class="testi-card-bottom"> <div class="vendor-img"> <img decoding="async" src="https://www.flozen.media/wp-content/uploads/2024/04/footer-iconv-1.png" alt="Saleem "> </div> <div class="content-part"> <h5 class="name">Saleem </h5> <div class="testi-designation">RARS Pattambi</div> </div> </div> </div> </div> <div class="grid-item"> <div class="testimonial-inner"> <div class="quote_icon"> <svg xmlns="http://www.w3.org/2000/svg" width="60" height="43" viewBox="0 0 60 43" fill="none"><path d="M57.3913 0H33.913C32.4746 0 31.3043 1.14482 31.3043 2.55199V24.2439C31.3043 25.6511 32.4746 26.7959 33.913 26.7959H45V42.1077C45 42.7082 45.805 42.9717 46.1739 42.4907L59.8696 24.6267C59.9542 24.5163 60 24.382 60 24.2439V2.55199C60 1.14482 58.8299 0 57.3913 0ZM58.6957 24.0312L46.3043 40.1939V26.1579C46.3043 25.8055 46.0124 25.5199 45.6522 25.5199H33.913C33.1938 25.5199 32.6087 24.9475 32.6087 24.2439V2.55199C32.6087 1.84841 33.1938 1.276 33.913 1.276H57.3913C58.1105 1.276 58.6957 1.84841 58.6957 2.55199V24.0312ZM26.087 0H2.6087C1.17026 0 0 1.14482 0 2.55199V24.2439C0 25.6511 1.17026 26.7959 2.6087 26.7959H13.6957V42.1079C13.6957 42.7049 14.5004 42.9721 14.8696 42.4907L28.5652 24.6267C28.6499 24.5163 28.6957 24.382 28.6957 24.2439V2.55199C28.6957 1.14482 27.5254 0 26.087 0ZM27.3913 24.0312L15 40.1939V26.1579C15 25.8055 14.708 25.5199 14.3478 25.5199H2.6087C1.88948 25.5199 1.30435 24.9475 1.30435 24.2439V2.55199C1.30435 1.84841 1.88948 1.276 2.6087 1.276H26.087C26.8062 1.276 27.3913 1.84841 27.3913 2.55199V24.0312Z" fill="#1F1F1F"></path></svg> </div> <div class="ratings"> <i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-fill"></i><i class="ri-star-half-line"></i> </div> <div class="description"> I have never seen a website designing company so dedicated to its customers! Flozen Media Services has by far the best Customer Support I have seen from a web host and development company, I would recommend Flozen Media Services to anyone who is looking for reliability, speed and Customer Service @ great prices </div> <div class="testi-card-bottom"> <div class="vendor-img"> <img decoding="async" src="https://www.flozen.media/wp-content/uploads/2024/04/footer-iconv-1.png" alt="Edwin "> </div> <div class="content-part"> <h5 class="name">Edwin </h5> <div class="testi-designation">UAR Decor</div> </div> </div> </div> </div> </div> <div class="rsaddon-slider-conf wpsisac-hide" data-conf="{"slidesToShow":3,"autoplaySpeed":3000,"interval":3000,"slidesToScroll":2,"slider_autoplay":"true","pauseOnHover":"false","sliderDots":"false","sliderNav":"true","infinite":"true","centerMode":"false","col_lg":3,"col_md":3,"col_sm":2,"col_xs":1,"slider_centers_pad_xl":"400px","slider_centers_pad_lg":"250px","slider_centers_pad_md":"100px","col_lg_2":3}"></div> </div> <script type="text/javascript"> jQuery(document).ready(function() { jQuery('.addon-slider-33641').each(function(index) { var slider_id = jQuery(this).attr('id'); var slider_conf = jQuery.parseJSON(jQuery(this).closest('.rsaddon-unique-slider').find('.rsaddon-slider-conf').attr('data-conf')); if (typeof(slider_id) != 'undefined' && slider_id != '') { jQuery('#' + slider_id).not('.slick-initialized').slick({ slidesToShow: parseInt(slider_conf.col_lg), centerMode: (slider_conf.centerMode) == "true" ? true : false, dots: (slider_conf.sliderDots) == "true" ? true : false, arrows: (slider_conf.sliderNav) == "true" ? true : false, autoplay: (slider_conf.slider_autoplay) == "true" ? true : false, slidesToScroll: parseInt(slider_conf.slidesToScroll), centerPadding: slider_conf.slider_centers_pad_xl, autoplaySpeed: parseInt(slider_conf.autoplaySpeed), pauseOnHover: (slider_conf.pauseOnHover) == "true" ? true : false, infinite: (slider_conf.infinite) == "true" ? true : false, responsive: [{ breakpoint: 1200, settings: { slidesToShow: parseInt(slider_conf.col_md), slidesToScroll: 1, } }, { breakpoint: 1199, settings: { slidesToShow: parseInt(slider_conf.col_lg_2), centerPadding: slider_conf.slider_centers_pad_xl, } }, { breakpoint: 992, settings: { slidesToShow: parseInt(slider_conf.col_sm), slidesToScroll: 1, centerPadding: slider_conf.slider_centers_pad_lg, } }, { breakpoint: 768, settings: { arrows: false, slidesToShow: parseInt(slider_conf.col_xs), slidesToScroll: 1, centerPadding: slider_conf.slider_centers_pad_md, } }, { breakpoint: 600, settings: { slidesToShow: 1, arrows: false, slidesToScroll: 1, centerPadding: '0px', } } ] }); } }); // Check if the slider element exists }); </script> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-545381d9 e-con-full hidden e-flex e-con e-parent" data-id="545381d9" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="no-position rs-sticky-default elementor-element elementor-element-489681d7 e-flex e-con-boxed e-con e-child" data-id="489681d7" data-element_type="container"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-21139392 e-con-full e-flex e-con e-child" data-id="21139392" data-element_type="container"> <div class="elementor-element elementor-element-478f72ff elementor-widget elementor-widget-rs-heading" data-id="478f72ff" 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"> Updates </span> <h2 class="title rs-split-text-disable ">Read Our Articles & Blog</h2> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-2c922182 e-con-full e-flex e-con e-child" data-id="2c922182" data-element_type="container"> <div class="elementor-element elementor-element-db5a2a8 elementor-widget elementor-widget-rs-button" data-id="db5a2a8" data-element_type="widget" data-widget_type="rs-button.default"> <div class="elementor-widget-container"> <div class="rs-button style1 unique-50022"> <a class="rs-btn" href="/blog/" > <span>View All Post <em> <svg xmlns="http://www.w3.org/2000/svg" width="23" height="15" viewBox="0 0 23 15" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 7.5C0 7.03976 0.367766 6.66667 0.821429 6.66667L20.1955 6.66667L15.0263 1.42259C14.7055 1.09715 14.7055 0.569515 15.0263 0.244079C15.3471 -0.0813589 15.8672 -0.0813589 16.188 0.244079L22.7594 6.91074C23.0802 7.23618 23.0802 7.76382 22.7594 8.08926L16.188 14.7559C15.8672 15.0814 15.3471 15.0814 15.0263 14.7559C14.7055 14.4305 14.7055 13.9028 15.0263 13.5774L20.1955 8.33333H0.821429C0.367766 8.33333 0 7.96024 0 7.5Z" fill="#F7C600"></path></svg> <svg xmlns="http://www.w3.org/2000/svg" width="23" height="15" viewBox="0 0 23 15" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 7.5C0 7.03976 0.367766 6.66667 0.821429 6.66667L20.1955 6.66667L15.0263 1.42259C14.7055 1.09715 14.7055 0.569515 15.0263 0.244079C15.3471 -0.0813589 15.8672 -0.0813589 16.188 0.244079L22.7594 6.91074C23.0802 7.23618 23.0802 7.76382 22.7594 8.08926L16.188 14.7559C15.8672 15.0814 15.3471 15.0814 15.0263 14.7559C14.7055 14.4305 14.7055 13.9028 15.0263 13.5774L20.1955 8.33333H0.821429C0.367766 8.33333 0 7.96024 0 7.5Z" fill="#F7C600"></path></svg> </em> </span> </a> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-1410a67e e-flex e-con-boxed e-con e-child" data-id="1410a67e" data-element_type="container"> <div class="e-con-inner"> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-72c534f0 e-con-full e-flex e-con e-parent" data-id="72c534f0" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="no-position rs-sticky-default elementor-element elementor-element-a4be9f3 e-flex e-con-boxed e-con e-child" data-id="a4be9f3" 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-52368225 e-con-full e-flex e-con e-child" data-id="52368225" data-element_type="container"> <div class="elementor-element elementor-element-73c3441f elementor-widget__width-initial elementor-widget elementor-widget-rs-heading" data-id="73c3441f" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 left subtitle-gradient-no"> <div class="title-inner"> <span class="sub-text"> Contact </span> <h2 class="title rs-split-text-disable ">Have a Project in Mind? Contact With Us</h2> </div> <div class="description"> <p>Let’s discuss your project, collaboration, or any innovative ideas you have. We’re eager to hear from you and explore how we can work together to achieve remarkable results</p> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-214e318d e-flex e-con-boxed e-con e-child" data-id="214e318d" data-element_type="container"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-58e5dfd4 e-con-full e-flex e-con e-child" data-id="58e5dfd4" data-element_type="container"> <div class="no-position rs-sticky-default elementor-element elementor-element-21e3293f e-grid e-con-boxed e-con e-child" data-id="21e3293f" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-4cdba43 elementor-widget elementor-widget-rs-iconbox" data-id="4cdba43" 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"> <div class="iconbox-title"> <h2 class="title"> Corporate Office </h2> </div> <p class=""> LR Towers, South Janatha Road, Palarivattom, Kochi </p> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-cca985f elementor-widget elementor-widget-rs-iconbox" data-id="cca985f" 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 "> <i aria-hidden="true" class=" flaticon-phone-call"></i> </div> <div class="text-area"> <div class="iconbox-title"> <h2 class="title"> Phone Number </h2> </div> <p class=""> +91 9995 148 188</p> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-1180169 elementor-widget elementor-widget-rs-iconbox" data-id="1180169" 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-fab-whatsapp" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg> </div> <div class="text-area"> <div class="iconbox-title"> <h2 class="title"> WhatsApp </h2> </div> <p class=""> +91 8891 64 33 00</p> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-1dd74c9c elementor-widget elementor-widget-rs-iconbox" data-id="1dd74c9c" 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 xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" fill="none"><path d="M0.590569 30H29.4095C29.5661 30 29.7163 29.9369 29.8271 29.8245C29.9378 29.7121 30 29.5597 30 29.4007V12.5559C29.997 12.4559 29.9726 12.3579 29.9283 12.2685C29.884 12.1792 29.8209 12.1008 29.7436 12.0388L28.1779 10.669V2.83051C28.1753 2.67336 28.1119 2.52356 28.0014 2.41338C27.891 2.30321 27.7423 2.24148 27.5875 2.24151H18.4097L16.4594 0.529288C16.0484 0.187052 15.5333 0 15.0017 0C14.4701 0 13.955 0.187052 13.5441 0.529288L11.5904 2.24151H2.41263C2.25776 2.24148 2.10909 2.30321 1.99863 2.41338C1.88818 2.52356 1.8248 2.67336 1.82215 2.83051V10.6862L0.273395 12.0251C0.187807 12.0834 0.117959 12.1625 0.0702202 12.2552C0.0224812 12.348 -0.00162984 12.4513 8.55304e-05 12.5559V29.4007C8.55304e-05 29.5597 0.062297 29.7121 0.173034 29.8245C0.283771 29.9369 0.433963 30 0.590569 30ZM9.38033 20.9355L1.19117 28.0583V13.8504L9.38033 20.9355ZM28.8055 13.8332V28.0994L20.6063 20.9389L28.8055 13.8332ZM19.486 21.5485L27.8 28.8014H2.15619L10.4837 21.5485H19.486ZM28.4917 12.5148L28.1779 12.7854V12.2614L28.4917 12.5148ZM14.31 1.45389C14.5083 1.29894 14.7515 1.21492 15.0017 1.21492C15.252 1.21492 15.4952 1.29894 15.6934 1.45389L16.591 2.24151H13.4125L14.31 1.45389ZM3.00311 3.42979H26.997V13.8093L19.459 20.3499H10.5208L2.98287 13.823C2.99644 13.7739 3.00326 13.7232 3.00311 13.6723V3.42979ZM1.82215 12.8196L1.48473 12.5388L1.82215 12.258V12.8196Z" fill="#EE5C03"></path><path d="M13.2998 16.7201C14.7914 17.1362 16.3818 16.9802 17.7673 16.2817C17.9069 16.2095 18.0125 16.084 18.0609 15.9328C18.1093 15.7815 18.0965 15.617 18.0254 15.4753C17.9542 15.3336 17.8306 15.2264 17.6815 15.1773C17.5325 15.1281 17.3704 15.1411 17.2308 15.2133C16.1244 15.7667 14.8603 15.9026 13.6642 15.5968C10.4284 14.3401 11.3023 10.8437 11.3293 10.6965C11.5891 9.70339 12.8679 7.183 15.682 7.39874C18.8436 7.64873 18.8335 10.6109 18.7998 11.2033C18.7289 12.4361 18.0304 13.371 17.4703 13.371H17.4501C17.4047 13.3739 17.3591 13.3668 17.3166 13.3502C17.2741 13.3337 17.2356 13.3081 17.2038 13.2751C17.0698 13.0413 17.013 12.7701 17.0418 12.5012L17.44 9.29588C17.44 9.26849 17.44 9.24452 17.44 9.22055C17.4415 9.07215 17.3887 8.92845 17.2919 8.81728C17.195 8.7061 17.061 8.63535 16.9156 8.61873C16.7703 8.60211 16.6241 8.64079 16.5053 8.7273C16.3865 8.8138 16.3035 8.94197 16.2725 9.08699C15.9262 8.80318 15.4991 8.63991 15.0544 8.62127H15.0038C13.8026 8.62127 12.4158 9.59039 12.1627 11.4225C12.0368 12.0696 12.1644 12.741 12.5185 13.2941C12.8726 13.8472 13.4252 14.2384 14.059 14.3846C14.4264 14.4475 14.8027 14.4315 15.1636 14.3377C15.5245 14.244 15.862 14.0744 16.1544 13.8401C16.2012 13.9164 16.2543 13.9886 16.313 14.0559C16.4488 14.2145 16.6161 14.3423 16.8039 14.4308C16.9917 14.5193 17.1958 14.5666 17.4028 14.5695C18.7087 14.6312 19.8728 13.1415 19.9807 11.2718C20.1123 8.92262 18.8639 6.44675 15.7697 6.20362C12.544 5.95021 10.6612 8.5699 10.1888 10.3917C9.23056 14.0764 11.6735 16.0968 13.2998 16.7201ZM15.8777 12.2683C15.7564 12.5814 15.5344 12.8438 15.2478 13.0128C14.9612 13.1819 14.6267 13.2478 14.2986 13.1997C13.9599 13.113 13.6684 12.8945 13.4871 12.5914C13.3059 12.2883 13.2495 11.925 13.3302 11.58C13.5124 10.2821 14.4403 9.80955 15.0173 9.80955H15.0409C15.5639 9.80955 15.9519 10.4431 15.9621 10.4568C15.9967 10.5185 16.0425 10.5731 16.097 10.6177L15.8777 12.2683Z" fill="#EE5C03"></path></svg> </div> <div class="text-area"> <div class="iconbox-title"> <h2 class="title"> Email Address </h2> </div> <p class=""> <a href="mail@www.flozen.media">mail@www.flozen.media</a></p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-a02e0a0 e-flex e-con-boxed e-con e-child" data-id="a02e0a0" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-79583eb elementor-widget elementor-widget-rs-heading" data-id="79583eb" 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 ">Get in Touch</h3> </div> <div class="description"> <p>Let’s start working together get in touch!</p> </div> </div> </div> </div> <div class="elementor-element elementor-element-4b474e00 elementor-widget elementor-widget-rs-cf7" data-id="4b474e00" data-element_type="widget" data-widget_type="rs-cf7.default"> <div class="elementor-widget-container"> <div class="wpcf7 no-js" id="wpcf7-f11302-p7766-o1" lang="en-US" dir="ltr" data-wpcf7-id="11302"> <div class="screen-reader-response"><p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul></div> <form action="/#wpcf7-f11302-p7766-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="11302" /> <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-f11302-p7766-o1" /> <input type="hidden" name="_wpcf7_container_post" value="7766" /> <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="phone-number"><input size="40" maxlength="400" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" autocomplete="phone" aria-required="true" aria-invalid="false" placeholder="Phone Number" value="" type="text" name="phone-number" /></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="work-inquiries"><input size="40" maxlength="400" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" placeholder="Work Inquiries" value="" type="text" name="work-inquiries" /></span> </p> </div> <div class="col-md-12"> <p><span class="wpcf7-form-control-wrap" data-name="your-message"><textarea cols="40" rows="10" maxlength="2000" class="wpcf7-form-control wpcf7-textarea" aria-invalid="false" placeholder="Brief project details..." name="your-message"></textarea></span> </p> <div class="form-btn-area"> <p><input class="wpcf7-form-control wpcf7-submit has-spinner" type="submit" value="Send Message" /><br /> <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.917644 11.179 0.67899C11.4176 0.440336 11.8046 0.440336 12.0432 0.67899L16.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"></path></svg> </p> </div> </div> </div><div class="wpcf7-response-output" aria-hidden="true"></div> </form> </div> </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="7771" class="elementor elementor-7771"> <div class="no-position rs-sticky-default elementor-element elementor-element-8bc2867 e-con-full e-flex e-con e-parent" data-id="8bc2867" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="no-position rs-sticky-default elementor-element elementor-element-12bfad0 e-flex e-con-boxed e-con e-child" data-id="12bfad0" data-element_type="container"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-13e19d1 e-flex e-con-boxed e-con e-child" data-id="13e19d1" 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-84623f0 e-con-full e-flex e-con e-child" data-id="84623f0" data-element_type="container"> <div class="elementor-element elementor-element-d960649 elementor-widget elementor-widget-site-logo" data-id="d960649" 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-04b7645 e-con-full e-flex e-con e-child" data-id="04b7645" data-element_type="container"> <div class="no-position rs-sticky-default elementor-element elementor-element-afd5c6b e-con-full e-flex e-con e-child" data-id="afd5c6b" data-element_type="container"> <div class="elementor-element elementor-element-fc1c1ea elementor-widget elementor-widget-text-editor" data-id="fc1c1ea" 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-3a5f40d e-con-full e-flex e-con e-child" data-id="3a5f40d" data-element_type="container"> <div class="elementor-element elementor-element-585b593 elementor-widget elementor-widget-rs-newsletter" data-id="585b593" 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-552f286 e-flex e-con-boxed e-con e-child" data-id="552f286" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-aa15c94 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="aa15c94" 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-d8dffc4 e-flex e-con-boxed e-con e-child" data-id="d8dffc4" 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-ed877b3 e-con-full e-flex e-con e-child" data-id="ed877b3" data-element_type="container"> <div class="elementor-element elementor-element-6075dea elementor-widget elementor-widget-heading" data-id="6075dea" 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-785631e elementor-widget elementor-widget-text-editor" data-id="785631e" 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-dd39fa1 elementor-widget elementor-widget-rs-button" data-id="dd39fa1" data-element_type="widget" data-widget_type="rs-button.default"> <div class="elementor-widget-container"> <div class="rs-button style1 unique-50173"> <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-e9be700 e-con-full e-flex e-con e-child" data-id="e9be700" data-element_type="container"> <div class="elementor-element elementor-element-d7c0835 elementor-widget__width-inherit elementor-widget elementor-widget-heading" data-id="d7c0835" 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-bc99130 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="bc99130" 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-bc99130" 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-51aff3b 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="51aff3b" 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-51aff3b" 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 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-139c26f e-con-full e-flex e-con e-child" data-id="139c26f" data-element_type="container"> <div class="elementor-element elementor-element-80b4c65 elementor-widget elementor-widget-heading" data-id="80b4c65" 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-acdb907 elementor-widget elementor-widget-text-editor" data-id="acdb907" 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-13e3e07 elementor-widget elementor-widget-heading" data-id="13e3e07" 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-e5ffecb rs-emails_bor elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="e5ffecb" 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-cebf167 e-con-full e-flex e-con e-child" data-id="cebf167" data-element_type="container"> <div class="elementor-element elementor-element-557cbaf elementor-widget elementor-widget-heading" data-id="557cbaf" 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-a90d1c6 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="a90d1c6" 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-4d75b16 elementor-widget elementor-widget-heading" data-id="4d75b16" 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-0856f7d e-grid-align-left elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="0856f7d" 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-dba78fd e-con-full e-flex e-con e-child" data-id="dba78fd" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-f28ab40 elementor-widget elementor-widget-copyright" data-id="f28ab40" 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-1818d26 elementor-widget elementor-widget-rs-iconbox" data-id="1818d26" 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> <link href="//fonts.googleapis.com/css?family=Inter:500%2C400%7CRoboto:400&display=swap" rel="stylesheet" property="stylesheet" media="all" type="text/css" > <script> if(typeof revslider_showDoubleJqueryError === "undefined") {function revslider_showDoubleJqueryError(sliderID) {console.log("You have some jquery.js library include that comes after the Slider Revolution files js inclusion.");console.log("To fix this, you can:");console.log("1. Set 'Module General Options' -> 'Advanced' -> 'jQuery & OutPut Filters' -> 'Put JS to Body' to on");console.log("2. Find the double jQuery.js inclusion and remove it");return "Double Included jQuery Library";}} </script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/dist/hooks.min.js?ver=dd5603f07f9220ed27f1" id="wp-hooks-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/dist/i18n.min.js?ver=c26c3dc7bed366793375" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); //# sourceURL=wp-i18n-js-after /* ]]> */ </script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.0.1" id="swv-js"></script> <script type="text/javascript" id="contact-form-7-js-before"> /* <![CDATA[ */ var wpcf7 = { "api": { "root": "https:\/\/www.flozen.media\/wp-json\/", "namespace": "contact-form-7\/v1" } }; //# sourceURL=contact-form-7-js-before /* ]]> */ </script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.0.1" id="contact-form-7-js"></script> <script type="text/javascript" src="//www.flozen.media/wp-content/plugins/revslider/sr6/assets/js/rbtools.min.js?ver=6.7.13" defer async id="tp-tools-js"></script> <script type="text/javascript" src="//www.flozen.media/wp-content/plugins/revslider/sr6/assets/js/rs6.min.js?ver=6.7.13" defer async id="revmin-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/popper.min.js?ver=201513434" id="popper-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/headding-title.js?ver=201513434" id="headding-title-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/slick.min.js?ver=201513434" id="slick-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/tilt.jquery.min.js?ver=201513434" id="js-tilt-view-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/jquery-ui.js?ver=201513434" id="jquery-ui-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/parallax-effect.min.js?ver=201513434" id="parallax-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/jQuery-plugin-progressbar.js?ver=201513434" id="jquery-plugin-progressbar-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/ddbeforeandafter.js?ver=201513434" id="ddbefore-and-after-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/imagesloaded.min.js?ver=5.0.0" id="imagesloaded-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/custom.js?ver=201513434" id="rsaddons-custom-pro-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/jquery.marquee.min.js?ver=201513434" id="rsaddons-marquee-js-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/jquery.marquee.min.js?ver=201513434" id="rsaddons-music-player-js-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/wp-whatsapp/assets/dist/js/njt-whatsapp.js?ver=3.6.9" id="nta-wa-libs-js"></script> <script type="text/javascript" id="nta-js-global-js-extra"> /* <![CDATA[ */ var njt_wa_global = {"ajax_url":"https://www.flozen.media/wp-admin/admin-ajax.php","nonce":"c60caffd34","defaultAvatarSVG":"\u003Csvg width=\"48px\" height=\"48px\" class=\"nta-whatsapp-default-avatar\" version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003E\n \u003Cpath style=\"fill:#EDEDED;\" d=\"M0,512l35.31-128C12.359,344.276,0,300.138,0,254.234C0,114.759,114.759,0,255.117,0\n S512,114.759,512,254.234S395.476,512,255.117,512c-44.138,0-86.51-14.124-124.469-35.31L0,512z\"/\u003E\n \u003Cpath style=\"fill:#55CD6C;\" d=\"M137.71,430.786l7.945,4.414c32.662,20.303,70.621,32.662,110.345,32.662\n c115.641,0,211.862-96.221,211.862-213.628S371.641,44.138,255.117,44.138S44.138,137.71,44.138,254.234\n c0,40.607,11.476,80.331,32.662,113.876l5.297,7.945l-20.303,74.152L137.71,430.786z\"/\u003E\n \u003Cpath style=\"fill:#FEFEFE;\" d=\"M187.145,135.945l-16.772-0.883c-5.297,0-10.593,1.766-14.124,5.297\n c-7.945,7.062-21.186,20.303-24.717,37.959c-6.179,26.483,3.531,58.262,26.483,90.041s67.09,82.979,144.772,105.048\n c24.717,7.062,44.138,2.648,60.028-7.062c12.359-7.945,20.303-20.303,22.952-33.545l2.648-12.359\n c0.883-3.531-0.883-7.945-4.414-9.71l-55.614-25.6c-3.531-1.766-7.945-0.883-10.593,2.648l-22.069,28.248\n c-1.766,1.766-4.414,2.648-7.062,1.766c-15.007-5.297-65.324-26.483-92.69-79.448c-0.883-2.648-0.883-5.297,0.883-7.062\n l21.186-23.834c1.766-2.648,2.648-6.179,1.766-8.828l-25.6-57.379C193.324,138.593,190.676,135.945,187.145,135.945\"/\u003E\n \u003C/svg\u003E","defaultAvatarUrl":"https://www.flozen.media/wp-content/plugins/wp-whatsapp/assets/img/whatsapp_logo.svg","timezone":"+00:00","i18n":{"online":"Online","offline":"Offline"},"urlSettings":{"onDesktop":"api","onMobile":"api","openInNewTab":"ON"}}; //# sourceURL=nta-js-global-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/wp-whatsapp/assets/js/whatsapp-button.js?ver=3.6.9" id="nta-js-global-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/rs-header-footer-elementor/inc/js/frontend.js?ver=1.0.1" id="hfe-frontend-js-js"></script> <script type="text/javascript" id="nta-js-popup-js-extra"> /* <![CDATA[ */ var njt_wa = {"gdprStatus":"","accounts":[{"accountId":12466,"accountName":"Support (India)","avatar":"","number":"+918891643300","title":"","predefinedText":"","willBeBackText":"I will be back in [njwa_time_work]","dayOffsText":"I will be back soon","isAlwaysAvailable":"ON","daysOfWeekWorking":{"sunday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"monday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"tuesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"wednesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"thursday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"friday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"saturday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]}}},{"accountId":12467,"accountName":"Support (UAE)","avatar":"","number":"+971585907472","title":"","predefinedText":"","willBeBackText":"I will be back in [njwa_time_work]","dayOffsText":"I will be back soon","isAlwaysAvailable":"ON","daysOfWeekWorking":{"sunday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"monday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"tuesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"wednesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"thursday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"friday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"saturday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]}}}],"options":{"display":{"displayCondition":"showAllPage","includePages":[],"excludePages":[],"includePosts":[],"showOnDesktop":"ON","showOnMobile":"ON","time_symbols":"h:m"},"styles":{"title":"Start a Conversation","responseText":"The team typically replies in a few minutes.","description":"Hi! Click one of our member below to chat on \u003Cstrong\u003EWhatsApp\u003C/strong\u003E","backgroundColor":"#2db742","textColor":"#fff","titleSize":"18","accountNameSize":"14","descriptionTextSize":"12","regularTextSize":"11","scrollHeight":"500","isShowScroll":"OFF","isShowResponseText":"OFF","isShowPoweredBy":"ON","btnLabel":"Need Help? \u003Cstrong\u003EChat with us\u003C/strong\u003E","btnLabelWidth":"156","btnPosition":"right","btnLeftDistance":"30","btnRightDistance":"30","btnBottomDistance":"93","isShowBtnLabel":"ON","isShowGDPR":"OFF","gdprContent":"Please accept our \u003Ca href=\"https://ninjateam.org/privacy-policy/\"\u003Eprivacy policy\u003C/a\u003E first to start a conversation."},"analytics":{"enabledGoogle":"OFF","enabledFacebook":"OFF","enabledGoogleGA4":"OFF"}}}; //# sourceURL=nta-js-popup-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/wp-whatsapp/assets/js/whatsapp-popup.js?ver=3.6.9" id="nta-js-popup-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/custom.js?ver=201513434" id="rsaddons-offcanvas-js-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/jquery.countdownTimer.js?ver=201513434" id="rsaddons-countdowntimer-js-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=3.25.11" id="elementor-webpack-runtime-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.25.11" id="elementor-frontend-modules-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script> <script type="text/javascript" id="elementor-frontend-js-before"> /* <![CDATA[ */ var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselWrapperAriaLabel":"Carousel | Horizontal scrolling: Arrow Left & Right","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":true},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":true},"version":"3.25.11","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"e_swiper_latest":true,"e_nested_atomic_repeaters":true,"e_optimized_control_loading":true,"e_onboarding":true,"e_css_smooth_scroll":true,"home_screen":true,"nested-elements":true,"editor_v2":true,"link-in-bio":true,"floating-buttons":true},"urls":{"assets":"https:\/\/www.flozen.media\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.flozen.media\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.flozen.media\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"17f6524338"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet","viewport_laptop"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":7766,"title":"Home%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":false}}; //# 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> <script id="rs-initialisation-scripts"> var tpj = jQuery; var revapi1; if(window.RS_MODULES === undefined) window.RS_MODULES = {}; if(RS_MODULES.modules === undefined) RS_MODULES.modules = {}; RS_MODULES.modules["revslider11"] = {once: RS_MODULES.modules["revslider11"]!==undefined ? RS_MODULES.modules["revslider11"].once : undefined, init:function() { window.revapi1 = window.revapi1===undefined || window.revapi1===null || window.revapi1.length===0 ? document.getElementById("rev_slider_1_1") : window.revapi1; if(window.revapi1 === null || window.revapi1 === undefined || window.revapi1.length==0) { window.revapi1initTry = window.revapi1initTry ===undefined ? 0 : window.revapi1initTry+1; if (window.revapi1initTry<20) requestAnimationFrame(function() {RS_MODULES.modules["revslider11"].init()}); return;} window.revapi1 = jQuery(window.revapi1); if(window.revapi1.revolution==undefined){ revslider_showDoubleJqueryError("rev_slider_1_1"); return;} revapi1.revolutionInit({ revapi:"revapi1", DPR:"dpr", sliderLayout:"fullwidth", visibilityLevels:"1240,1024,778,480", gridwidth:"1700,1024,778,480", gridheight:"820,768,660,600", lazyType:"smart", perspective:600, perspectiveType:"global", editorheight:"820,768,660,600", responsiveLevels:"1240,1024,778,480", progressBar:{disableProgressBar:true}, navigation: { onHoverStop:false }, viewPort: { global:true, globalDist:"-200px", enable:false }, fallbacks: { allowHTML5AutoPlayOnAndroid:true }, }); }} // End of RevInitScript if (window.RS_MODULES.checkMinimal!==undefined) { window.RS_MODULES.checkMinimal();}; </script> </body> </html>