/** * @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='noindex, follow' /> <!-- This site is optimized with the Yoast SEO plugin v24.0 - https://yoast.com/wordpress/plugins/seo/ --> <meta property="og:locale" content="en_US" /> <meta property="og:title" content="Page not found - Flozen Media Technologies | Microsoft 365, Google Workspace, Business Emails, Web Hosting, Web Design, Logo & Branding, SEO & SMM in Kerala and UAE" /> <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" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@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. --> <link rel='dns-prefetch' href='//www.flozen.media' /> <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> <link rel='stylesheet' id='wp-block-library-css' href='https://www.flozen.media/wp-includes/css/dist/block-library/style.min.css?ver=6.9.1' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel='stylesheet' id='nta-css-popup-css' href='https://www.flozen.media/wp-content/plugins/wp-whatsapp/assets/dist/css/style.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='contact-form-7-css' href='https://www.flozen.media/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='headding-title-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/assets/css/headding-title.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rsaddons-pro-css-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/assets/css/rsaddons.css?ver=1772630678' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-heading-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/heading/heading.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-team_grid-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/team-member/team-grid-widget.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-team_slider-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/team-member-slider/team-slider-widget.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-portfolio_grid-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/portfolio-grid/portfolio-grid.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-portfolio_filter-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/portfolio-filter/portfolio-filter-widget.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-portfolio_slider-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/portfolio-slider/portfolio-slider.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-counter-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/counter/counter.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-service_grid-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/services/rs-service-grid.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-service_slider-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/service-slider/service-slider-widget.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-service_list-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/service-list/rs-service-list.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-video-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/video/rs-video.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-gsap-marquee-slide-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/gsap-marquee-slide/gsap-marquee-slide.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-button-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/button/button.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-logo_widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/logo-widget/logo-widget.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-line_rain_animation-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/line-rain-animation/line-rain-animation.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-breadcrumb-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/breadcrumb-widget/breadcrumb-widget.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-newsletter-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/newsletter/newsletter.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-post_navigation-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/post-navigation/post-navigation.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-pricing_switcher-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/pricing-switcher/pricing-switcher.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-hotspots_showcase-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/hotspot-widget/hotspot.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-testimonial_slider-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/testimonial/slider/testimonial-slider-widget.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-social-icons-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/social-icons/rs-social-icons.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-header-offcanvas-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/header-offcanvas/header-offcanvas.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-cf7-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/cf7/cf7.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-accordion-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/rs-accordion/rs-accordion.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-advanced-tab-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/advanced-tab/advanced-tab.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-button-rotating-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/button-rotating/button-rotating.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-project-information-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/project-information/project-information.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='marquee-slider-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/marquee-slider-logo/marquee-slider-widget.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-iconbox-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/iconbox/iconbox.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-image-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/image-widget/image-widget.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-progress-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/progress/rs-progress.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-work-process-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/work-process/work-process.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-award-widget-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/rs-award-widget/award-widget.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='rselements-brochures-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/widgets/brochures/brochures.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='hfe-style-css' href='https://www.flozen.media/wp-content/plugins/rs-header-footer-elementor/assets/css/header-footer-elementor.css?ver=1.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/custom-frontend.min.css?ver=1734352953' type='text/css' media='all' /> <link rel='stylesheet' id='swiper-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5' type='text/css' media='all' /> <link rel='stylesheet' id='e-swiper-css' href='https://www.flozen.media/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css?ver=3.25.11' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-2918-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-2918.css?ver=1734352953' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-7769-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-7769.css?ver=1766863521' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-8765-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-8765.css?ver=1766863521' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-2484-css' href='https://www.flozen.media/wp-content/uploads/elementor/css/post-2484.css?ver=1766864330' type='text/css' media='all' /> <link rel='stylesheet' id='childstyle-css' href='https://www.flozen.media/wp-content/themes/bandco/style.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Inter%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CSora%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=swap&ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/assets/fonts/flaticon_lifetec2.css?ver=1.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-rselement-icons-css' href='https://www.flozen.media/wp-content/plugins/bandco-addons/assets/fonts/flaticon_lifetec2.css?ver=1.0.1' type='text/css' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="https://www.flozen.media/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://www.flozen.media/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <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> </head> <body class="error404 wp-theme-bandco wp-child-theme-bandco-child ehf-header ehf-footer ehf-template-bandco ehf-stylesheet-bandco-child elementor-default elementor-kit-2918"> <!--Preloader start here--> <!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="//gmpg.org/xfn/11"> </head> <body class="error404 wp-theme-bandco wp-child-theme-bandco-child ehf-header ehf-footer ehf-template-bandco ehf-stylesheet-bandco-child elementor-default elementor-kit-2918"> <!--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> <!--Preloader area end here--> <div id="page" class="site"> <!-- End Header Menu End --> <div class="main-contain offcontents"> <div class="page-error" > <div class="container"> <div id="content"> <div id="primary" class="content-area"> <main id="main" class="site-main"> <section class="error-404 not-found"> <div class="page-content"> <h2> <span> 404 </span> Opps! the page you requested was not found. </h2> <a class="readon" href="https://www.flozen.media/"> Back To Homepage </a> </div><!-- .page-content --> </section><!-- .error-404 --> </main><!-- #main --> </div><!-- #primary --> </div> </div> </div> <!-- .page-error --> </div><!-- .main-container --> </body> </html>