/** * @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 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." /> <link rel="canonical" href="https://www.flozen.media/about-us/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="About Us - 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 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." /> <meta property="og:url" content="https://www.flozen.media/about-us/" /> <meta property="og:site_name" content="Flozen Media Technologies | Microsoft 365, Google Workspace, Business Emails, Web Hosting, Web Design, Logo & Branding, SEO & SMM in Kerala and UAE" /> <meta property="article:publisher" content="https://www.facebook.com/flozenmedia" /> <meta property="article:modified_time" content="2024-11-13T14:37:17+00:00" /> <meta property="og:image" content="https://demo.rstheme.com/wordpress/bandco/wp-content/uploads/2024/04/about-h2-1.png" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:site" content="@flozenmedia" /> <meta name="twitter:label1" content="Est. reading time" /> <meta name="twitter:data1" content="7 minutes" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://www.flozen.media/about-us/","url":"https://www.flozen.media/about-us/","name":"About Us - Flozen Media Technologies | Microsoft 365, Google Workspace, Business Emails, Web Hosting, Web Design, Logo & Branding, SEO & SMM in Kerala and UAE","isPartOf":{"@id":"https://www.flozen.media/#website"},"primaryImageOfPage":{"@id":"https://www.flozen.media/about-us/#primaryimage"},"image":{"@id":"https://www.flozen.media/about-us/#primaryimage"},"thumbnailUrl":"https://demo.rstheme.com/wordpress/bandco/wp-content/uploads/2024/04/about-h2-1.png","datePublished":"2024-04-26T09:19:32+00:00","dateModified":"2024-11-13T14:37:17+00:00","description":"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.","breadcrumb":{"@id":"https://www.flozen.media/about-us/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.flozen.media/about-us/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.flozen.media/about-us/#primaryimage","url":"https://demo.rstheme.com/wordpress/bandco/wp-content/uploads/2024/04/about-h2-1.png","contentUrl":"https://demo.rstheme.com/wordpress/bandco/wp-content/uploads/2024/04/about-h2-1.png"},{"@type":"BreadcrumbList","@id":"https://www.flozen.media/about-us/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.flozen.media/"},{"@type":"ListItem","position":2,"name":"About Us"}]},{"@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=1769121983' 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='e-animation-fadeInLeft-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInLeft.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='widget-image-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='widget-spacer-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/css/widget-spacer.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='elementor-post-3326-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-3326.css?ver=1734381696' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-7769-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-7769.css?ver=1766863521' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-8765-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-8765.css?ver=1766863521' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-2484-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-2484.css?ver=1766864330' type='text/css' media='all' /> <link rel='stylesheet' id='childstyle-css' href='https://www.flozen.media/wp-content/themes/bandco/style.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Inter%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CPoppins%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CSora%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=swap&ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/assets/fonts/flaticon_lifetec2.css?ver=1.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-rselement-icons-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/assets/fonts/flaticon_lifetec2.css?ver=1.0.1' type='text/css' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="https://www.flozen.media/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Organization", "name": "Flozen Media Technologies", "url": "https://flozenmedia.in", "aggregateRating": { "@type": "AggregateRating", "ratingValue": "5.0", "reviewCount": "6800" } } </script><meta name="generator" content="Elementor 3.25.11; features: e_font_icon_svg, additional_custom_breakpoints, e_optimized_control_loading; settings: css_print_method-external, google_font-enabled, font_display-swap"> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <meta name="generator" content="Powered by Slider Revolution 6.7.13 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <link rel="icon" href="https://www.flozen.media/wp-content/uploads/2024/06/cropped-fm-logo-256-32x32.png" sizes="32x32" /> <link rel="icon" href="https://www.flozen.media/wp-content/uploads/2024/06/cropped-fm-logo-256-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://www.flozen.media/wp-content/uploads/2024/06/cropped-fm-logo-256-180x180.png" /> <meta name="msapplication-TileImage" content="https://www.flozen.media/wp-content/uploads/2024/06/cropped-fm-logo-256-270x270.png" /> <script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> <style type="text/css" id="wp-custom-css"> .header-social .rs-social-menu ul li i{ color: #ffffff; line-height: 28px; } </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} /*# sourceURL=global-styles-inline-css */ </style> <link rel='stylesheet' id='widget-icon-list-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/custom-widget-icon-list.min.css?ver=1734352953' type='text/css' media='all' /> <link rel='stylesheet' id='widget-divider-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/css/widget-divider.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='hfe-widgets-style-css' href='https://www.flozen.media/wp-content/plugins/rs-header-footer-elementor/inc/widgets-css/frontend.css?ver=1.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='e-animation-fadeInRight-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInRight.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='widget-text-editor-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/css/widget-text-editor.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='widget-social-icons-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='e-apple-webkit-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/custom-apple-webkit.min.css?ver=1734352953' type='text/css' media='all' /> <link rel='stylesheet' id='rs-plugin-settings-css' href='//www.flozen.media/wp-content/plugins/revslider/sr6/assets/css/rs6.css?ver=6.7.13' type='text/css' media='all' /> <style id='rs-plugin-settings-inline-css' type='text/css'> #rs-demo-id {} /*# sourceURL=rs-plugin-settings-inline-css */ </style> </head> <body class="wp-singular page-template page-template-elementor_header_footer page page-id-3326 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-3326"> <!--Preloader start here--> <div id="pre-load"> <div id="loader" class="loader"> <div class="loader-container"> <div class='loader-icon'><img src="https://www.flozen.media/wp-content/uploads/2024/06/fm-logo-256.png" alt="Flozen Media Technologies | Microsoft 365, Google Workspace, Business Emails, Web Hosting, Web Design, Logo & Branding, SEO & SMM in Kerala and UAE"></div> </div> </div> </div> <div class="rs-offcanvas-area"> <div class="rsoffwrap"></div> <!-- Canvas Menu start --> <nav class="right_menu_togle" data-lenis-prevent> <div class="rsoffwrap-close"> <i class="ri-close-line"></i> </div> <div class="rs-desk-off-content"></div> </nav> </div> <div id="page" class="hfeed site"> <header id="rs-header" class="single-header "> <div class="header-inner"> <div data-elementor-type="wp-post" data-elementor-id="7769" class="elementor elementor-7769"> <header class="no-position rs-sticky-default elementor-element elementor-element-cd91eff e-con-full e-flex e-con e-parent" data-id="cd91eff" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="no-position rs-sticky-default elementor-element elementor-element-c792529 e-flex e-con-boxed e-con e-child" data-id="c792529" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-cc6c073 e-con-full e-flex e-con e-child" data-id="cc6c073" data-element_type="container"> <div class="no-position rs-sticky-default elementor-element elementor-element-0661ac1 e-con-full e-flex e-con e-child" data-id="0661ac1" data-element_type="container"> <div class="elementor-element elementor-element-24581fd elementor-icon-list--layout-inline elementor-tablet-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="24581fd" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items elementor-inline-items"> <li class="elementor-icon-list-item elementor-inline-item"> <a href="mailto:support.bandco@gmail.com"> <span class="elementor-icon-list-icon"> <svg xmlns="http://www.w3.org/2000/svg" width="30" height="24" viewBox="0 0 30 24" fill="none"><path d="M25.5 0H4.5C3.30653 0 2.16193 0.474106 1.31802 1.31802C0.474106 2.16193 0 3.30653 0 4.5V19.5C0 20.6935 0.474106 21.8381 1.31802 22.682C2.16193 23.5259 3.30653 24 4.5 24H25.5C26.6935 24 27.8381 23.5259 28.682 22.682C29.5259 21.8381 30 20.6935 30 19.5V4.5C30 3.30653 29.5259 2.16193 28.682 1.31802C27.8381 0.474106 26.6935 0 25.5 0ZM4.5 3H25.5C25.8978 3 26.2794 3.15804 26.5607 3.43934C26.842 3.72064 27 4.10218 27 4.5L15 11.82L3 4.5C3 4.10218 3.15804 3.72064 3.43934 3.43934C3.72064 3.15804 4.10218 3 4.5 3ZM27 19.5C27 19.8978 26.842 20.2794 26.5607 20.5607C26.2794 20.842 25.8978 21 25.5 21H4.5C4.10218 21 3.72064 20.842 3.43934 20.5607C3.15804 20.2794 3 19.8978 3 19.5V7.92L14.22 14.775C14.448 14.9067 14.7067 14.976 14.97 14.976C15.2333 14.976 15.492 14.9067 15.72 14.775L27 7.92V19.5Z" fill="white"></path></svg> </span> <span class="elementor-icon-list-text">support.bandco@gmail.com</span> </a> </li> <li class="elementor-icon-list-item elementor-inline-item"> <span class="elementor-icon-list-icon"> <svg xmlns="http://www.w3.org/2000/svg" width="27" height="33" viewBox="0 0 27 33" fill="none"><path d="M26 13.5C26 23.2222 13.5 31.5556 13.5 31.5556C13.5 31.5556 1 23.2222 1 13.5C1 10.1848 2.31696 7.00537 4.66116 4.66116C7.00537 2.31696 10.1848 1 13.5 1C16.8152 1 19.9946 2.31696 22.3388 4.66116C24.683 7.00537 26 10.1848 26 13.5Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M13.4987 17.6667C15.7999 17.6667 17.6654 15.8012 17.6654 13.5C17.6654 11.1988 15.7999 9.33334 13.4987 9.33334C11.1975 9.33334 9.33203 11.1988 9.33203 13.5C9.33203 15.8012 11.1975 17.6667 13.4987 17.6667Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></svg> </span> <span class="elementor-icon-list-text">42 Mamnoun Street, UK</span> </li> </ul> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-3d9df83 e-con-full e-flex e-con e-child" data-id="3d9df83" data-element_type="container"> <div class="elementor-element elementor-element-5cce1c8 elementor-icon-list--layout-inline elementor-tablet-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="5cce1c8" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items elementor-inline-items"> <li class="elementor-icon-list-item elementor-inline-item"> <span class="elementor-icon-list-icon"> <svg xmlns="http://www.w3.org/2000/svg" id="Outline" viewBox="0 0 24 24" width="512" height="512"><path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22Z"></path><path d="M12,6a1,1,0,0,0-1,1v4.325L7.629,13.437a1,1,0,0,0,1.062,1.7l3.84-2.4A1,1,0,0,0,13,11.879V7A1,1,0,0,0,12,6Z"></path></svg> </span> <span class="elementor-icon-list-text">Mon - Sat 10.00 - 18.00</span> </li> </ul> </div> </div> <div class="elementor-element elementor-element-6e9265d header-social elementor-widget elementor-widget-rs-social-icons" data-id="6e9265d" data-element_type="widget" data-widget_type="rs-social-icons.default"> <div class="elementor-widget-container"> <div class="rs-social-menu style1 rs-social-sticky-diable"> <ul> <li><a href="#"> <svg aria-hidden="true" class="e-font-icon-svg e-fab-facebook-f" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"></path></svg> <span class="social-hover-text"></span> </a> </li> <li><a href="#"> <svg aria-hidden="true" class="e-font-icon-svg e-fab-x-twitter" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"></path></svg> <span class="social-hover-text"></span> </a> </li> <li><a href="#"> <svg aria-hidden="true" class="e-font-icon-svg e-fab-instagram" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg> <span class="social-hover-text"></span> </a> </li> <li><a href="#"> <svg aria-hidden="true" class="e-font-icon-svg e-fab-linkedin-in" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"></path></svg> <span class="social-hover-text"></span> </a> </li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-656b726 e-con-full main-header-box e-flex e-con e-child" data-id="656b726" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="no-position rs-sticky-default elementor-element elementor-element-a366c8b e-con-full e-flex e-con e-child" data-id="a366c8b" data-element_type="container"> <div class="elementor-element elementor-element-4f968f1 elementor-widget elementor-widget-site-logo" data-id="4f968f1" data-element_type="widget" data-settings="{"align":"left","logo_height":{"unit":"px","size":48,"sizes":[]},"logo_height_tablet":{"unit":"px","size":40,"sizes":[]},"logo_height_mobile":{"unit":"px","size":"","sizes":[]},"logo_height_laptop":{"unit":"px","size":34,"sizes":[]},"image_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_space":{"unit":"px","size":0,"sizes":[]},"caption_space_laptop":{"unit":"px","size":"","sizes":[]},"caption_space_tablet":{"unit":"px","size":"","sizes":[]},"caption_space_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="site-logo.default"> <div class="elementor-widget-container"> <div class="hfe-site-logo"> <a data-elementor-open-lightbox="" class='elementor-clickable' href="https://www.flozen.media"> <div class="hfe-site-logo-set"> <div class="hfe-site-logo-container"> <img class="rs___default-logo" src="https://www.flozen.media/wp-content/uploads/2024/06/logo-new2.png" alt="logo"/> <img class="rs___sticky-logo" src="https://www.flozen.media/wp-content/uploads/2024/06/logo-new2.png" alt="logo"/> </div> </div> </a> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-dfc07e6 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child" data-id="dfc07e6" data-element_type="container"> <div class="elementor-element elementor-element-5ea0b59 hfe-submenu-animation-slide_up elementor-widget-laptop__width-inherit hfe-nav-menu__align-left hfe-submenu-icon-arrow hfe-link-redirect-child hfe-nav-menu__breakpoint-tablet elementor-widget elementor-widget-navigation-menu" data-id="5ea0b59" data-element_type="widget" data-settings="{"padding_horizontal_menu_item":{"unit":"px","top":"40","right":"13","bottom":"40","left":"13","isLinked":false},"main_menu_border_radius":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"padding_horizontal_menu_item_laptop":{"unit":"px","top":"30","right":"10","bottom":"30","left":"10","isLinked":false},"location_area_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"menu_row_space":{"unit":"px","size":"","sizes":[]},"menu_row_space_laptop":{"unit":"px","size":"","sizes":[]},"menu_row_space_tablet":{"unit":"px","size":"","sizes":[]},"menu_row_space_mobile":{"unit":"px","size":"","sizes":[]},"main_menu_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"width_dropdown_item":{"unit":"px","size":"220","sizes":[]},"width_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"width_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"width_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item":{"unit":"px","size":15,"sizes":[]},"padding_vertical_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"distance_from_menu":{"unit":"px","size":"","sizes":[]},"distance_from_menu_laptop":{"unit":"px","size":"","sizes":[]},"distance_from_menu_tablet":{"unit":"px","size":"","sizes":[]},"distance_from_menu_mobile":{"unit":"px","size":"","sizes":[]},"toggle_size":{"unit":"px","size":"","sizes":[]},"toggle_size_laptop":{"unit":"px","size":"","sizes":[]},"toggle_size_tablet":{"unit":"px","size":"","sizes":[]},"toggle_size_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_width":{"unit":"px","size":"","sizes":[]},"toggle_border_width_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_width_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_width_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_radius":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="navigation-menu.default"> <div class="elementor-widget-container"> <style> .hfe-layout-vertical .left-arrow ul .menu-item:hover a:after { background: !important; } .hfe-layout-vertical .left-arrow ul .menu-item:hover a:before { border-left: 6px solid } </style> <div class="hfe-nav-menu hfe-layout-horizontal normal hfe-nav-menu-layout mega_columns1 horizontal hfe-pointer__none" data-layout="horizontal"> <div class="hfe-nav-menu__toggle elementor-clickable"> <div class="hfe-nav-menu-icon"> <svg aria-hidden="true" tabindex="0" class="e-font-icon-svg e-fas-align-justify" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"></path></svg> </div> </div> <nav class="hfe-nav-menu__layout-horizontal hfe-nav-menu__submenu-arrow no-separator no-arrow no-circle arrow icon-enable" data-toggle-icon="<svg aria-hidden="true" tabindex="0" class="e-font-icon-svg e-fas-align-justify" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"></path></svg>" data-close-icon="<svg aria-hidden="true" tabindex="0" class="e-font-icon-svg e-far-window-close" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"></path></svg>" data-full-width="yes"> <ul id="menu-1-5ea0b59" class="hfe-nav-menu"><li id="menu-item-10069" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home parent hfe-creative-menu"><a href="https://www.flozen.media/" class = "hfe-menu-item">Home<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-3334" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-3326 current_page_item 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-49748"> <a class="rs-btn" href="https://demo.rstheme.com/wordpress/bandco/contact/" > <span>Get a Quote <em> <i aria-hidden="true" class="ri-arrow-right-line"></i> <i aria-hidden="true" class="ri-arrow-right-line"></i> </em> </span> </a> </div> </div> </div> <div class="elementor-element elementor-element-1fbc4d4 elementor-widget__width-initial elementor-widget elementor-widget-rsoffcanvas" data-id="1fbc4d4" data-element_type="widget" data-widget_type="rsoffcanvas.default"> <div class="elementor-widget-container"> <div class="rs-offcanvas-area"> <ul> <li class="nav-link pr-20"> <a class="nav-expander"> <svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15" fill="none"><path d="M6 8.25H0.75C0.551088 8.25 0.360322 8.32902 0.21967 8.46967C0.0790176 8.61032 0 8.80109 0 9V14.25C0 14.4489 0.0790176 14.6397 0.21967 14.7803C0.360322 14.921 0.551088 15 0.75 15H6C6.19891 15 6.38968 14.921 6.53033 14.7803C6.67098 14.6397 6.75 14.4489 6.75 14.25V9C6.75 8.80109 6.67098 8.61032 6.53033 8.46967C6.38968 8.32902 6.19891 8.25 6 8.25ZM5.25 13.5H1.5V9.75H5.25V13.5ZM14.25 0H9C8.80109 0 8.61032 0.0790176 8.46967 0.21967C8.32902 0.360322 8.25 0.551088 8.25 0.75V6C8.25 6.19891 8.32902 6.38968 8.46967 6.53033C8.61032 6.67098 8.80109 6.75 9 6.75H14.25C14.4489 6.75 14.6397 6.67098 14.7803 6.53033C14.921 6.38968 15 6.19891 15 6V0.75C15 0.551088 14.921 0.360322 14.7803 0.21967C14.6397 0.0790176 14.4489 0 14.25 0ZM13.5 5.25H9.75V1.5H13.5V5.25ZM14.25 8.25H9C8.80109 8.25 8.61032 8.32902 8.46967 8.46967C8.32902 8.61032 8.25 8.80109 8.25 9V14.25C8.25 14.4489 8.32902 14.6397 8.46967 14.7803C8.61032 14.921 8.80109 15 9 15H14.25C14.4489 15 14.6397 14.921 14.7803 14.7803C14.921 14.6397 15 14.4489 15 14.25V9C15 8.80109 14.921 8.61032 14.7803 8.46967C14.6397 8.32902 14.4489 8.25 14.25 8.25ZM13.5 13.5H9.75V9.75H13.5V13.5ZM6 0H0.75C0.551088 0 0.360322 0.0790176 0.21967 0.21967C0.0790176 0.360322 0 0.551088 0 0.75V6C0 6.19891 0.0790176 6.38968 0.21967 6.53033C0.360322 6.67098 0.551088 6.75 0.75 6.75H6C6.19891 6.75 6.38968 6.67098 6.53033 6.53033C6.67098 6.38968 6.75 6.19891 6.75 6V0.75C6.75 0.551088 6.67098 0.360322 6.53033 0.21967C6.38968 0.0790176 6.19891 0 6 0ZM5.25 5.25H1.5V1.5H5.25V5.25Z" fill="#737373"></path></svg> </a> </li> </ul> </div> </div> </div> </div> </div> </header> <div class="no-position rs-sticky-default header-sticky-part elementor-element elementor-element-5a13066 e-con-full main-header-box e-flex e-con e-child" data-id="5a13066" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="no-position rs-sticky-default elementor-element elementor-element-9d44507 e-con-full e-flex e-con e-child" data-id="9d44507" data-element_type="container"> <div class="elementor-element elementor-element-86a95c8 elementor-widget elementor-widget-site-logo" data-id="86a95c8" data-element_type="widget" data-settings="{"align":"left","logo_height":{"unit":"px","size":48,"sizes":[]},"logo_height_tablet":{"unit":"px","size":40,"sizes":[]},"logo_height_mobile":{"unit":"px","size":"","sizes":[]},"logo_height_laptop":{"unit":"px","size":34,"sizes":[]},"image_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_space":{"unit":"px","size":0,"sizes":[]},"caption_space_laptop":{"unit":"px","size":"","sizes":[]},"caption_space_tablet":{"unit":"px","size":"","sizes":[]},"caption_space_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="site-logo.default"> <div class="elementor-widget-container"> <div class="hfe-site-logo"> <a data-elementor-open-lightbox="" class='elementor-clickable' href="https://www.flozen.media"> <div class="hfe-site-logo-set"> <div class="hfe-site-logo-container"> <img class="rs___default-logo" src="https://www.flozen.media/wp-content/uploads/2024/06/logo-new2.png" alt="logo"/> <img class="rs___sticky-logo" src="https://www.flozen.media/wp-content/uploads/2024/06/logo-new2.png" alt="logo"/> </div> </div> </a> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-68bf14e e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child" data-id="68bf14e" data-element_type="container"> <div class="elementor-element elementor-element-f8aabc2 hfe-submenu-animation-slide_up elementor-widget-laptop__width-inherit hfe-nav-menu__align-left hfe-submenu-icon-arrow hfe-link-redirect-child hfe-nav-menu__breakpoint-tablet elementor-widget elementor-widget-navigation-menu" data-id="f8aabc2" data-element_type="widget" data-settings="{"padding_horizontal_menu_item":{"unit":"px","top":"40","right":"13","bottom":"40","left":"13","isLinked":false},"main_menu_border_radius":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"padding_horizontal_menu_item_laptop":{"unit":"px","top":"30","right":"10","bottom":"30","left":"10","isLinked":false},"location_area_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"menu_row_space":{"unit":"px","size":"","sizes":[]},"menu_row_space_laptop":{"unit":"px","size":"","sizes":[]},"menu_row_space_tablet":{"unit":"px","size":"","sizes":[]},"menu_row_space_mobile":{"unit":"px","size":"","sizes":[]},"main_menu_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"width_dropdown_item":{"unit":"px","size":"220","sizes":[]},"width_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"width_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"width_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item":{"unit":"px","size":15,"sizes":[]},"padding_vertical_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"distance_from_menu":{"unit":"px","size":"","sizes":[]},"distance_from_menu_laptop":{"unit":"px","size":"","sizes":[]},"distance_from_menu_tablet":{"unit":"px","size":"","sizes":[]},"distance_from_menu_mobile":{"unit":"px","size":"","sizes":[]},"toggle_size":{"unit":"px","size":"","sizes":[]},"toggle_size_laptop":{"unit":"px","size":"","sizes":[]},"toggle_size_tablet":{"unit":"px","size":"","sizes":[]},"toggle_size_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_width":{"unit":"px","size":"","sizes":[]},"toggle_border_width_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_width_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_width_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_radius":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="navigation-menu.default"> <div class="elementor-widget-container"> <style> .hfe-layout-vertical .left-arrow ul .menu-item:hover a:after { background: !important; } .hfe-layout-vertical .left-arrow ul .menu-item:hover a:before { border-left: 6px solid } </style> <div class="hfe-nav-menu hfe-layout-horizontal normal hfe-nav-menu-layout mega_columns1 horizontal hfe-pointer__none" data-layout="horizontal"> <div class="hfe-nav-menu__toggle elementor-clickable"> <div class="hfe-nav-menu-icon"> <svg aria-hidden="true" tabindex="0" class="e-font-icon-svg e-fas-align-justify" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"></path></svg> </div> </div> <nav class="hfe-nav-menu__layout-horizontal hfe-nav-menu__submenu-arrow no-separator no-arrow no-circle arrow icon-enable" data-toggle-icon="<svg aria-hidden="true" tabindex="0" class="e-font-icon-svg e-fas-align-justify" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"></path></svg>" data-close-icon="<svg aria-hidden="true" tabindex="0" class="e-font-icon-svg e-far-window-close" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"></path></svg>" data-full-width="yes"> <ul id="menu-1-f8aabc2" class="hfe-nav-menu"><li id="menu-item-10069" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home parent hfe-creative-menu"><a href="https://www.flozen.media/" class = "hfe-menu-item">Home<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-3334" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-3326 current_page_item 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-44415"> <a class="rs-btn" href="https://demo.rstheme.com/wordpress/bandco/contact/" > <span>Get a Quote <em> <i aria-hidden="true" class="ri-arrow-right-line"></i> <i aria-hidden="true" class="ri-arrow-right-line"></i> </em> </span> </a> </div> </div> </div> <div class="elementor-element elementor-element-d0116e6 elementor-widget__width-initial elementor-widget elementor-widget-rsoffcanvas" data-id="d0116e6" data-element_type="widget" data-widget_type="rsoffcanvas.default"> <div class="elementor-widget-container"> <div class="rs-offcanvas-area"> <ul> <li class="nav-link pr-20"> <a class="nav-expander"> <svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15" fill="none"><path d="M6 8.25H0.75C0.551088 8.25 0.360322 8.32902 0.21967 8.46967C0.0790176 8.61032 0 8.80109 0 9V14.25C0 14.4489 0.0790176 14.6397 0.21967 14.7803C0.360322 14.921 0.551088 15 0.75 15H6C6.19891 15 6.38968 14.921 6.53033 14.7803C6.67098 14.6397 6.75 14.4489 6.75 14.25V9C6.75 8.80109 6.67098 8.61032 6.53033 8.46967C6.38968 8.32902 6.19891 8.25 6 8.25ZM5.25 13.5H1.5V9.75H5.25V13.5ZM14.25 0H9C8.80109 0 8.61032 0.0790176 8.46967 0.21967C8.32902 0.360322 8.25 0.551088 8.25 0.75V6C8.25 6.19891 8.32902 6.38968 8.46967 6.53033C8.61032 6.67098 8.80109 6.75 9 6.75H14.25C14.4489 6.75 14.6397 6.67098 14.7803 6.53033C14.921 6.38968 15 6.19891 15 6V0.75C15 0.551088 14.921 0.360322 14.7803 0.21967C14.6397 0.0790176 14.4489 0 14.25 0ZM13.5 5.25H9.75V1.5H13.5V5.25ZM14.25 8.25H9C8.80109 8.25 8.61032 8.32902 8.46967 8.46967C8.32902 8.61032 8.25 8.80109 8.25 9V14.25C8.25 14.4489 8.32902 14.6397 8.46967 14.7803C8.61032 14.921 8.80109 15 9 15H14.25C14.4489 15 14.6397 14.921 14.7803 14.7803C14.921 14.6397 15 14.4489 15 14.25V9C15 8.80109 14.921 8.61032 14.7803 8.46967C14.6397 8.32902 14.4489 8.25 14.25 8.25ZM13.5 13.5H9.75V9.75H13.5V13.5ZM6 0H0.75C0.551088 0 0.360322 0.0790176 0.21967 0.21967C0.0790176 0.360322 0 0.551088 0 0.75V6C0 6.19891 0.0790176 6.38968 0.21967 6.53033C0.360322 6.67098 0.551088 6.75 0.75 6.75H6C6.19891 6.75 6.38968 6.67098 6.53033 6.53033C6.67098 6.38968 6.75 6.19891 6.75 6V0.75C6.75 0.551088 6.67098 0.360322 6.53033 0.21967C6.38968 0.0790176 6.19891 0 6 0ZM5.25 5.25H1.5V1.5H5.25V5.25Z" fill="#737373"></path></svg> </a> </li> </ul> </div> </div> </div> </div> </div> </div> </div> <div id="rs-theme-toggle" class="rs_ld_btn" style="opacity: 0; display: none;"> <span class="d-block-light"><i class="ri-sun-line"></i></span> <span class="d-block-dark"><i class="ri-moon-line"></i></span> </div> </header> <div class='header-breadcamb-fixer'> <div data-elementor-type="wp-post" data-elementor-id="2484" class="elementor elementor-2484"> <div class="no-position rs-sticky-default elementor-element elementor-element-e2a177e e-flex e-con-boxed e-con e-parent" data-id="e2a177e" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-3342324 elementor-widget__width-initial elementor-widget elementor-widget-page-title" data-id="3342324" data-element_type="widget" data-settings="{"align":"left"}" data-widget_type="page-title.default"> <div class="elementor-widget-container"> <div class="hfe-page-title hfe-page-title-wrapper elementor-widget-heading"> <h1 class="elementor-heading-title elementor-size"> About Us </h1 > </div> </div> </div> <div class="elementor-element elementor-element-e2a74f5 elementor-widget elementor-widget-rs-breadcrumb" data-id="e2a74f5" data-element_type="widget" data-widget_type="rs-breadcrumb.default"> <div class="elementor-widget-container"> <div class="breadcrumb-area style3"> <div class="breadcrumbs-inner"> <!-- Breadcrumb NavXT 7.3.1 --> <span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to Flozen Media Technologies." href="https://www.flozen.media" class="home" ><span property="name">Flozen Media Technologies</span></a><meta property="position" content="1"></span> > <span property="itemListElement" typeof="ListItem"><span property="name" class="post post-page current-item">About Us</span><meta property="url" content="https://www.flozen.media/about-us/"><meta property="position" content="2"></span> </div> </div> </div> </div> <div class="elementor-element elementor-element-83d1927 elementor-absolute elementor-widget__width-initial elementor-widget elementor-widget-image" data-id="83d1927" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default"> <div class="elementor-widget-container"> <img fetchpriority="high" width="1016" height="684" src="https://www.flozen.media/wp-content/uploads/2024/04/page-bg.png" class="attachment-large size-large wp-image-2506" alt="" srcset="https://www.flozen.media/wp-content/uploads/2024/04/page-bg.png 1016w, https://www.flozen.media/wp-content/uploads/2024/04/page-bg-300x202.png 300w, https://www.flozen.media/wp-content/uploads/2024/04/page-bg-768x517.png 768w" sizes="(max-width: 1016px) 100vw, 1016px" /> </div> </div> </div> </div> </div> </div> <div data-elementor-type="wp-page" data-elementor-id="3326" class="elementor elementor-3326"> <div class="no-position rs-sticky-default elementor-element elementor-element-bf84d29 e-flex e-con-boxed e-con e-parent" data-id="bf84d29" 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-0f5e6a6 e-con-full e-flex e-con e-child" data-id="0f5e6a6" data-element_type="container"> <div class="elementor-element elementor-element-e5f85ea elementor-widget elementor-widget-rs-image" data-id="e5f85ea" data-element_type="widget" data-widget_type="rs-image.default"> <div class="elementor-widget-container"> <div class="rs-image no ruler_image_ ruler_position_ "> <img decoding="async" class="rs-multi-image reverse- blend_unset" src="https://demo.rstheme.com/wordpress/bandco/wp-content/uploads/2024/04/about-h2-1.png" alt="image"/> </div> </div> </div> <div class="elementor-element elementor-element-88c57ac elementor-widget__width-initial elementor-absolute elementor-invisible elementor-widget elementor-widget-rs-counter" data-id="88c57ac" data-element_type="widget" data-settings="{"_position":"absolute","_animation":"fadeInLeft"}" 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="15">00</span> <span class="prefix"> + </span> </div> <span class="title">Years of Experiences</span> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-46388c5 elementor-absolute elementor-hidden-mobile elementor-widget elementor-widget-image" data-id="46388c5" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default"> <div class="elementor-widget-container"> <img decoding="async" width="588" height="690" src="https://www.flozen.media/wp-content/uploads/2024/04/about-h2-2.png" class="attachment-large size-large wp-image-1772" alt="" srcset="https://www.flozen.media/wp-content/uploads/2024/04/about-h2-2.png 588w, https://www.flozen.media/wp-content/uploads/2024/04/about-h2-2-256x300.png 256w" sizes="(max-width: 588px) 100vw, 588px" /> </div> </div> <div class="elementor-element elementor-element-b32c9af elementor-absolute animated-slow elementor-invisible elementor-widget elementor-widget-image" data-id="b32c9af" data-element_type="widget" data-settings="{"_position":"absolute","_animation":"fadeInLeft"}" data-widget_type="image.default"> <div class="elementor-widget-container"> <img decoding="async" width="85" height="85" src="https://www.flozen.media/wp-content/uploads/2024/04/banner-shape-5.png" class="attachment-large size-large wp-image-175" alt="" /> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-f489a80 e-con-full e-flex e-con e-child" data-id="f489a80" data-element_type="container"> <div class="elementor-element elementor-element-2d43eed elementor-widget elementor-widget-rs-heading" data-id="2d43eed" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style1 subtitle-gradient-yes"> <div class="title-inner"> <span class="sub-text"> About Us </span> <h2 class="title rs-split-text-disable ">We're powerful agency for corporate business.</h2> </div> <div class="description"> <p>Flozen Media Techno Solutions LLP is an IT solutions company headquartered in Kochi, Kerala, India, with an operational office in the UAE. We provide a wide range of services empowering enterprises, mid size and small business to deliver high-performance with smart and innovative IT solutions. We offer a diverse range of services including web hosting, web designing, IT support, and consultancy services, Microsoft cloud solutions, migration and backup services, client and server infrastructure services, as well as SEO and SMM. Collaborating closely with our clients, we identify, plan, and implement solutions aimed at reducing the cost and complexity associated with IT systems while minimizing failure rates.</p><p> </p><p>Being one of the leading IT infrastructure Solution Companies in Kerala that offers end-to-end business-friendly technological infrastructure services and solutions that intelligently enhance your business operations, increase<br />productivity, and improve your bottom line. Flozen Media have been evolved as a trusted Value Added Partner for many number of satisfied customers across India and MENA Region.</p> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-2de1611 e-flex e-con-boxed e-con e-child" data-id="2de1611" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-57954e0 elementor-widget__width-auto elementor-widget elementor-widget-rs-button" data-id="57954e0" data-element_type="widget" data-widget_type="rs-button.default"> <div class="elementor-widget-container"> <div class="rs-button style1 unique-36137"> <a class="rs-btn" href="/contact/" > <span>Explore More <em> <svg xmlns="http://www.w3.org/2000/svg" width="17" height="12" viewBox="0 0 17 12" fill="none"><path d="M16.5303 6.53033C16.8232 6.23744 16.8232 5.76256 16.5303 5.46967L11.7574 0.696698C11.4645 0.403805 10.9896 0.403805 10.6967 0.696698C10.4038 0.989592 10.4038 1.46447 10.6967 1.75736L14.9393 6L10.6967 10.2426C10.4038 10.5355 10.4038 11.0104 10.6967 11.3033C10.9896 11.5962 11.4645 11.5962 11.7574 11.3033L16.5303 6.53033ZM6.55671e-08 6.75L16 6.75L16 5.25L-6.55671e-08 5.25L6.55671e-08 6.75Z" fill="white"></path></svg> <svg xmlns="http://www.w3.org/2000/svg" width="17" height="12" viewBox="0 0 17 12" fill="none"><path d="M16.5303 6.53033C16.8232 6.23744 16.8232 5.76256 16.5303 5.46967L11.7574 0.696698C11.4645 0.403805 10.9896 0.403805 10.6967 0.696698C10.4038 0.989592 10.4038 1.46447 10.6967 1.75736L14.9393 6L10.6967 10.2426C10.4038 10.5355 10.4038 11.0104 10.6967 11.3033C10.9896 11.5962 11.4645 11.5962 11.7574 11.3033L16.5303 6.53033ZM6.55671e-08 6.75L16 6.75L16 5.25L-6.55671e-08 5.25L6.55671e-08 6.75Z" fill="white"></path></svg> </em> </span> </a> </div> </div> </div> <div class="elementor-element elementor-element-ee90a12 elementor-widget elementor-widget-rs-contact-box" data-id="ee90a12" 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 boxstyle2"> <div class="address-icon icon_1 elementor-repeater-item-43ef448"> <svg xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewBox="0 0 20 19" fill="none"><path d="M15.332 0H4.66783C2.09392 0 0 2.09392 0 4.66783V10.8707C0 13.4446 2.09392 15.5386 4.66783 15.5386H9.55382L11.8607 17.8455C12.2741 18.2587 12.8225 18.4776 13.3822 18.4776C13.6601 18.4774 13.9407 18.4234 14.2087 18.3125C15.0166 17.9779 15.5387 17.1966 15.5387 16.3222V15.5341C18.0172 15.4258 20 13.3756 20 10.8707V4.66783C19.9999 2.09392 17.9059 0 15.332 0ZM17.8455 10.8706C17.8455 12.2564 16.7179 13.384 15.332 13.384H14.4614C13.8663 13.384 13.3842 13.8662 13.3842 14.4612L13.3835 16.3213L10.7617 13.6994C10.5596 13.4975 10.2857 13.384 9.99993 13.384H4.66783C3.28199 13.384 2.15438 12.2564 2.15438 10.8706V4.66783C2.15438 3.28199 3.28199 2.15438 4.66783 2.15438H15.332C16.7179 2.15438 17.8455 3.28199 17.8455 4.66783V10.8706Z" fill="url(#paint0_linear_2258_1672)"></path><path d="M10 8.8464C10.595 8.8464 11.0772 8.36412 11.0772 7.76921C11.0772 7.17429 10.595 6.69202 10 6.69202C9.40513 6.69202 8.92285 7.17429 8.92285 7.76921C8.92285 8.36412 9.40513 8.8464 10 8.8464Z" fill="url(#paint1_linear_2258_1672)"></path><path d="M5.53813 8.8464C6.13305 8.8464 6.61532 8.36412 6.61532 7.76921C6.61532 7.17429 6.13305 6.69202 5.53813 6.69202C4.94321 6.69202 4.46094 7.17429 4.46094 7.76921C4.46094 8.36412 4.94321 8.8464 5.53813 8.8464Z" fill="url(#paint2_linear_2258_1672)"></path><path d="M14.461 8.8464C15.0559 8.8464 15.5382 8.36412 15.5382 7.76921C15.5382 7.17429 15.0559 6.69202 14.461 6.69202C13.8661 6.69202 13.3838 7.17429 13.3838 7.76921C13.3838 8.36412 13.8661 8.8464 14.461 8.8464Z" fill="url(#paint3_linear_2258_1672)"></path><defs><linearGradient id="paint0_linear_2258_1672" x1="0" y1="0" x2="22.794" y2="4.58384" gradientUnits="userSpaceOnUse"><stop stop-color="#2920D2"></stop><stop offset="1" stop-color="#0B57CA"></stop></linearGradient><linearGradient id="paint1_linear_2258_1672" x1="8.92285" y1="6.69202" x2="11.3923" y2="7.15081" gradientUnits="userSpaceOnUse"><stop stop-color="#2920D2"></stop><stop offset="1" stop-color="#0B57CA"></stop></linearGradient><linearGradient id="paint2_linear_2258_1672" x1="4.46094" y1="6.69202" x2="6.93035" y2="7.15081" gradientUnits="userSpaceOnUse"><stop stop-color="#2920D2"></stop><stop offset="1" stop-color="#0B57CA"></stop></linearGradient><linearGradient id="paint3_linear_2258_1672" x1="13.3838" y1="6.69202" x2="15.8532" y2="7.15081" gradientUnits="userSpaceOnUse"><stop stop-color="#2920D2"></stop><stop offset="1" stop-color="#0B57CA"></stop></linearGradient></defs></svg> </div> <div class="address-text"> <div class="text"> <span class="label">Directly Message</span> <span class="des"> mail@www.flozen.media<br /> </span> </div> </div> <span class="des-right-icon"></span> </div> </div> <!-- Style 1 End --> </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-69dff16 e-flex e-con-boxed e-con e-child" data-id="69dff16" 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-32e436b e-con-full e-flex e-con e-child" data-id="32e436b" data-element_type="container"> <div class="elementor-element elementor-element-49eb542 elementor-widget__width-inherit elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-rs-heading" data-id="49eb542" 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-d964b4f elementor-widget elementor-widget-rs-logo" data-id="d964b4f" 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-141428" class="rs-addon-slider-141428 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-141428' ).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-d1d24c0 e-flex e-con-boxed e-con e-parent" data-id="d1d24c0" 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-8610c8c e-flex e-con-boxed e-con e-child" data-id="8610c8c" data-element_type="container"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-4b55fe3 e-con-full e-flex e-con e-child" data-id="4b55fe3" data-element_type="container"> <div class="elementor-element elementor-element-34e17df elementor-widget elementor-widget-rs-heading" data-id="34e17df" 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-4e46686 elementor-widget__width-auto elementor-widget-tablet__width-inherit elementor-widget elementor-widget-rs-button" data-id="4e46686" data-element_type="widget" data-widget_type="rs-button.default"> <div class="elementor-widget-container"> <div class="rs-button style1 unique-47572"> <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-671a683 e-con-full e-flex e-con e-child" data-id="671a683" data-element_type="container"> <div class="no-position rs-sticky-default elementor-element elementor-element-7da136a e-con-full e-flex e-con e-child" data-id="7da136a" data-element_type="container"> <div class="no-position rs-sticky-default elementor-element elementor-element-c695e3b e-con-full e-flex e-con e-child" data-id="c695e3b" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-8208887 elementor-widget elementor-widget-rs-service-grid" data-id="8208887" 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"> Website Designing & Development</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-c1d8010 e-con-full e-flex e-con e-child" data-id="c1d8010" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-2a53c8d elementor-widget elementor-widget-rs-service-grid" data-id="2a53c8d" 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"> Cloud Technology Services</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-dba2286 e-con-full e-flex e-con e-child" data-id="dba2286" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-e5c6762 elementor-widget elementor-widget-rs-service-grid" data-id="e5c6762" 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"> Logo Designing & <BR>Branding</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-8128e57 e-con-full e-flex e-con e-child" data-id="8128e57" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-ba01b7b elementor-widget elementor-widget-rs-service-grid" data-id="ba01b7b" 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"> Search Engine Optimization</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-90b1155 e-con-full e-flex e-con e-child" data-id="90b1155" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-2e9cfc0 elementor-widget elementor-widget-rs-service-grid" data-id="2e9cfc0" 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"> Domains, Web Hosting & Emails</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-c56d68f e-con-full e-flex e-con e-child" data-id="c56d68f" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-8457d4d elementor-widget elementor-widget-rs-service-grid" data-id="8457d4d" 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"> IT Business Consulting Services</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> <section class="no-position rs-sticky-default elementor-section elementor-top-section elementor-element elementor-element-2bfdbd380 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2bfdbd380" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-424aa1ff" data-id="424aa1ff" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7a86729f elementor-widget elementor-widget-spacer" data-id="7a86729f" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> </div> </section> <section class="no-position rs-sticky-default elementor-section elementor-top-section elementor-element elementor-element-83548a0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="83548a0" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4770d7" data-id="4770d7" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6ddce50c elementor-widget elementor-widget-heading" data-id="6ddce50c" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Our History</h2> </div> </div> </div> </div> </div> </section> <section class="no-position rs-sticky-default elementor-section elementor-top-section elementor-element elementor-element-7d51e053 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7d51e053" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3759cc6d" data-id="3759cc6d" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> </div> <footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo"> <div class='footer-width-fixer'> <div data-elementor-type="wp-post" data-elementor-id="8765" class="elementor elementor-8765"> <div class="no-position rs-sticky-default elementor-element elementor-element-bcddc31 e-flex e-con-boxed e-con e-child" data-id="bcddc31" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-50f67d0 elementor-absolute animated-slow elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-image" data-id="50f67d0" data-element_type="widget" data-settings="{"_position":"absolute","_animation":"fadeInLeft"}" data-widget_type="image.default"> <div class="elementor-widget-container"> <img width="104" height="113" src="https://www.flozen.media/wp-content/uploads/2024/06/footer-iconv-01.png" class="attachment-large size-large wp-image-8819" alt="" /> </div> </div> <div class="elementor-element elementor-element-15e227f elementor-absolute animated-slow elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-image" data-id="15e227f" data-element_type="widget" data-settings="{"_position":"absolute","_animation":"fadeInRight","_animation_delay":500}" data-widget_type="image.default"> <div class="elementor-widget-container"> <img width="197" height="200" src="https://www.flozen.media/wp-content/uploads/2024/06/about-shapdes.png" class="attachment-large size-large wp-image-8820" alt="" /> </div> </div> <div class="elementor-element elementor-element-739bc66 elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget elementor-widget-rs-heading" data-id="739bc66" data-element_type="widget" data-widget_type="rs-heading.default"> <div class="elementor-widget-container"> <div class="prelements-heading style2 center subtitle-gradient-yes"> <div class="title-inner"> <span class="sub-text"> Let's Do Something Great Together </span> <h2 class="title rs-split-text-enable split-in-rotate">We make creative solutions for business!</h2> </div> </div> </div> </div> <div class="elementor-element elementor-element-719a142 elementor-widget elementor-widget-rs-button" data-id="719a142" data-element_type="widget" data-widget_type="rs-button.default"> <div class="elementor-widget-container"> <div class="rs-button style1 unique-41203"> <a class="rs-btn" href="https://demo.rstheme.com/wordpress/bandco/contact/" > <span>Contact With Us <em> <svg xmlns="http://www.w3.org/2000/svg" width="17" height="12" viewBox="0 0 17 12" fill="none"><path d="M16.5303 6.53033C16.8232 6.23744 16.8232 5.76256 16.5303 5.46967L11.7574 0.696698C11.4645 0.403805 10.9896 0.403805 10.6967 0.696698C10.4038 0.989592 10.4038 1.46447 10.6967 1.75736L14.9393 6L10.6967 10.2426C10.4038 10.5355 10.4038 11.0104 10.6967 11.3033C10.9896 11.5962 11.4645 11.5962 11.7574 11.3033L16.5303 6.53033ZM6.55671e-08 6.75L16 6.75L16 5.25L-6.55671e-08 5.25L6.55671e-08 6.75Z" fill="white"></path></svg> <svg xmlns="http://www.w3.org/2000/svg" width="17" height="12" viewBox="0 0 17 12" fill="none"><path d="M16.5303 6.53033C16.8232 6.23744 16.8232 5.76256 16.5303 5.46967L11.7574 0.696698C11.4645 0.403805 10.9896 0.403805 10.6967 0.696698C10.4038 0.989592 10.4038 1.46447 10.6967 1.75736L14.9393 6L10.6967 10.2426C10.4038 10.5355 10.4038 11.0104 10.6967 11.3033C10.9896 11.5962 11.4645 11.5962 11.7574 11.3033L16.5303 6.53033ZM6.55671e-08 6.75L16 6.75L16 5.25L-6.55671e-08 5.25L6.55671e-08 6.75Z" fill="white"></path></svg> </em> </span> </a> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-1bbd3d9 e-con-full e-flex e-con e-parent" data-id="1bbd3d9" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="no-position rs-sticky-default elementor-element elementor-element-5da41b3 e-flex e-con-boxed e-con e-child" data-id="5da41b3" data-element_type="container"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-c1d6550 e-flex e-con-boxed e-con e-child" data-id="c1d6550" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-f40864d e-con-full e-flex e-con e-child" data-id="f40864d" data-element_type="container"> <div class="elementor-element elementor-element-7f32109 elementor-widget elementor-widget-site-logo" data-id="7f32109" data-element_type="widget" data-settings="{"align":"left","logo_height":{"unit":"px","size":50,"sizes":[]},"logo_height_tablet":{"unit":"px","size":"","sizes":[]},"logo_height_mobile":{"unit":"px","size":"","sizes":[]},"align_mobile":"center","logo_height_laptop":{"unit":"px","size":"","sizes":[]},"image_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_space":{"unit":"px","size":0,"sizes":[]},"caption_space_laptop":{"unit":"px","size":"","sizes":[]},"caption_space_tablet":{"unit":"px","size":"","sizes":[]},"caption_space_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="site-logo.default"> <div class="elementor-widget-container"> <div class="hfe-site-logo"> <a data-elementor-open-lightbox="" class='elementor-clickable' href="https://www.flozen.media"> <div class="hfe-site-logo-set"> <div class="hfe-site-logo-container"> <img class="hfe-site-logo-img elementor-animation-" src="https://www.flozen.media/wp-content/uploads/2024/06/logo-new2.png" alt="logo"/> </div> </div> </a> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-22c5dd5 e-con-full e-flex e-con e-child" data-id="22c5dd5" data-element_type="container"> <div class="no-position rs-sticky-default elementor-element elementor-element-38c282c e-con-full e-flex e-con e-child" data-id="38c282c" data-element_type="container"> <div class="elementor-element elementor-element-48bceaa elementor-widget elementor-widget-text-editor" data-id="48bceaa" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> Subscribe for the latest news. Stay updated on the latest trends. </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-5f4a445 e-con-full e-flex e-con e-child" data-id="5f4a445" data-element_type="container"> <div class="elementor-element elementor-element-3cb3445 elementor-widget elementor-widget-rs-newsletter" data-id="3cb3445" data-element_type="widget" data-widget_type="rs-newsletter.default"> <div class="elementor-widget-container"> <div class="rs-newsletter-form rs_newsletterstyle2 ">[mc4wp_form id=2408]</div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-1f7192f e-flex e-con-boxed e-con e-child" data-id="1f7192f" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-adc0e51 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="adc0e51" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-ddf596d e-flex e-con-boxed e-con e-child" data-id="ddf596d" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="e-con-inner"> <div class="no-position rs-sticky-default elementor-element elementor-element-0e6ed8f e-con-full e-flex e-con e-child" data-id="0e6ed8f" data-element_type="container"> <div class="elementor-element elementor-element-81456ca elementor-widget elementor-widget-heading" data-id="81456ca" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">About Company</h3> </div> </div> <div class="elementor-element elementor-element-0a763d0 elementor-widget elementor-widget-text-editor" data-id="0a763d0" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>Helps businesses develop and implement marketing strategies to increase market and improve brand recognition.</p> </div> </div> <div class="elementor-element elementor-element-144a1b3 elementor-widget elementor-widget-rs-button" data-id="144a1b3" data-element_type="widget" data-widget_type="rs-button.default"> <div class="elementor-widget-container"> <div class="rs-button style1 unique-36701"> <a class="rs-btn" href="https://demo.rstheme.com/wordpress/bandco/contact/" > <span>Get in Touch <em> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="12" viewBox="0 0 18 12" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 6C0 5.66249 0.273604 5.38889 0.611111 5.38889L15.0246 5.38889L11.179 1.54323C10.9403 1.30458 10.9403 0.917645 11.179 0.678991C11.4176 0.440337 11.8046 0.440337 12.0432 0.678991L16.9321 5.56788C17.1708 5.80653 17.1708 6.19347 16.9321 6.43212L12.0432 11.321C11.8046 11.5597 11.4176 11.5597 11.179 11.321C10.9403 11.0824 10.9403 10.6954 11.179 10.4568L15.0246 6.61111L0.611111 6.61111C0.273604 6.61111 0 6.33751 0 6Z" fill="white"></path></svg> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="12" viewBox="0 0 18 12" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 6C0 5.66249 0.273604 5.38889 0.611111 5.38889L15.0246 5.38889L11.179 1.54323C10.9403 1.30458 10.9403 0.917645 11.179 0.678991C11.4176 0.440337 11.8046 0.440337 12.0432 0.678991L16.9321 5.56788C17.1708 5.80653 17.1708 6.19347 16.9321 6.43212L12.0432 11.321C11.8046 11.5597 11.4176 11.5597 11.179 11.321C10.9403 11.0824 10.9403 10.6954 11.179 10.4568L15.0246 6.61111L0.611111 6.61111C0.273604 6.61111 0 6.33751 0 6Z" fill="white"></path></svg> </em> </span> </a> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-25fba07 e-con-full e-flex e-con e-child" data-id="25fba07" data-element_type="container"> <div class="elementor-element elementor-element-c9f477f elementor-widget__width-inherit elementor-widget elementor-widget-heading" data-id="c9f477f" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">Useful Links</h3> </div> </div> <div class="elementor-element elementor-element-8730ded hfe-nav-menu__breakpoint-none elementor-widget__width-initial hfe-nav-menu__align-left hfe-submenu-icon-arrow hfe-link-redirect-child elementor-widget elementor-widget-navigation-menu" data-id="8730ded" data-element_type="widget" data-settings="{"padding_horizontal_menu_item":{"unit":"px","top":"10","right":"30","bottom":"10","left":"0","isLinked":false},"location_area_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"menu_bottom_space_last_zero":{"unit":"px","size":"","sizes":[]},"menu_bottom_space_last_zero_laptop":{"unit":"px","size":"","sizes":[]},"menu_bottom_space_last_zero_tablet":{"unit":"px","size":"","sizes":[]},"menu_bottom_space_last_zero_mobile":{"unit":"px","size":"","sizes":[]},"main_menu_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_dropdown_item":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item":{"unit":"px","size":15,"sizes":[]},"padding_vertical_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"distance_from_menu":{"unit":"px","size":"","sizes":[]},"distance_from_menu_laptop":{"unit":"px","size":"","sizes":[]},"distance_from_menu_tablet":{"unit":"px","size":"","sizes":[]},"distance_from_menu_mobile":{"unit":"px","size":"","sizes":[]},"toggle_size":{"unit":"px","size":"","sizes":[]},"toggle_size_laptop":{"unit":"px","size":"","sizes":[]},"toggle_size_tablet":{"unit":"px","size":"","sizes":[]},"toggle_size_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_width":{"unit":"px","size":"","sizes":[]},"toggle_border_width_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_width_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_width_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_radius":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="navigation-menu.default"> <div class="elementor-widget-container"> <style> .hfe-layout-vertical .left-arrow ul .menu-item:hover a:after { background: !important; } .hfe-layout-vertical .left-arrow ul .menu-item:hover a:before { border-left: 6px solid } </style> <div class="hfe-nav-menu hfe-layout-vertical normal hfe-nav-menu-layout mega_columns1 vertical" data-layout="vertical"> <div class="hfe-nav-menu__toggle elementor-clickable"> <div class="hfe-nav-menu-icon"> </div> </div> <nav class="hfe-nav-menu__layout-vertical hfe-nav-menu__submenu-arrow rs_one_columns no-separator right-arrow-style2 no-circle arrow icon-enable" data-toggle-icon="" data-close-icon="" data-full-width=""> <ul id="menu-1-8730ded" class="hfe-nav-menu"><li id="menu-item-12484" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/services/logo-designing/" class = "hfe-menu-item">Logo Designing<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12485" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/services/software-development/" class = "hfe-menu-item">Software Development<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12486" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/services/seo-branding/" class = "hfe-menu-item">SEO & Branding<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12487" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/services/domain-web-hosting/" class = "hfe-menu-item">Domain & Web Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12488" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/services/web-design-and-development/" class = "hfe-menu-item">Web Design & Development<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12489" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/services/business-emails/" class = "hfe-menu-item">Business Mails<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> </ul> </nav> </div> </div> </div> <div class="elementor-element elementor-element-b89127e hfe-nav-menu__breakpoint-none elementor-widget__width-initial hfe-nav-menu__align-left hfe-submenu-icon-arrow hfe-link-redirect-child elementor-widget elementor-widget-navigation-menu" data-id="b89127e" data-element_type="widget" data-settings="{"padding_horizontal_menu_item":{"unit":"px","top":"10","right":"30","bottom":"10","left":"0","isLinked":false},"location_area_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"location_area_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_menu_item_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"menu_bottom_space_last_zero":{"unit":"px","size":"","sizes":[]},"menu_bottom_space_last_zero_laptop":{"unit":"px","size":"","sizes":[]},"menu_bottom_space_last_zero_tablet":{"unit":"px","size":"","sizes":[]},"menu_bottom_space_last_zero_mobile":{"unit":"px","size":"","sizes":[]},"main_menu_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"main_menu_hover_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_laptop":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_horizontal_dropdown_item":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item":{"unit":"px","size":15,"sizes":[]},"padding_vertical_dropdown_item_laptop":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"distance_from_menu":{"unit":"px","size":"","sizes":[]},"distance_from_menu_laptop":{"unit":"px","size":"","sizes":[]},"distance_from_menu_tablet":{"unit":"px","size":"","sizes":[]},"distance_from_menu_mobile":{"unit":"px","size":"","sizes":[]},"toggle_size":{"unit":"px","size":"","sizes":[]},"toggle_size_laptop":{"unit":"px","size":"","sizes":[]},"toggle_size_tablet":{"unit":"px","size":"","sizes":[]},"toggle_size_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_width":{"unit":"px","size":"","sizes":[]},"toggle_border_width_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_width_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_width_mobile":{"unit":"px","size":"","sizes":[]},"toggle_border_radius":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_laptop":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_tablet":{"unit":"px","size":"","sizes":[]},"toggle_border_radius_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="navigation-menu.default"> <div class="elementor-widget-container"> <style> .hfe-layout-vertical .left-arrow ul .menu-item:hover a:after { background: !important; } .hfe-layout-vertical .left-arrow ul .menu-item:hover a:before { border-left: 6px solid } </style> <div class="hfe-nav-menu hfe-layout-vertical normal hfe-nav-menu-layout mega_columns1 vertical" data-layout="vertical"> <div class="hfe-nav-menu__toggle elementor-clickable"> <div class="hfe-nav-menu-icon"> </div> </div> <nav class="hfe-nav-menu__layout-vertical hfe-nav-menu__submenu-arrow rs_one_columns no-separator right-arrow-style2 no-circle arrow icon-enable" data-toggle-icon="" data-close-icon="" data-full-width=""> <ul id="menu-1-b89127e" class="hfe-nav-menu"><li id="menu-item-12721" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/products/microsoft-365-basic/" class = "hfe-menu-item">Microsoft 365 Basic<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12722" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/products/microsoft-365-standard/" class = "hfe-menu-item">Microsoft 365 Standard<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12723" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/products/microsoft-365-premium/" class = "hfe-menu-item">Microsoft 365 Premium<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12724" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/products/google-workspace/" class = "hfe-menu-item">Google Workspace<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12725" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/products/linux-shared-hosting/" class = "hfe-menu-item">Linux Shared Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> <li id="menu-item-12726" class="menu-item menu-item-type-custom menu-item-object-custom parent hfe-creative-menu"><a href="/products/windows-shared-hosting/" class = "hfe-menu-item">Windows Shared Hosting<em class="rs__menu_sp_dyc"><i class="ri-arrow-right-line"></i></em></a></li> </ul> </nav> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-d5bba5d e-con-full e-flex e-con e-child" data-id="d5bba5d" data-element_type="container"> <div class="elementor-element elementor-element-25a3cc9 elementor-widget elementor-widget-heading" data-id="25a3cc9" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">Office Address</h3> </div> </div> <div class="elementor-element elementor-element-1d2943d elementor-widget elementor-widget-text-editor" data-id="1d2943d" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <div>42 Mamnoun Street, Saba Carpet and Antiques Store, UK</div> </div> </div> <div class="elementor-element elementor-element-e62bd3b elementor-widget elementor-widget-heading" data-id="e62bd3b" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">Email Address</h3> </div> </div> <div class="elementor-element elementor-element-c3b5f27 rs-emails_bor elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="c3b5f27" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-text">Interested in working with us?</span> </li> <li class="elementor-icon-list-item"> <a href="mailto:support.bandco@gmail.com"> <span class="elementor-icon-list-text">support.bandco@gmail.com</span> </a> </li> </ul> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-6d2e1e9 e-con-full e-flex e-con e-child" data-id="6d2e1e9" data-element_type="container"> <div class="elementor-element elementor-element-49c3a7c elementor-widget elementor-widget-heading" data-id="49c3a7c" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">Phone Number</h3> </div> </div> <div class="elementor-element elementor-element-4656e0c elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="4656e0c" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <a href="tel:%20+971%20551%20579%20261"> <span class="elementor-icon-list-text">+971 551 579 261</span> </a> </li> <li class="elementor-icon-list-item"> <a href="tel:%20+97%20155%20596%201659"> <span class="elementor-icon-list-text">+97 155 596 1659</span> </a> </li> </ul> </div> </div> <div class="elementor-element elementor-element-b6c1bf7 elementor-widget elementor-widget-heading" data-id="b6c1bf7" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">Follow Us</h3> </div> </div> <div class="elementor-element elementor-element-fef2901 e-grid-align-left elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="fef2901" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-repeater-item-5aa3175" target="_blank"> <span class="elementor-screen-only">Facebook-f</span> <svg class="e-font-icon-svg e-fab-facebook-f" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"></path></svg> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-x-twitter elementor-repeater-item-a8b0318" target="_blank"> <span class="elementor-screen-only">X-twitter</span> <svg class="e-font-icon-svg e-fab-x-twitter" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"></path></svg> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-1ab8cfd" target="_blank"> <span class="elementor-screen-only">Youtube</span> <svg class="e-font-icon-svg e-fab-youtube" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path></svg> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin-in elementor-repeater-item-ec6ee6f" target="_blank"> <span class="elementor-screen-only">Linkedin-in</span> <svg class="e-font-icon-svg e-fab-linkedin-in" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"></path></svg> </a> </span> </div> </div> </div> </div> <div class="no-position rs-sticky-default elementor-element elementor-element-d116c33 e-con-full e-flex e-con e-child" data-id="d116c33" data-element_type="container" data-settings="{"background_background":"gradient"}"> <div class="elementor-element elementor-element-afc7d90 elementor-widget elementor-widget-copyright" data-id="afc7d90" data-element_type="widget" data-settings="{"align_tablet":"left","align_mobile":"left"}" data-widget_type="copyright.default"> <div class="elementor-widget-container"> <div class="hfe-copyright-wrapper normal"> <span><span>Copyright © <span id="current-year">2024</span>. Designed By <a target="_blank" href="https://rstheme.com">RSTheme.</a></span></span> </div> </div> </div> <div class="elementor-element elementor-element-b2c6179 elementor-widget elementor-widget-rs-iconbox" data-id="b2c6179" data-element_type="widget" data-widget_type="rs-iconbox.default"> <div class="elementor-widget-container"> <div class="rs-iconbox-area "> <div class="box-inner"> <div class="icon-area "> <svg aria-hidden="true" class="e-font-icon-svg e-fas-map-marker-alt" viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg> </div> <div class="text-area"> <p class=""> 19 Brooklyn Gold Street(USA)</p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </footer> </div><!-- #page --> <!-- start scrollUp --> <div id="scrollUp"> <i class="ri-arrow-up-s-line"></i> </div> <!-- Custom Cursor Start --> <div id="rs-mouse"> <div id="cursor-ball"></div> </div> <!-- Custom Cursor End --> <script> window.RS_MODULES = window.RS_MODULES || {}; window.RS_MODULES.modules = window.RS_MODULES.modules || {}; window.RS_MODULES.waiting = window.RS_MODULES.waiting || []; window.RS_MODULES.defered = true; window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {}; window.RS_MODULES.type = 'compiled'; </script> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/bandco-child/*","/wp-content/themes/bandco/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <div id="wa"></div> <script type='text/javascript'> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/dist/hooks.min.js?ver=dd5603f07f9220ed27f1" id="wp-hooks-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/dist/i18n.min.js?ver=c26c3dc7bed366793375" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); //# sourceURL=wp-i18n-js-after /* ]]> */ </script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.0.1" id="swv-js"></script> <script type="text/javascript" id="contact-form-7-js-before"> /* <![CDATA[ */ var wpcf7 = { "api": { "root": "https:\/\/www.flozen.media\/wp-json\/", "namespace": "contact-form-7\/v1" } }; //# sourceURL=contact-form-7-js-before /* ]]> */ </script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.0.1" id="contact-form-7-js"></script> <script type="text/javascript" src="//www.flozen.media/wp-content/plugins/revslider/sr6/assets/js/rbtools.min.js?ver=6.7.13" defer async id="tp-tools-js"></script> <script type="text/javascript" src="//www.flozen.media/wp-content/plugins/revslider/sr6/assets/js/rs6.min.js?ver=6.7.13" defer async id="revmin-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/popper.min.js?ver=201513434" id="popper-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/headding-title.js?ver=201513434" id="headding-title-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/slick.min.js?ver=201513434" id="slick-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/tilt.jquery.min.js?ver=201513434" id="js-tilt-view-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/jquery-ui.js?ver=201513434" id="jquery-ui-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/parallax-effect.min.js?ver=201513434" id="parallax-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/jQuery-plugin-progressbar.js?ver=201513434" id="jquery-plugin-progressbar-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/ddbeforeandafter.js?ver=201513434" id="ddbefore-and-after-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/imagesloaded.min.js?ver=5.0.0" id="imagesloaded-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/custom.js?ver=201513434" id="rsaddons-custom-pro-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/jquery.marquee.min.js?ver=201513434" id="rsaddons-marquee-js-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/jquery.marquee.min.js?ver=201513434" id="rsaddons-music-player-js-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/wp-whatsapp/assets/dist/js/njt-whatsapp.js?ver=3.6.9" id="nta-wa-libs-js"></script> <script type="text/javascript" id="nta-js-global-js-extra"> /* <![CDATA[ */ var njt_wa_global = {"ajax_url":"https://www.flozen.media/wp-admin/admin-ajax.php","nonce":"c60caffd34","defaultAvatarSVG":"\u003Csvg width=\"48px\" height=\"48px\" class=\"nta-whatsapp-default-avatar\" version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"\u003E\n \u003Cpath style=\"fill:#EDEDED;\" d=\"M0,512l35.31-128C12.359,344.276,0,300.138,0,254.234C0,114.759,114.759,0,255.117,0\n S512,114.759,512,254.234S395.476,512,255.117,512c-44.138,0-86.51-14.124-124.469-35.31L0,512z\"/\u003E\n \u003Cpath style=\"fill:#55CD6C;\" d=\"M137.71,430.786l7.945,4.414c32.662,20.303,70.621,32.662,110.345,32.662\n c115.641,0,211.862-96.221,211.862-213.628S371.641,44.138,255.117,44.138S44.138,137.71,44.138,254.234\n c0,40.607,11.476,80.331,32.662,113.876l5.297,7.945l-20.303,74.152L137.71,430.786z\"/\u003E\n \u003Cpath style=\"fill:#FEFEFE;\" d=\"M187.145,135.945l-16.772-0.883c-5.297,0-10.593,1.766-14.124,5.297\n c-7.945,7.062-21.186,20.303-24.717,37.959c-6.179,26.483,3.531,58.262,26.483,90.041s67.09,82.979,144.772,105.048\n c24.717,7.062,44.138,2.648,60.028-7.062c12.359-7.945,20.303-20.303,22.952-33.545l2.648-12.359\n c0.883-3.531-0.883-7.945-4.414-9.71l-55.614-25.6c-3.531-1.766-7.945-0.883-10.593,2.648l-22.069,28.248\n c-1.766,1.766-4.414,2.648-7.062,1.766c-15.007-5.297-65.324-26.483-92.69-79.448c-0.883-2.648-0.883-5.297,0.883-7.062\n l21.186-23.834c1.766-2.648,2.648-6.179,1.766-8.828l-25.6-57.379C193.324,138.593,190.676,135.945,187.145,135.945\"/\u003E\n \u003C/svg\u003E","defaultAvatarUrl":"https://www.flozen.media/wp-content/plugins/wp-whatsapp/assets/img/whatsapp_logo.svg","timezone":"+00:00","i18n":{"online":"Online","offline":"Offline"},"urlSettings":{"onDesktop":"api","onMobile":"api","openInNewTab":"ON"}}; //# sourceURL=nta-js-global-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/wp-whatsapp/assets/js/whatsapp-button.js?ver=3.6.9" id="nta-js-global-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/rs-header-footer-elementor/inc/js/frontend.js?ver=1.0.1" id="hfe-frontend-js-js"></script> <script type="text/javascript" id="nta-js-popup-js-extra"> /* <![CDATA[ */ var njt_wa = {"gdprStatus":"","accounts":[{"accountId":12466,"accountName":"Support (India)","avatar":"","number":"+918891643300","title":"","predefinedText":"","willBeBackText":"I will be back in [njwa_time_work]","dayOffsText":"I will be back soon","isAlwaysAvailable":"ON","daysOfWeekWorking":{"sunday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"monday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"tuesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"wednesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"thursday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"friday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"saturday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]}}},{"accountId":12467,"accountName":"Support (UAE)","avatar":"","number":"+971585907472","title":"","predefinedText":"","willBeBackText":"I will be back in [njwa_time_work]","dayOffsText":"I will be back soon","isAlwaysAvailable":"ON","daysOfWeekWorking":{"sunday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"monday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"tuesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"wednesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"thursday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"friday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"saturday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]}}}],"options":{"display":{"displayCondition":"showAllPage","includePages":[],"excludePages":[],"includePosts":[],"showOnDesktop":"ON","showOnMobile":"ON","time_symbols":"h:m"},"styles":{"title":"Start a Conversation","responseText":"The team typically replies in a few minutes.","description":"Hi! Click one of our member below to chat on \u003Cstrong\u003EWhatsApp\u003C/strong\u003E","backgroundColor":"#2db742","textColor":"#fff","titleSize":"18","accountNameSize":"14","descriptionTextSize":"12","regularTextSize":"11","scrollHeight":"500","isShowScroll":"OFF","isShowResponseText":"OFF","isShowPoweredBy":"ON","btnLabel":"Need Help? \u003Cstrong\u003EChat with us\u003C/strong\u003E","btnLabelWidth":"156","btnPosition":"right","btnLeftDistance":"30","btnRightDistance":"30","btnBottomDistance":"93","isShowBtnLabel":"ON","isShowGDPR":"OFF","gdprContent":"Please accept our \u003Ca href=\"https://ninjateam.org/privacy-policy/\"\u003Eprivacy policy\u003C/a\u003E first to start a conversation."},"analytics":{"enabledGoogle":"OFF","enabledFacebook":"OFF","enabledGoogleGA4":"OFF"}}}; //# sourceURL=nta-js-popup-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/wp-whatsapp/assets/js/whatsapp-popup.js?ver=3.6.9" id="nta-js-popup-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/custom.js?ver=201513434" id="rsaddons-offcanvas-js-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/bandco-addons/assets/js/jquery.countdownTimer.js?ver=201513434" id="rsaddons-countdowntimer-js-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=3.25.11" id="elementor-webpack-runtime-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.25.11" id="elementor-frontend-modules-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script> <script type="text/javascript" id="elementor-frontend-js-before"> /* <![CDATA[ */ var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselWrapperAriaLabel":"Carousel | Horizontal scrolling: Arrow Left & Right","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":true},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":true},"version":"3.25.11","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"e_swiper_latest":true,"e_nested_atomic_repeaters":true,"e_optimized_control_loading":true,"e_onboarding":true,"e_css_smooth_scroll":true,"home_screen":true,"nested-elements":true,"editor_v2":true,"link-in-bio":true,"floating-buttons":true},"urls":{"assets":"https:\/\/www.flozen.media\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.flozen.media\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.flozen.media\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"17f6524338"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet","viewport_laptop"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":3326,"title":"About%20Us%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> </body> </html>