first commit
35
.gitignore
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
/node_modules
|
||||||
|
/.pnp
|
||||||
|
.pnp.js
|
||||||
|
|
||||||
|
# testing
|
||||||
|
/coverage
|
||||||
|
|
||||||
|
# Ignore node_modules
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# next.js
|
||||||
|
/.next/
|
||||||
|
/out/
|
||||||
|
|
||||||
|
# production
|
||||||
|
/build
|
||||||
|
|
||||||
|
# misc
|
||||||
|
.DS_Store
|
||||||
|
*.pem
|
||||||
|
|
||||||
|
# debug
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
.pnpm-debug.log*
|
||||||
|
|
||||||
|
# local env files
|
||||||
|
.env*.local
|
||||||
|
|
||||||
|
# vercel
|
||||||
|
.vercel
|
||||||
8
jsconfig.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"baseUrl": ".",
|
||||||
|
"paths": {
|
||||||
|
"@/*": ["./*"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
27
next.config.js
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
/** @type {import('next').NextConfig} */
|
||||||
|
const nextConfig = {
|
||||||
|
output: "export",
|
||||||
|
reactStrictMode: false,
|
||||||
|
trailingSlash: true,
|
||||||
|
|
||||||
|
images: {
|
||||||
|
unoptimized: true, // ⬅ required for static export to work with next/image
|
||||||
|
domains: ['your-cdn.com', 'images.unsplash.com'], // allow external domains
|
||||||
|
},
|
||||||
|
|
||||||
|
async headers() {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
source: '/(.*)',
|
||||||
|
headers: [
|
||||||
|
{
|
||||||
|
key: 'Cache-Control',
|
||||||
|
value: 'no-store, no-cache, must-revalidate, proxy-revalidate',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = nextConfig;
|
||||||
2273
package-lock.json
generated
Normal file
32
package.json
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"name": "consen-react",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"dev": "next dev",
|
||||||
|
"build": "next build",
|
||||||
|
"export": "next export && node scripts/generate-sitemap.cjs",
|
||||||
|
"start": "npx serve out",
|
||||||
|
"lint": "next lint"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@next/font": "13.1.6",
|
||||||
|
"axios": "^1.11.0",
|
||||||
|
"imagesloaded": "^5.0.0",
|
||||||
|
"isotope-layout": "^3.0.6",
|
||||||
|
"next": "13.1.6",
|
||||||
|
"react": "18.2.0",
|
||||||
|
"react-bootstrap": "^1.6.1",
|
||||||
|
"react-circular-progressbar": "^2.1.0",
|
||||||
|
"react-countup": "^6.4.1",
|
||||||
|
"react-dom": "18.2.0",
|
||||||
|
"react-google-recaptcha": "^3.1.0",
|
||||||
|
"react-visibility-sensor": "^5.1.1",
|
||||||
|
"sitemap": "^8.0.0",
|
||||||
|
"swiper": "^9.0.4",
|
||||||
|
"wowjs": "^1.1.3"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"serve": "^14.2.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
43
pages/404.js
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Link from "next/link";
|
||||||
|
import { Fragment } from "react";
|
||||||
|
const E404 = () => {
|
||||||
|
return (
|
||||||
|
<Layout header={3} footer={3}>
|
||||||
|
<div className="error-area">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-12">
|
||||||
|
{/* <div className="error-thumb">
|
||||||
|
<img src="/assets/images/resource/404.png" alt />
|
||||||
|
</div> */}
|
||||||
|
<div className="error-content">
|
||||||
|
<h2>
|
||||||
|
<span>Sorry!</span> Page Not Found
|
||||||
|
</h2>
|
||||||
|
<p>
|
||||||
|
We can't find that page! The page you are <br />
|
||||||
|
looking for was never existed.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
{/* <div className="error-search">
|
||||||
|
<input type="text" name="search" placeholder="Search" />
|
||||||
|
<button>
|
||||||
|
<i className="fas fa-search" />
|
||||||
|
</button>
|
||||||
|
</div> */}
|
||||||
|
<div className="new-button text-center">
|
||||||
|
<Link legacyBehavior href="/">
|
||||||
|
<a>
|
||||||
|
<i className="fas fa-home" /> Back To Home
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default E404;
|
||||||
72
pages/[slug].js
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
import BlogSidebar from "@/src/components/BlogSidebar";
|
||||||
|
import Breadcumb from "@/src/components/Breadcumb";
|
||||||
|
import BlogBanner from "@/src/components/services-details-banner/blogbanner";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import { BlogData } from "@/utils/constant.utils";
|
||||||
|
|
||||||
|
const BlogDetails = ({ post }) => {
|
||||||
|
if (!post) return <p>Blog not found</p>;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead
|
||||||
|
title={post?.seoTitle || post?.title}
|
||||||
|
description={post?.seoDesc || post?.description}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Layout>
|
||||||
|
<BlogBanner pageName={post?.hTittle} />
|
||||||
|
|
||||||
|
<div className="blog-section style-two details">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row justify-content-center">
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="blog-single-items">
|
||||||
|
<div className="blog-thumb">
|
||||||
|
<img src={post?.big_image} alt="Blog img" />
|
||||||
|
</div>
|
||||||
|
<div className="blog-content">
|
||||||
|
<div className="blog-content-text text-left">
|
||||||
|
<h5>{post?.title}</h5>
|
||||||
|
<div className="blog-meta">
|
||||||
|
<span><a href="#">{post?.user}</a></span> -{" "}
|
||||||
|
<span>{post?.date}</span> -{" "}
|
||||||
|
<span><a href="#">{post?.category}</a></span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
dangerouslySetInnerHTML={{ __html: post?.description }}
|
||||||
|
></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* Optional Sidebar: <BlogSidebar /> */}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default BlogDetails;
|
||||||
|
|
||||||
|
export async function getStaticPaths() {
|
||||||
|
const paths = BlogData.map((blog) => ({
|
||||||
|
params: { slug: blog.slug },
|
||||||
|
}));
|
||||||
|
|
||||||
|
return {
|
||||||
|
paths,
|
||||||
|
fallback: false, // Use true/‘blocking’ if content is dynamic
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getStaticProps({ params }) {
|
||||||
|
const post = BlogData.find((b) => b.slug === params.slug) || null;
|
||||||
|
|
||||||
|
return {
|
||||||
|
props: { post },
|
||||||
|
};
|
||||||
|
}
|
||||||
38
pages/_app.js
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
import Preloader from "@/src/layout/Preloader";
|
||||||
|
import "@/styles/globals.css";
|
||||||
|
import { Fragment, useEffect, useState } from "react";
|
||||||
|
|
||||||
|
const App = ({ Component, pageProps }) => {
|
||||||
|
const [loading, setLoading] = useState(true);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const timer = setTimeout(() => setLoading(false), 1500);
|
||||||
|
return () => clearTimeout(timer);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
// ✅ Add accessiBe script
|
||||||
|
useEffect(() => {
|
||||||
|
const script = document.createElement("script");
|
||||||
|
script.src = "https://acsbapp.com/apps/app/dist/js/app.js";
|
||||||
|
script.async = true;
|
||||||
|
script.onload = () => {
|
||||||
|
if (typeof window.acsbJS !== "undefined") {
|
||||||
|
window.acsbJS.init();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const h = document.querySelector("head") || document.body;
|
||||||
|
h.appendChild(script);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Fragment>
|
||||||
|
<ConsenHead />
|
||||||
|
<Preloader />
|
||||||
|
{!loading && <Component {...pageProps} />}
|
||||||
|
</Fragment>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default App;
|
||||||
71
pages/_document.js
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
import { Html, Head, Main, NextScript } from 'next/document';
|
||||||
|
|
||||||
|
export default function Document() {
|
||||||
|
return (
|
||||||
|
<Html lang="en">
|
||||||
|
<Head>
|
||||||
|
{/* ✅ Google Tag Manager (script) */}
|
||||||
|
<script
|
||||||
|
dangerouslySetInnerHTML={{
|
||||||
|
__html: `(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
|
||||||
|
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
|
||||||
|
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
|
||||||
|
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
|
||||||
|
})(window,document,'script','dataLayer','GTM-KWXS2ZM3');`,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{/* ✅ Google Analytics (gtag.js) */}
|
||||||
|
<script
|
||||||
|
async
|
||||||
|
src="https://www.googletagmanager.com/gtag/js?id=G-1NXE8QSBC8"
|
||||||
|
></script>
|
||||||
|
<script
|
||||||
|
dangerouslySetInnerHTML={{
|
||||||
|
__html: `
|
||||||
|
window.dataLayer = window.dataLayer || [];
|
||||||
|
function gtag(){dataLayer.push(arguments);}
|
||||||
|
gtag('js', new Date());
|
||||||
|
gtag('config', 'G-1NXE8QSBC8');
|
||||||
|
`,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
</Head>
|
||||||
|
<body>
|
||||||
|
{/* ✅ Google Tag Manager (noscript) */}
|
||||||
|
<noscript>
|
||||||
|
<iframe
|
||||||
|
src="https://www.googletagmanager.com/ns.html?id=GTM-KWXS2ZM3"
|
||||||
|
height="0"
|
||||||
|
width="0"
|
||||||
|
style={{ display: 'none', visibility: 'hidden' }}
|
||||||
|
></iframe>
|
||||||
|
</noscript>
|
||||||
|
|
||||||
|
<Main />
|
||||||
|
<NextScript />
|
||||||
|
|
||||||
|
{/* ✅ accessiBe script */}
|
||||||
|
<script
|
||||||
|
dangerouslySetInnerHTML={{
|
||||||
|
__html: `
|
||||||
|
(function(){
|
||||||
|
var s = document.createElement('script');
|
||||||
|
var h = document.querySelector('head') || document.body;
|
||||||
|
s.src = 'https://acsbapp.com/apps/app/dist/js/app.js';
|
||||||
|
s.async = true;
|
||||||
|
s.onload = function(){
|
||||||
|
if (typeof acsbJS !== 'undefined') {
|
||||||
|
acsbJS.init();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
h.appendChild(s);
|
||||||
|
})();
|
||||||
|
`,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</body>
|
||||||
|
</Html>
|
||||||
|
);
|
||||||
|
}
|
||||||
602
pages/about.js
Normal file
@ -0,0 +1,602 @@
|
|||||||
|
import Abou from "@/src/components/services-details-banner/abou.js";
|
||||||
|
import Counter from "@/src/components/Counter";
|
||||||
|
import Faqs from "@/src/components/Faqs";
|
||||||
|
import LogoSlider from "@/src/components/LogoSlider";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import { testimonial_list_slider } from "@/src/sliderProps";
|
||||||
|
import Link from "next/link";
|
||||||
|
import { Nav, Tab } from "react-bootstrap";
|
||||||
|
import { Swiper, SwiperSlide } from "swiper/react";
|
||||||
|
import { brandListProps2 } from "@/src/sliderProps";
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
|
||||||
|
const About = () => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="About - Metatroncube Software Solutions | Innovative & User-Centric Tech Services in Waterloo" description="5+ Years of Experience About Us Our Story Metatroncube Software Solutions was born from a passion for technology and a vision to revolutionize digital interactions. Based in the heart of Waterloo's tech hub, we have been pioneering custom software solutions since 2019. Empowering Your Digital Journey Innovative Solutions: Tailoring cutting-edge web and mobile applications that" />
|
||||||
|
<Layout header={3} footer={3}>
|
||||||
|
<Abou pageName={"ABOUT US"} />
|
||||||
|
{/* ========================================================= */}
|
||||||
|
{/* Start abouts area */}
|
||||||
|
{/* ========================================================= */}
|
||||||
|
<div className="about-area new-style bg-white">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
|
||||||
|
<div className="col-lg-6 mb-4 mb-lg-0">
|
||||||
|
<div className="about-thumb">
|
||||||
|
<img src="/assets/images/about/about.webp" alt="Our story" className="img-fluid" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-lg-6">
|
||||||
|
<div className="consen-section-title mb-4">
|
||||||
|
<div className="consen-section-title">
|
||||||
|
<h5>About Us</h5>
|
||||||
|
<h2>Our<span> Story</span></h2>
|
||||||
|
</div>
|
||||||
|
<p className="about-text2 pt-3">
|
||||||
|
Metatroncube Software Solutions was born from a passion for technology and a vision to
|
||||||
|
revolutionize digital interactions. Based in the heart of Waterloo's tech hub, we have
|
||||||
|
been pioneering custom software solutions since 2019.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="row g-3">
|
||||||
|
<div className="col-12">
|
||||||
|
<div className="d-flex align-items-start mb-3">
|
||||||
|
<img src="/assets/images/about/innovative.webp " alt="icon" className="me-3 pr-3" />
|
||||||
|
<div>
|
||||||
|
<h5>Innovative Solutions</h5>
|
||||||
|
<p>Tailoring cutting-edge web and mobile applications that set industry standards.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-12">
|
||||||
|
<div className="d-flex align-items-start mb-3">
|
||||||
|
<img src="/assets/images/about/teamwork.webp" alt="icon" className="me-3 pr-3" />
|
||||||
|
<div>
|
||||||
|
<h5>Expert Teamwork</h5>
|
||||||
|
<p>A synergy of skilled developers and creative designers committed to your success.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-12">
|
||||||
|
<div className="d-flex align-items-start mb-3">
|
||||||
|
<img src="/assets/images/about/future.webp " alt="icon" className="me-3 pr-3" />
|
||||||
|
<div>
|
||||||
|
<h5>Future-Ready Approach</h5>
|
||||||
|
<p>Anticipating market trends to keep your business ahead of the curve.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End abouts Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start Brand Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="about brand-section new-style">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<Swiper {...brandListProps2} className="brand-list2 owl-carousel">
|
||||||
|
<SwiperSlide>
|
||||||
|
<div className="brand-single-box">
|
||||||
|
<div className="brand-thumb">
|
||||||
|
<img src="/assets/images/add/icon-1.webp" alt="BigCommerce Partner logo, symbolizing a strong e-commerce alliance." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide>
|
||||||
|
<div className="brand-single-box">
|
||||||
|
<div className="brand-thumb">
|
||||||
|
<img src="/assets/images/add/icon-2.webp" alt="Shopify logo with a green shopping bag icon." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide>
|
||||||
|
<div className="brand-single-box">
|
||||||
|
<div className="brand-thumb">
|
||||||
|
<img src="/assets/images/add/icon-3.webp" alt="Constant Contact logo with a stylized '@' symbol." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide>
|
||||||
|
<div className="brand-single-box">
|
||||||
|
<div className="brand-thumb">
|
||||||
|
<img src="/assets/images/add/icon-4.webp" alt="HIKE SEO logo depicting a rising graph within the letter 'K'." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide>
|
||||||
|
<div className="brand-single-box">
|
||||||
|
<div className="brand-thumb">
|
||||||
|
<img src="/assets/images/add/icon-1.webp" alt="BigCommerce Partner logo, symbolizing a strong e-commerce alliance." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide>
|
||||||
|
<div className="brand-single-box">
|
||||||
|
<div className="brand-thumb">
|
||||||
|
<img src="/assets/images/add/icon-2.webp" alt="Shopify logo with a green shopping bag icon." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide>
|
||||||
|
<div className="brand-single-box">
|
||||||
|
<div className="brand-thumb">
|
||||||
|
<img src="/assets/images/add/icon-3.webp" alt="Constant Contact logo with a stylized '@' symbol." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide>
|
||||||
|
<div className="brand-single-box">
|
||||||
|
<div className="brand-thumb">
|
||||||
|
<img src="/assets/images/add/icon-4.webp" alt="HIKE SEO logo depicting a rising graph within the letter 'K'." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
</Swiper>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End brand Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Skill Area Css */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="skill-area style-two">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
<div className="col-md-6">
|
||||||
|
<div className="extra-animation-div">
|
||||||
|
<div className="consen-section-title">
|
||||||
|
<h5>Watch Us Live</h5>
|
||||||
|
<h2>An Agency That</h2>
|
||||||
|
<h2><span>Gets Excited </span>About Your Mission</h2>
|
||||||
|
</div>
|
||||||
|
<div className="dreamit-smart-title pt-2">
|
||||||
|
<p className="slill-text-dark">
|
||||||
|
Every project we take on is personal. We get excited about your goals, your grit, and the journey you’re on.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Whether you’re launching something new or leveling up an existing brand, we bring fresh energy, deep expertise, and full-stack creativity to your table. We don’t just work for you, we work with you, as committed collaborators invested in your long-term growth.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="dreamit-icon-box">
|
||||||
|
<div className="dreamit-icon-list">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<i className="bi bi-arrow-right-circle" />
|
||||||
|
<span> Urgent development solutions</span>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i className="bi bi-arrow-right-circle" />
|
||||||
|
<span> Top quality services with reasonable price</span>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i className="bi bi-arrow-right-circle" />
|
||||||
|
<span> Professional & experienced team</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-md-6">
|
||||||
|
<div className="slill-single-thumb mt-4 mt-lg-0 pl-50 ml-1">
|
||||||
|
<img src="/assets/images/about/watch-us-live-section.webp" alt="Agency that gets excited about" />
|
||||||
|
<div className="skill-thumb-content">
|
||||||
|
<div className="skill-title">
|
||||||
|
<h3 className="counter"><Counter end={10} /></h3>
|
||||||
|
<span>+</span>
|
||||||
|
<h5>YEARS EXPERIENCE</h5>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* <div className="process-shape">
|
||||||
|
<div className="process-shape-thumb bounce-animate2">
|
||||||
|
<img src="assets/images/about/3.webp" alt="" />
|
||||||
|
</div>
|
||||||
|
</div> */}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Skill Area Css */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen case study Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="why-choose-us">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
<div className="col-lg-6">
|
||||||
|
<div className="consen-section-title">
|
||||||
|
<h5>Experience US</h5>
|
||||||
|
<h2>We Offer & Do</h2>
|
||||||
|
<h2><span>More than</span> Ever Platforms.</h2>
|
||||||
|
<p className="choose-text1">
|
||||||
|
Appropriately enhance principle-centered innovation rather
|
||||||
|
than high standards in platforms. Credibly orchestrate functional.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-md-12">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-12 pl-10 pr-10 mb-4">
|
||||||
|
<div className="process-single-box text-white">
|
||||||
|
<div className="process-title">
|
||||||
|
<h3>
|
||||||
|
Our <span> Mission </span>
|
||||||
|
</h3>
|
||||||
|
<p>
|
||||||
|
Our mission is to empower businesses
|
||||||
|
with state-of-the-art digital products that drive growth, efficiency, and connectivity.
|
||||||
|
We strive to be at the forefront of innovation, delivering web and mobile solutions
|
||||||
|
that exceed expectations.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-12 pl-10 pr-10">
|
||||||
|
<div className="process-single-box upper">
|
||||||
|
<div className="process-title text-white">
|
||||||
|
<h3>
|
||||||
|
Our <span> Values </span>
|
||||||
|
</h3>
|
||||||
|
<p>
|
||||||
|
Integrity and Trust,
|
||||||
|
Innovation and Excellence,
|
||||||
|
Collaboration and Empowerment,
|
||||||
|
Adaptability and Learning,
|
||||||
|
Customer-Centric Approach,
|
||||||
|
Sustainability and Responsibility.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen case study Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start process Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="process-area two">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row justify-content-center text-center">
|
||||||
|
<div className="col-md-3 col-6 d-flex flex-column align-items-center justify-content-center">
|
||||||
|
<div className="counter-single-box">
|
||||||
|
<div className="counter-title">
|
||||||
|
<h4 className="text-dark"><Counter end={100} /></h4>
|
||||||
|
<span>+</span>
|
||||||
|
<p className="text-dark">Projects Completed</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-md-3 col-6 d-flex flex-column align-items-center justify-content-center">
|
||||||
|
<div className="counter-single-box">
|
||||||
|
<div className="counter-title">
|
||||||
|
<h4 className="text-dark"><Counter end={50} /></h4>
|
||||||
|
<span>+</span>
|
||||||
|
<p className="text-dark">Active Clients</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-md-3 col-6 d-flex flex-column align-items-center justify-content-center">
|
||||||
|
<div className="counter-single-box">
|
||||||
|
<div className="counter-title">
|
||||||
|
<h4 className="text-dark"><Counter end={20} /></h4>
|
||||||
|
<span>+</span>
|
||||||
|
<p className="text-dark">Expert People</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-md-3 col-6 d-flex flex-column align-items-center justify-content-center">
|
||||||
|
<div className="counter-single-box">
|
||||||
|
<div className="counter-title">
|
||||||
|
<h4 className="text-dark"><Counter end={50} /></h4>
|
||||||
|
<span>+</span>
|
||||||
|
<p className="text-dark">Happy Clients</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="process-shape">
|
||||||
|
<div className="service-shape">
|
||||||
|
<img src="/assets/images/elements/right-top-element .webp" alt="" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*=================================================*/}
|
||||||
|
{/* End Process Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Testimonial Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="testimonial-area new-style">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row justify-content-center text-center">
|
||||||
|
<div className="col-lg-8">
|
||||||
|
<div className="consen-section-title">
|
||||||
|
<h5 className="text-primary">Our Testimonials</h5>
|
||||||
|
<h2>What Our Customers are </h2>
|
||||||
|
<h2>Talking<span> About us.</span> </h2>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Swiper {...testimonial_list_slider} className="testimonial_list owl-carousel mt-4">
|
||||||
|
|
||||||
|
<SwiperSlide className="pr-1">
|
||||||
|
<div className="testimonial-single-box">
|
||||||
|
<div className="testimonial-content1">
|
||||||
|
<div className="single-quote-icon">
|
||||||
|
{/* <div className="quote-thumb">
|
||||||
|
<img src="assets/images/about/testimonial/testimonial-2.webp" alt="Smiling men's avatar representing a satisfied client." />
|
||||||
|
</div> */}
|
||||||
|
<div className="quote-title">
|
||||||
|
<h4 className="testimonial-text">Dine360 Ads</h4>
|
||||||
|
<p>Happy Customer</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="em-testimonial-text">
|
||||||
|
<p>
|
||||||
|
I had an amazing experience working with Metatrion Cube Solutions! They built a stunning website for my business that not only looks professional but is also fast, responsive, and easy to navigate. The team truly listened to my needs, offered great design ideas, and delivered everything on time. I’ve already received compliments from clients about how sleek and user-friendly the site is. Highly recommend them if you're looking for top-notch web development!
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide className="pr-1">
|
||||||
|
<div className="testimonial-single-box">
|
||||||
|
<div className="testimonial-content1">
|
||||||
|
<div className="single-quote-icon">
|
||||||
|
{/* <div className="quote-thumb">
|
||||||
|
<img src="assets/images/about/testimonial/testimonial-2.webp" alt="Smiling men's avatar representing a satisfied client." />
|
||||||
|
</div> */}
|
||||||
|
<div className="quote-title">
|
||||||
|
<h4 className="testimonial-text">Chansa</h4>
|
||||||
|
<p>Happy Customer</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="em-testimonial-text">
|
||||||
|
<p className="pb-4">
|
||||||
|
Working with Metatron Cube Software Solutions is always a wonderful experience. I say always because I am a repeat client, and would encourage anybody to hire them for your project.
|
||||||
|
I can’t praise their team enough, they are able to make the daunting process of creating digital solutions easy to understand, and always within budget.
|
||||||
|
They have made me a very happy, and loyal client.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide className="pr-1">
|
||||||
|
<div className="testimonial-single-box">
|
||||||
|
<div className="testimonial-content1">
|
||||||
|
<div className="single-quote-icon">
|
||||||
|
{/* <div className="quote-thumb">
|
||||||
|
<img src="assets/images/about/testimonial/testimonial-2.webp" alt="Smiling men's avatar representing a satisfied client." />
|
||||||
|
</div> */}
|
||||||
|
<div className="quote-title">
|
||||||
|
<h4 className="testimonial-text">
|
||||||
|
RentSouth Beach Miami</h4>
|
||||||
|
<p>Happy Customer</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="em-testimonial-text">
|
||||||
|
<p>
|
||||||
|
Partnering with Metatroncube Software Solutions was a game-changer for our Rent South Beach Miami website. Their expertise in digital marketing, especially SEO and social media, significantly increased our online visibility and customer engagement. As a leading digital marketing agency in Canada, they delivered results beyond our expectations. Highly recommend them for anyone looking to boost their online presence!
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide className="pr-1">
|
||||||
|
<div className="testimonial-single-box">
|
||||||
|
<div className="testimonial-content1">
|
||||||
|
<div className="single-quote-icon">
|
||||||
|
{/* <div className="quote-thumb">
|
||||||
|
<img src="assets/images/about/testimonial/testimonial-2.webp" alt="Smiling men's avatar representing a satisfied client." />
|
||||||
|
</div> */}
|
||||||
|
<div className="quote-title">
|
||||||
|
<h4 className="testimonial-text">Dine360 Ads</h4>
|
||||||
|
<p>Happy Customer</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="em-testimonial-text">
|
||||||
|
<p>
|
||||||
|
I had an amazing experience working with Metatrion Cube Solutions! They built a stunning website for my business that not only looks professional but is also fast, responsive, and easy to navigate. The team truly listened to my needs, offered great design ideas, and delivered everything on time. I’ve already received compliments from clients about how sleek and user-friendly the site is. Highly recommend them if you're looking for top-notch web development!
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide className="pr-1">
|
||||||
|
<div className="testimonial-single-box">
|
||||||
|
<div className="testimonial-content1">
|
||||||
|
<div className="single-quote-icon">
|
||||||
|
{/* <div className="quote-thumb">
|
||||||
|
<img src="assets/images/about/testimonial/testimonial-2.webp" alt="Smiling men's avatar representing a satisfied client." />
|
||||||
|
</div> */}
|
||||||
|
<div className="quote-title">
|
||||||
|
<h4 className="testimonial-text">Chansa</h4>
|
||||||
|
<p>Happy Customer</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="em-testimonial-text">
|
||||||
|
<p className="pb-4">
|
||||||
|
Working with Metatron Cube Software Solutions is always a wonderful experience. I say always because I am a repeat client, and would encourage anybody to hire them for your project.
|
||||||
|
I can’t praise their team enough, they are able to make the daunting process of creating digital solutions easy to understand, and always within budget.
|
||||||
|
They have made me a very happy, and loyal client.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide className="pr-1">
|
||||||
|
<div className="testimonial-single-box">
|
||||||
|
<div className="testimonial-content1">
|
||||||
|
<div className="single-quote-icon">
|
||||||
|
{/* <div className="quote-thumb">
|
||||||
|
<img src="assets/images/about/testimonial/testimonial-2.webp" alt="Smiling men's avatar representing a satisfied client." />
|
||||||
|
</div> */}
|
||||||
|
<div className="quote-title">
|
||||||
|
<h4 className="testimonial-text">
|
||||||
|
RentSouth Beach Miami</h4>
|
||||||
|
<p>Happy Customer</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="em-testimonial-text">
|
||||||
|
<p>
|
||||||
|
Partnering with Metatroncube Software Solutions was a game-changer for our Rent South Beach Miami website. Their expertise in digital marketing, especially SEO and social media, significantly increased our online visibility and customer engagement. As a leading digital marketing agency in Canada, they delivered results beyond our expectations. Highly recommend them for anyone looking to boost their online presence!
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide className="pr-1">
|
||||||
|
<div className="testimonial-single-box">
|
||||||
|
<div className="testimonial-content1">
|
||||||
|
<div className="single-quote-icon">
|
||||||
|
{/* <div className="quote-thumb">
|
||||||
|
<img src="assets/images/about/testimonial/testimonial-2.webp" alt="Smiling men's avatar representing a satisfied client." />
|
||||||
|
</div> */}
|
||||||
|
<div className="quote-title">
|
||||||
|
<h4 className="testimonial-text">Dine360 Ads</h4>
|
||||||
|
<p>Happy Customer</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="em-testimonial-text">
|
||||||
|
<p>
|
||||||
|
I had an amazing experience working with Metatrion Cube Solutions! They built a stunning website for my business that not only looks professional but is also fast, responsive, and easy to navigate. The team truly listened to my needs, offered great design ideas, and delivered everything on time. I’ve already received compliments from clients about how sleek and user-friendly the site is. Highly recommend them if you're looking for top-notch web development!
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide className="pr-1">
|
||||||
|
<div className="testimonial-single-box">
|
||||||
|
<div className="testimonial-content1">
|
||||||
|
<div className="single-quote-icon">
|
||||||
|
{/* <div className="quote-thumb">
|
||||||
|
<img src="assets/images/about/testimonial/testimonial-2.webp" alt="Smiling men's avatar representing a satisfied client." />
|
||||||
|
</div> */}
|
||||||
|
<div className="quote-title">
|
||||||
|
<h4 className="testimonial-text">Chansa</h4>
|
||||||
|
<p>Happy Customer</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="em-testimonial-text">
|
||||||
|
<p className="pb-4">
|
||||||
|
Working with Metatron Cube Software Solutions is always a wonderful experience. I say always because I am a repeat client, and would encourage anybody to hire them for your project.
|
||||||
|
I can’t praise their team enough, they are able to make the daunting process of creating digital solutions easy to understand, and always within budget.
|
||||||
|
They have made me a very happy, and loyal client.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
<SwiperSlide className="pr-1">
|
||||||
|
<div className="testimonial-single-box">
|
||||||
|
<div className="testimonial-content1">
|
||||||
|
<div className="single-quote-icon">
|
||||||
|
{/* <div className="quote-thumb">
|
||||||
|
<img src="assets/images/about/testimonial/testimonial-2.webp" alt="Smiling men's avatar representing a satisfied client." />
|
||||||
|
</div> */}
|
||||||
|
<div className="quote-title">
|
||||||
|
<h4 className="testimonial-text">
|
||||||
|
RentSouth Beach Miami</h4>
|
||||||
|
<p>Happy Customer</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="em-testimonial-text">
|
||||||
|
<p>
|
||||||
|
Partnering with Metatroncube Software Solutions was a game-changer for our Rent South Beach Miami website. Their expertise in digital marketing, especially SEO and social media, significantly increased our online visibility and customer engagement. As a leading digital marketing agency in Canada, they delivered results beyond our expectations. Highly recommend them for anyone looking to boost their online presence!
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SwiperSlide>
|
||||||
|
</Swiper>
|
||||||
|
|
||||||
|
<div className="testi-shape">
|
||||||
|
<div className="testi-shape-thumb">
|
||||||
|
<img src="/assets/images/elements/right-top-element-1.webp" alt="Decorative Shape" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Testimonial Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Call Do Action Area Css */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="call-do-action-area">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row justify-content-center text-center">
|
||||||
|
<div className="col-lg-10 col-md-12">
|
||||||
|
<div className="consen-section-title upper mb-4">
|
||||||
|
<h5 className="text-primary">Let’s Get Started New Project</h5>
|
||||||
|
<h2 className="call-do-action-area-h2">Your success story begins with us.</h2>
|
||||||
|
</div>
|
||||||
|
<div className="new-button">
|
||||||
|
<Link legacyBehavior href="/contact">
|
||||||
|
<a className="btn btn-primary px-4 mt-3">Contact Us</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Call Do Action Area Css */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="sub">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
</Layout >
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default About;
|
||||||
@ -0,0 +1,373 @@
|
|||||||
|
import Counter from "@/src/components/Counter";
|
||||||
|
import Faqs from "@/src/components/Faqs";
|
||||||
|
import ProgressBar from "@/src/components/ProgressBar";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Link from "next/link";
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import Access from "@/src/components/services-details-banner/access";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
|
||||||
|
const Accessiblity = ({ pageName }) => {
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Accessibility Statement for Metatroncube Software Solutions - Metatroncube Software Solutions | Innovative & User-Centric Tech Services in Waterloo"
|
||||||
|
description="Accessibility Statement Powered by Compliance statusWe firmly believe that the internet should be available and accessible to anyone and are committed to providing a website that is accessible to the broadest possible audience, regardless of ability. To fulfill this, we aim to adhere as strictly as possible to the World Wide Web Consortium’s (W3C) Web Content Accessibility" />
|
||||||
|
<Layout>
|
||||||
|
<Access pageName={"ACCESSIBILITY STATEMENT"} />
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen service details Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="slide slider d-flex align-items-center" id="home">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
{/* slider shape */}
|
||||||
|
{/* <div className="slider-shape">
|
||||||
|
<div className="slider-shape-thumb2">
|
||||||
|
<img src="assets/images/slider/shape2.png" alt="" />
|
||||||
|
</div>
|
||||||
|
<div className="slider-shape-thumb4">
|
||||||
|
<img src="assets/images/slider/shape3.png" alt="" />
|
||||||
|
</div>
|
||||||
|
<div className="slider-shape-thumb5 dance">
|
||||||
|
<img src="assets/images/slider/circle1.png" alt="" />
|
||||||
|
</div>
|
||||||
|
<div className="slider-shape-thumb6 bounce-animate">
|
||||||
|
<img src="assets/images/slider/circle2.png" alt="" />
|
||||||
|
</div>
|
||||||
|
<div className="slider-shape-thumb7 bounce-animate2">
|
||||||
|
<img src="assets/images/slider/circle3.png" alt="" />
|
||||||
|
</div>
|
||||||
|
<div className="slider-shape-thumb8 bounce-animate3">
|
||||||
|
<img src="assets/images/slider/white-dot.png" alt="" />
|
||||||
|
</div>
|
||||||
|
<div className="slider-shape-thumb9 ">
|
||||||
|
<img src="assets/images/slider/line.png" alt="" />
|
||||||
|
</div>
|
||||||
|
</div> */}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen feature Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
|
||||||
|
{/* <div className="container">
|
||||||
|
<div className="row feature-bg">
|
||||||
|
<div className="feature-shape bounce-animate2">
|
||||||
|
<img src="assets/images/about/3.webp" alt />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div> */}
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen feature Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen about Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
|
||||||
|
<div className="process-style pt-90">
|
||||||
|
<div className="container">
|
||||||
|
<div className="slider-content">
|
||||||
|
<h2>
|
||||||
|
{" "}
|
||||||
|
<span>Accessibility Statement</span>{" "}
|
||||||
|
</h2>
|
||||||
|
<h4 className="mt-4">
|
||||||
|
Powered by
|
||||||
|
</h4>
|
||||||
|
<div className="feature-box-inner mt-4">
|
||||||
|
<div className="feature-icon1 mb-5">
|
||||||
|
<img src="https://i0.wp.com/metatroncubesolutions.com/wp-content/uploads/2024/04/accessibe.webp?w=500&ssl=1" alt />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="row align-items-center">
|
||||||
|
<div className="col-lg-12 pt-3">
|
||||||
|
<div className="consen-itle">
|
||||||
|
<h3>Compliance status</h3>
|
||||||
|
</div>
|
||||||
|
<p>
|
||||||
|
We firmly believe that the internet should be available and accessible to anyone and are committed to providing a website that is accessible to the broadest possible audience, regardless of ability.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
To fulfill this, we aim to adhere as strictly as possible to the World Wide Web Consortium’s (W3C) Web Content Accessibility Guidelines 2.1 (WCAG 2.1) at the AA level. These guidelines explain how to make web content accessible to people with a wide array of disabilities.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Complying with those guidelines helps us ensure that the website is accessible to blind people, people with motor impairments, visual impairment, cognitive disabilities, and more. This website utilizes various technologies that are meant to make it as accessible as possible at all times.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
We utilize an accessibility interface that allows persons with specific disabilities to adjust the website’s UI (user interface) and design it to their personal needs. Additionally, the website utilizes an AI-based application that runs in the background and optimizes its accessibility level constantly.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
This application remediates the website’s HTML, adapts its functionality and behavior for screen-readers used by blind users, and for keyboard functions used by individuals with motor impairments. If you wish to contact the website’s owner please use the following email info@metatroncubesolutions.com
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="why-choose-us-thumb">
|
||||||
|
<div className="why-choose-us-image">
|
||||||
|
<div className="why-choose-us-shape-thumb bounce-animate">
|
||||||
|
<img src="/assets/images/elements/dot .webp" alt />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="why-choose-us-shape-thumb3 bounce-animate2">
|
||||||
|
{/* <img src="assets/images/elements/element-1.webp" alt /> */}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="process-are pt-3">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
|
||||||
|
{/* Text - now on the left */}
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="consen-section-tit ">
|
||||||
|
<h3 className="mt-2">Screen-reader and keyboard navigation</h3>
|
||||||
|
</div>
|
||||||
|
<p>
|
||||||
|
Our website implements the ARIA attributes (Accessible Rich Internet Applications) technique, alongside various behavioral changes, to ensure blind users visiting with screen-readers can read, comprehend, and enjoy the website’s functions. As soon as a user with a screen-reader enters your site, they immediately receive a prompt to enter the Screen-Reader Profile so they can browse and operate your site effectively. Here’s how our website covers some of the most important screen-reader requirements:
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* <div className="col-lg-6 mb-4 mb-lg-0 ">
|
||||||
|
<img src="/assets/images/careers/benefits .webp" alt="Benefits" className="img-fluid pl-50" />
|
||||||
|
</div> */}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div className="service-details-icon-box ">
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<ul className="list-unstyled">
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Screen-reader optimization: we run a process that learns the website’s components from top to bottom, to ensure ongoing compliance even when updating the website. In this process, we provide screen-readers with meaningful data using the ARIA set of attributes. For example, we provide accurate form labels; descriptions for actionable icons (social media icons, search icons, cart icons, etc.); validation guidance for form inputs; element roles such as buttons, menus, modal dialogues (popups), and others. Additionally, the background process scans all of the website’s images. It provides an accurate and meaningful image-object-recognition-based description as an ALT (alternate text) tag for images that are not described. It will also extract texts embedded within the image using an OCR (optical character recognition) technology. To turn on screen-reader adjustments at any time, users need only to press the Alt+1 keyboard combination. Screen-reader users also get automatic announcements to turn the Screen-reader mode on as soon as they enter the website. These adjustments are compatible with popular screen readers such as JAWS, NVDA, VoiceOver, and TalkBack</span>
|
||||||
|
</li>
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Keyboard navigation optimization: The background process also adjusts the website’s HTML and adds various behaviors using JavaScript code to make the website operable by the keyboard. This includes the ability to navigate the website using the Tab and Shift+Tab keys, operate dropdowns with the arrow keys, close them with Esc, trigger buttons and links using the Enter key, navigate between radio and checkbox elements using the arrow keys, and fill them in with the Spacebar or Enter key. Additionally, keyboard users will find content-skip menus available at any time by clicking Alt+2, or as the first element of the site while navigating with the keyboard. The background process also handles triggered popups by moving the keyboard focus towards them as soon as they appear, not allowing the focus to drift outside. Users can also use shortcuts such as “M” (menus), “H” (headings), “F” (forms), “B” (buttons), and “G” (graphics) to jump to specific elements.</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* <div className="position-relative">
|
||||||
|
|
||||||
|
<img
|
||||||
|
src="/assets/images/about/3.webp"
|
||||||
|
alt="Shape 2"
|
||||||
|
className="img-fluid position-absolute top-0 end-0 bounce-animate2"
|
||||||
|
/>
|
||||||
|
</div> */}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="process-are ">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
{/* <div className="col-lg-6 mb-4 mb-lg-0 ">
|
||||||
|
<img src="/assets/images/careers/benefits .webp" alt="Benefits" className="img-fluid pl-50" />
|
||||||
|
</div> */}
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="consen-section-titl">
|
||||||
|
<div className="service-details-icon-box ">
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<ul className="list-unstyled">
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Epilepsy Safe Profile: this profile enables people with epilepsy to safely use the website by eliminating the risk of seizures resulting from flashing or blinking animations and risky color combinations.</span>
|
||||||
|
</li>
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Vision Impaired Profile: this profile adjusts the website so that it is accessible to the majority of visual impairments such as Degrading Eyesight, Tunnel Vision, Cataract, Glaucoma, and others.</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Cognitive Disability Profile: this profile provides various assistive features to help users with cognitive disabilities such as Autism, Dyslexia, CVA, and others, to focus on the essential elements more easily.</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>ADHD Friendly Profile: this profile significantly reduces distractions and noise to help people with ADHD, and Neurodevelopmental disorders browse, read, and focus on the essential elements more easily.</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Blind Users Profile (Screen-readers): this profile adjusts the website to be compatible with screen-readers such as JAWS, NVDA, VoiceOver, and TalkBack. A screen-reader is installed on the blind user’s computer, and this site is compatible with it.</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Keyboard Navigation Profile (Motor-Impaired): this profile enables motor-impaired persons to operate the website using the keyboard Tab, Shift+Tab, and the Enter keys. Users can also use shortcuts such as “M” (menus), “H” (headings), “F” (forms), “B” (buttons), and “G” (graphics) to jump to specific elements.</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="process-are pt-3">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="consen-section-titl">
|
||||||
|
<h3 className="mb-2">Additional UI, design, and readability adjustments</h3>
|
||||||
|
<div className="service-details-icon-box ">
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<ul className="list-unstyled">
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Font adjustments users can increase and decrease its size, change its family (type), adjust the spacing, alignment, line height, and more.</span>
|
||||||
|
</li>
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Color adjustments users can select various color contrast profiles such as light, dark, inverted, and monochrome. Additionally, users can swap color schemes of titles, texts, and backgrounds with over seven different coloring options.</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Animations epileptic users can stop all running animations with the click of a button. Animations controlled by the interface include videos, GIFs, and CSS flashing transitions.</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Content highlighting users can choose to emphasize essential elements such as links and titles. They can also choose to highlight focused or hovered elements only.</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Audio muting users with hearing devices may experience headaches or other issues due to automatic audio playing. This option lets users mute the entire website instantly.</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Cognitive disorders we utilize a search engine linked to Wikipedia and Wiktionary, allowing people with cognitive disorders to decipher meanings of phrases, initials, slang, and others.</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Additional functions we allow users to change cursor color and size, use a printing mode, enable a virtual keyboard, and many other functions.</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* <div className="col-lg-6 mb-4 mb-lg-0 ">
|
||||||
|
<img src="/assets/images/careers/benefits .webp" alt="Benefits" className="img-fluid pl-50" />
|
||||||
|
</div> */}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="new-one pt-3">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="consen-section-titl">
|
||||||
|
<h3 className="mb-2">Assistive technology and browser compatibility</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
{" "}
|
||||||
|
We aim to support as many browsers and assistive technologies as possible, so our users can choose the best fitting tools for them, with as few limitations as possible. Therefore, we have worked very hard to be able to support all major systems that comprise over 95% of the user market share, including Google Chrome, Mozilla Firefox, Apple Safari, Opera and Microsoft Edge, JAWS, and NVDA (screen readers), both for Windows and MAC users.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="process-are pb-90">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
{/* <div className="col-lg-6 mb-4 mb-lg-0 ">
|
||||||
|
<img src="/assets/images/careers/benefits .webp" alt="Benefits" className="img-fluid pr-50" />
|
||||||
|
</div> */}
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="consen-section-titl">
|
||||||
|
<h3 >Notes, comments, and feedback</h3>
|
||||||
|
<div className="service-details-icon-bo ">
|
||||||
|
<p>
|
||||||
|
Despite our very best efforts to allow anybody to adjust the website to their needs, there may still be pages or sections that are not fully accessible, are in the process of becoming accessible, or are lacking an adequate technological solution to make them accessible. Still, we are continually improving our accessibility, adding, updating, improving its options and features, and developing and adopting new technologies. All this is meant to reach the optimal level of accessibility following technological advancements. If you wish to contact the website’s owner, please use the following email info@metatroncubesolutions.com
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* Image - now on the right */}
|
||||||
|
|
||||||
|
<div className="why-choose-us-thumb">
|
||||||
|
<div className="why-choose-us-image">
|
||||||
|
<div className="why-choose-us-shape-thumb bounce-animate">
|
||||||
|
<img src="/assets/images/elements/element-3.webp" alt />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen about Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen feature Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="service-shape">
|
||||||
|
<img src="/assets/images/resource/all-shape3.png" alt />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Team Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start faq Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Blog Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
|
||||||
|
<div className="sub">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default Accessiblity;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
5
pages/api/hello.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
|
||||||
|
|
||||||
|
export default function handler(req, res) {
|
||||||
|
res.status(200).json({ name: 'John Doe' })
|
||||||
|
}
|
||||||
97
pages/blog.js
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
import Breadcumb from "@/src/components/Breadcumb";
|
||||||
|
import PagginationFuntion from "@/src/components/PagginationFuntion";
|
||||||
|
import BlogBan from "@/src/components/services-details-banner/blog";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import { getPagination, pagination } from "@/src/utils";
|
||||||
|
import { BlogData } from "@/utils/constant.utils";
|
||||||
|
import Link from "next/link";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
const Blog = () => {
|
||||||
|
let sort = 3;
|
||||||
|
const [active, setActive] = useState(1);
|
||||||
|
const [state, setstate] = useState([]);
|
||||||
|
useEffect(() => {
|
||||||
|
pagination(".single_box_", sort, active);
|
||||||
|
let list = document.querySelectorAll(".single_box_");
|
||||||
|
setstate(getPagination(list.length, sort));
|
||||||
|
}, [active]);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Top 5 SEO Trends for 2025 | Metatroncube"
|
||||||
|
description="Explore the latest SEO strategies for 2025. Stay ahead with insights from Metatroncube Software Solutions." />
|
||||||
|
<Layout>
|
||||||
|
<BlogBan pageName={"BLOG"} />
|
||||||
|
<div className="blog-area style-two page">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
{
|
||||||
|
BlogData?.map((blog) => {
|
||||||
|
return (
|
||||||
|
<div className="col-lg-4 col-md-6 single_box_" key={blog?.id}>
|
||||||
|
<div className="single-blog-box">
|
||||||
|
<div className="single-blog-thumb">
|
||||||
|
<img src={blog?.image} alt={blog?.slug} />
|
||||||
|
<div className="blog-top-button">
|
||||||
|
<a href="#"> {blog?.category} </a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="em-blog-content">
|
||||||
|
<div className="meta-blog-text">
|
||||||
|
<p> {blog?.date} </p>
|
||||||
|
</div>
|
||||||
|
<div className="em-blog-title">
|
||||||
|
<h2>
|
||||||
|
<Link legacyBehavior href={`${blog?.slug}`}>
|
||||||
|
<a>
|
||||||
|
{blog?.title.length > 50
|
||||||
|
? blog.title.substring(0, 40) + '...'
|
||||||
|
: blog.title}
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div className="em-blog-icon">
|
||||||
|
<div className="em-blog-thumb">
|
||||||
|
<img src="\assets\images\blog\blog-user-cal\admin.webp" alt={blog?.user} />
|
||||||
|
</div>
|
||||||
|
<div className="em-blog-icon-title">
|
||||||
|
<h6> {blog?.user} </h6>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="blog-button">
|
||||||
|
<Link legacyBehavior href={`${blog?.slug}`}>
|
||||||
|
<a>
|
||||||
|
{" "}
|
||||||
|
Learn More <i className="bi bi-plus" />{" "}
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
<div className="col-12">
|
||||||
|
<div className="pagination justify-content-center mt-4">
|
||||||
|
<PagginationFuntion
|
||||||
|
setActive={setActive}
|
||||||
|
active={active}
|
||||||
|
state={state}
|
||||||
|
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default Blog;
|
||||||
192
pages/careers.js
Normal file
@ -0,0 +1,192 @@
|
|||||||
|
import Counter from "@/src/components/Counter";
|
||||||
|
import Careerss from "@/src/components/services-details-banner/careerss.js";
|
||||||
|
import ProssessBar from "@/src/components/ProssessBar";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import { brandListProps, caseStudyProps } from "@/src/sliderProps";
|
||||||
|
import dynamic from "next/dynamic";
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
|
||||||
|
const CaseStudies = dynamic(() => import("@/src/components/isotope/CarrerCase-study"), {
|
||||||
|
ssr: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
const Careers = () => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Careers - Metatroncube Software Solutions | Innovative & User-Centric Tech Services in Waterloo" description="Welcome to Your Next Big Opportunity Why Join Metatroncube Software Solutions? Be part of a dynamic team where innovation, growth, and impact come together. At Metatroncube Software Solutions, we don’t just build digital solutions—we build dreams. Founded by a passionate team, our mission is to simplify complex problems and deliver results that exceed expectations. We're" />
|
||||||
|
<Layout footer={1}>
|
||||||
|
{/* Breadcrumb */}
|
||||||
|
<Careerss pageName={"CAREERS"} />
|
||||||
|
|
||||||
|
{/* Section: Welcome */}
|
||||||
|
<div className="ceo-cod pb-90 pt-90">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
{/* Text Section */}
|
||||||
|
<div className="col-lg-6 col-md-12 mb-4 mb-lg-0 pl-50">
|
||||||
|
<div>
|
||||||
|
<div className="consen-section-title">
|
||||||
|
<h5>Welcome to Your Next Big Opportunity</h5>
|
||||||
|
</div>
|
||||||
|
<div className="consen-section-title">
|
||||||
|
<h2>Why Join <span>Metatroncube Software </span>Solutions?</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h6>
|
||||||
|
Be part of a dynamic team where innovation, growth, and impact come together.
|
||||||
|
</h6>
|
||||||
|
<div className="lines style-three pt-3 pb-2">
|
||||||
|
<div className="line" />
|
||||||
|
</div>
|
||||||
|
<p className="about-text2">
|
||||||
|
At Metatroncube Software Solutions, we don’t just build digital solutions—we build dreams. Founded by a passionate team, our mission is to simplify complex problems and deliver results that exceed expectations.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p className="about-text2">
|
||||||
|
Here We believe in fostering a culture where every voice matters. Whether you’re a problem-solver, visionary, or tech wizard, there’s a place for you here to grow and make a real impact.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{/* Image Section */}
|
||||||
|
<div className="col-lg-6 col-md-12 text-center pl-50">
|
||||||
|
<img src="/assets/images/careers/why-join-us .webp" alt="Why join metatroncube software solutions" className="img-fluid mb-3" />
|
||||||
|
|
||||||
|
<div className="about-shape-thumb bounce-animate">
|
||||||
|
<img src="/assets/images/careers/why-join-us-front.webp" alt="Welcome to your next big opportunity" className="img-fluid" />
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="position-relative">
|
||||||
|
|
||||||
|
<img
|
||||||
|
src="/assets/images/about/3.webp"
|
||||||
|
alt="Shape 2"
|
||||||
|
className="img-fluid position-absolute top-0 end-0 bounce-animate2"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Section: What We Offer */}
|
||||||
|
<div className="process-area color-bg pb-90 pt-90">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
|
||||||
|
{/* Image - order for responsive change */}
|
||||||
|
<div className="col-lg-6 mb-4 mb-lg-0 order-1 order-lg-0">
|
||||||
|
<img src="/assets/images/careers/benefits .webp" alt="What we offer" className="img-fluid" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Text - order for responsive change */}
|
||||||
|
<div className="col-lg-6 pb-90 pt-90 pl-50 order-0 order-lg-1">
|
||||||
|
<div className="consen-section-title">
|
||||||
|
<h5>Benefits That Matter</h5>
|
||||||
|
</div>
|
||||||
|
<div className="consen-section-title">
|
||||||
|
<h2>What We<span> Offer</span></h2>
|
||||||
|
</div>
|
||||||
|
<p className="pt-3">
|
||||||
|
<strong>
|
||||||
|
From career growth to work-life balance, discover why Metatroncube is the right place for you.
|
||||||
|
</strong>
|
||||||
|
</p>
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<ul className="list-unstyled">
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle mr-2 me-2" />
|
||||||
|
<span><strong>Opportunities to Innovate:</strong> Work on cutting-edge projects that challenge you to think outside the box.</span>
|
||||||
|
</li>
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle mr-2 me-2" />
|
||||||
|
<span><strong>Global Exposure:</strong> Collaborate with international clients and diverse teams.</span>
|
||||||
|
</li>
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle mr-2 me-2" />
|
||||||
|
<span><strong>Career Growth:</strong> Advance your skills with our mentorship programs, certifications, and workshops.</span>
|
||||||
|
</li>
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle mr-2 me-2" />
|
||||||
|
<span><strong>Inclusive Culture:</strong> Be part of a workplace that values diversity, equity, and belonging.</span>
|
||||||
|
</li>
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle mr-2 me-2" />
|
||||||
|
<span><strong>Employee-First Approach:</strong> Enjoy flexible work policies, wellness programs, and a focus on work-life balance.</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{/* Section: Our Vision */}
|
||||||
|
<div className="style-two pt-90 pb-90">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
{/* Text */}
|
||||||
|
<div className="col-lg-7 col-md-6 mb-4 mb-lg-0">
|
||||||
|
<div className="consen-section-title">
|
||||||
|
<h5>Guided by Purpose, Driven by Passion</h5>
|
||||||
|
</div>
|
||||||
|
<div className="consen-section-title">
|
||||||
|
<h2>Our<span> Vision</span></h2>
|
||||||
|
</div>
|
||||||
|
<p>
|
||||||
|
<strong>
|
||||||
|
Join us in shaping the future of technology and delivering meaningful solutions.
|
||||||
|
</strong>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
At Metatroncube, we’re driven by the idea that technology can bridge gaps,
|
||||||
|
empower businesses, and simplify lives.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
If you’re ready for a journey of growth, innovation, and collaboration,
|
||||||
|
we’d love to have you. Explore our openings below.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Image */}
|
||||||
|
<div className="col-lg-5 col-md-6 text-center pl-50">
|
||||||
|
<img
|
||||||
|
src="/assets/images/careers/guided .webp"
|
||||||
|
alt="Our vision"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Section: Case Studies */}
|
||||||
|
|
||||||
|
<div className="case-study-area style-three color-bg">
|
||||||
|
<div className="container">
|
||||||
|
<CaseStudies />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="sub color-bg">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Careers;
|
||||||
254
pages/contact.js
Normal file
@ -0,0 +1,254 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useState, useEffect } from "react";
|
||||||
|
import ReCAPTCHA from "react-google-recaptcha";
|
||||||
|
import axios from "axios";
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import Contacts from "@/src/components/services-details-banner/contacts.js";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
|
||||||
|
const Contact = () => {
|
||||||
|
const [formData, setFormData] = useState({
|
||||||
|
name: "",
|
||||||
|
phone: "",
|
||||||
|
email: "",
|
||||||
|
subject: "",
|
||||||
|
message: "",
|
||||||
|
});
|
||||||
|
|
||||||
|
const [formErrors, setFormErrors] = useState({});
|
||||||
|
const [captchaToken, setCaptchaToken] = useState(null);
|
||||||
|
const [alert, setAlert] = useState({ show: false, type: "", message: "" });
|
||||||
|
|
||||||
|
const handleChange = (e) => {
|
||||||
|
const { name, value } = e.target;
|
||||||
|
setFormData((prev) => ({ ...prev, [name]: value }));
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleCaptchaChange = (token) => {
|
||||||
|
console.log("✅ Captcha token:", token);
|
||||||
|
setCaptchaToken(token);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSubmit = async (e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
const errors = {};
|
||||||
|
if (!formData.name.trim()) errors.name = "Name is required.";
|
||||||
|
if (!formData.phone.trim()) errors.phone = "Phone is required.";
|
||||||
|
if (!formData.email.trim()) errors.email = "Email is required.";
|
||||||
|
if (!formData.subject.trim()) errors.subject = "Subject is required.";
|
||||||
|
if (!formData.message.trim()) errors.message = "Message is required.";
|
||||||
|
if (!captchaToken) errors.captcha = "Please verify the CAPTCHA.";
|
||||||
|
|
||||||
|
setFormErrors(errors);
|
||||||
|
if (Object.keys(errors).length > 0) return;
|
||||||
|
|
||||||
|
const emailData = {
|
||||||
|
...formData,
|
||||||
|
message: `Subject: ${formData.subject}<br /><br />Message: ${formData.message}`,
|
||||||
|
to: "info@metatroncubesolutions.com",
|
||||||
|
senderName: "Metatroncube Contact Page",
|
||||||
|
recaptchaToken: captchaToken,
|
||||||
|
};
|
||||||
|
|
||||||
|
console.log("🚀 Submitting form data:", emailData);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const res = await axios.post("https://mailserver.metatronnest.com/send", emailData, {
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
});
|
||||||
|
|
||||||
|
setAlert({
|
||||||
|
show: true,
|
||||||
|
type: "success",
|
||||||
|
message: res?.data?.message || "Message sent successfully!",
|
||||||
|
});
|
||||||
|
|
||||||
|
setFormData({
|
||||||
|
name: "",
|
||||||
|
phone: "",
|
||||||
|
email: "",
|
||||||
|
subject: "",
|
||||||
|
message: "",
|
||||||
|
});
|
||||||
|
setCaptchaToken(null);
|
||||||
|
setFormErrors({});
|
||||||
|
} catch (error) {
|
||||||
|
console.error("❌ Error sending email:", error);
|
||||||
|
setAlert({
|
||||||
|
show: true,
|
||||||
|
type: "danger",
|
||||||
|
message: "Failed to send message. Please try again later.",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (alert.show) {
|
||||||
|
const timer = setTimeout(() => {
|
||||||
|
setAlert((prev) => ({ ...prev, show: false }));
|
||||||
|
}, 5000);
|
||||||
|
return () => clearTimeout(timer);
|
||||||
|
}
|
||||||
|
}, [alert.show]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead
|
||||||
|
title="Contact - Metatroncube Software Solutions | Innovative & User-Centric Tech Services in Waterloo"
|
||||||
|
description="Let's Connect. Drop us a Line. Whether you have a question, a project idea, or just want to chat, we're here for you."
|
||||||
|
/>
|
||||||
|
<Layout>
|
||||||
|
<Contacts pageName="CONTACT US" />
|
||||||
|
|
||||||
|
<div className="contact-us">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-sm-12 col-md-6 col-lg-6 pl-0 pr-0">
|
||||||
|
<div className="contact_from_box">
|
||||||
|
<div className="contact_title pb-4">
|
||||||
|
<h3>Get In Touch</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{alert.show && (
|
||||||
|
<div className={`alert alert-${alert.type}`}>{alert.message}</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<form onSubmit={handleSubmit}>
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6">
|
||||||
|
<div className="form_box mb-30">
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
name="name"
|
||||||
|
placeholder="Full Name"
|
||||||
|
value={formData.name}
|
||||||
|
onChange={handleChange}
|
||||||
|
/>
|
||||||
|
{formErrors.name && (
|
||||||
|
<small className="text-danger">{formErrors.name}</small>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-lg-6">
|
||||||
|
<div className="form_box mb-30">
|
||||||
|
<input
|
||||||
|
type="email"
|
||||||
|
name="email"
|
||||||
|
placeholder="Email Address"
|
||||||
|
value={formData.email}
|
||||||
|
onChange={handleChange}
|
||||||
|
/>
|
||||||
|
{formErrors.email && (
|
||||||
|
<small className="text-danger">{formErrors.email}</small>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-lg-6">
|
||||||
|
<div className="form_box mb-30">
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
name="phone"
|
||||||
|
placeholder="Phone Number"
|
||||||
|
value={formData.phone}
|
||||||
|
onChange={handleChange}
|
||||||
|
/>
|
||||||
|
{formErrors.phone && (
|
||||||
|
<small className="text-danger">{formErrors.phone}</small>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-lg-6">
|
||||||
|
<div className="form_box mb-30">
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
name="subject"
|
||||||
|
placeholder="Subject"
|
||||||
|
value={formData.subject}
|
||||||
|
onChange={handleChange}
|
||||||
|
/>
|
||||||
|
{formErrors.subject && (
|
||||||
|
<small className="text-danger">{formErrors.subject}</small>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="form_box mb-30">
|
||||||
|
<textarea
|
||||||
|
name="message"
|
||||||
|
placeholder="Write Message"
|
||||||
|
value={formData.message}
|
||||||
|
onChange={handleChange}
|
||||||
|
/>
|
||||||
|
{formErrors.message && (
|
||||||
|
<small className="text-danger">{formErrors.message}</small>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-lg-12 mb-3">
|
||||||
|
<ReCAPTCHA
|
||||||
|
sitekey="6LekfpwrAAAAAOTwuP1d2gg-Fv9UEsAjE2gjOQJl"
|
||||||
|
onChange={handleCaptchaChange}
|
||||||
|
/>
|
||||||
|
{formErrors.captcha && (
|
||||||
|
<small className="text-danger">{formErrors.captcha}</small>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="quote_button">
|
||||||
|
<button className="btn" type="submit">
|
||||||
|
Send A Message
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-sm-12 col-md-6 col-lg-6 pl-0 pr-0 contact-box">
|
||||||
|
<div className="cda-content-area">
|
||||||
|
<div className="cda-single-content d-flex">
|
||||||
|
<div className="cda-content-inner">
|
||||||
|
<h4 className="mid-container">Let's Connect</h4>
|
||||||
|
<h1>Drop us a Line.</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="cda-single-content hr d-flex">
|
||||||
|
<div className="cda-content-inner">
|
||||||
|
<p>
|
||||||
|
Whether you have a question, a project idea, or just want to chat about your digital needs, our team is here to listen and provide tailored solutions. Reach out to Metatroncube Software Solutions and start your journey towards innovative digital success.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="cda-single-content hr d-flex">
|
||||||
|
<div className="cda-content-inner">
|
||||||
|
<h4>Our Email Address</h4>
|
||||||
|
<p>info@metatroncubesolutions.com</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="sub color-bg">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Contact;
|
||||||
374
pages/faq.js
Normal file
@ -0,0 +1,374 @@
|
|||||||
|
import Accordion from 'react-bootstrap/Accordion';
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Link from "next/link";
|
||||||
|
|
||||||
|
import Ffaq from "@/src/components/services-details-banner/ffaq.js";
|
||||||
|
import SubCard from '@/src/components/AboveFooter';
|
||||||
|
import ConsenHead from '@/src/ConsenHead';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const Faq = () => {
|
||||||
|
// First 4 FAQs from original faqsData
|
||||||
|
const faqsDataPart1 = [
|
||||||
|
{ id: 1, title: "What is digital transformation, and why is it important for traditional businesses?", content: "Digital transformation involves integrating digital technology into all areas of a business, fundamentally changing how you operate and deliver value to customers. It's crucial for staying competitive and relevant in the ever-evolving digital landscape.", animationDelay: ".5s" },
|
||||||
|
{ id: 2, title: "How can we transition to digital without losing the essence of our brand?", content: "We focus on understanding your brand’s core values and message to ensure that your digital presence reflects your brand's unique identity. This involves creating a consistent brand voice and imagery across all digital platforms.", animationDelay: ".5s" },
|
||||||
|
{ id: 3, title: "What are the benefits of effective online marketing for restaurants?", content: "Online marketing can significantly increase your restaurant's visibility, attract new customers, and enhance customer engagement through social media, online reviews, and a strong online presence.", animationDelay: ".5s" },
|
||||||
|
{ id: 4, title: "How can Metatroncube help in managing negative online reviews?", content: "We provide strategies for proactive review management, encouraging positive reviews, and professionally responding to negative feedback, turning challenges into opportunities to showcase excellent customer service.", animationDelay: ".5s" },
|
||||||
|
];
|
||||||
|
|
||||||
|
// Remaining 5 FAQs from original faqsData
|
||||||
|
const faqsDataPart2 = [
|
||||||
|
{ id: 5, title: "Can digital lead generation truly benefit real estate agents?", content: "Absolutely. Digital lead generation, through targeted online ads and local SEO, can significantly increase your visibility to potential clients, helping you stand out in the competitive real estate market.", animationDelay: ".5s" },
|
||||||
|
{ id: 6, title: "What strategies do you recommend for real estate agents to improve their online presence?", content: "We recommend a combination of an updated, user-friendly website, active social media engagement, and targeted digital marketing campaigns to enhance your online presence and attract potential clients.", animationDelay: ".5s" },
|
||||||
|
{ id: 7, title: "How can mortgage agents build a trustworthy online brand?", content: "Building a trustworthy online brand involves creating consistent, valuable content, showcasing client testimonials, and engaging with your audience to establish credibility and authority in your field.", animationDelay: ".5s" },
|
||||||
|
{ id: 8, title: "How can small businesses manage social media effectively?", content: "Small businesses can manage social media effectively by maintaining a consistent posting schedule, creating engaging and relevant content, and actively interacting with their audience to build a loyal community.", animationDelay: ".5s" },
|
||||||
|
{ id: 9, title: "What are the key elements of a successful e-commerce platform for physical stores?", content: "A successful e-commerce platform should offer an easy-to-navigate layout, mobile optimization, secure payment options, and a seamless shopping experience that mirrors the in-store experience.", animationDelay: ".5s" },
|
||||||
|
];
|
||||||
|
|
||||||
|
// First 5 FAQs from original faqData
|
||||||
|
const faqDataPart1 = [
|
||||||
|
{ id: 1, title: "How can Metatroncube assist in setting up an e-commerce site for my store?", content: " We can help by designing a user-friendly e-commerce website, ensuring mobile optimization, and integrating secure payment gateways to provide a smooth online shopping experience for your customers.", animationDelay: ".5s" },
|
||||||
|
{ id: 2, title: "What's the importance of content marketing for service-based businesses?", content: "Content marketing helps establish your business as an industry authority, increases engagement, and drives lead generation. It's a vital tool for building long-term relationships with your audience.", animationDelay: ".5s" },
|
||||||
|
{ id: 3, title: "How can I ensure my content marketing strategy is effective?", content: "Your strategy should focus on creating valuable, relevant content that addresses your audience's needs and interests. Storytelling and regular engagement are key to connecting with potential clients.", animationDelay: ".5s" },
|
||||||
|
{ id: 4, title: "How does Metatroncube address the challenges faced by businesses in digital transformation?", content: "We offer tailored solutions that simplify the digital transition, provide comprehensive support throughout the process, and create strategies that align with your business objectives.", animationDelay: ".5s" },
|
||||||
|
{ id: 5, title: "Can digital marketing strategies be cost-effective for small businesses?", content: "Yes, digital marketing offers cost-effective solutions with measurable results. We focus on strategies that provide the best ROI, tailored to fit the budget and goals of small businesses.", animationDelay: ".5s" },
|
||||||
|
];
|
||||||
|
|
||||||
|
// Remaining 5 FAQs from original faqData
|
||||||
|
const faqDataPart2 = [
|
||||||
|
{ id: 6, title: "How can we measure the success of our digital marketing efforts?", content: "Success can be measured using various metrics such as website traffic, engagement rates, conversion rates, and ROI. We also provide detailed analytics to track and optimize your digital marketing campaigns.", animationDelay: ".5s" },
|
||||||
|
{ id: 7, title: "What kind of support does Metatroncube offer for maintaining an online presence?", content: "We offer ongoing support in website maintenance, content creation, social media management, and digital marketing strategies to ensure your online presence remains strong and effective.", animationDelay: ".5s" },
|
||||||
|
{ id: 8, title: "How often should we update our digital marketing strategies?", content: "The digital landscape is constantly evolving, so it's important to regularly review and update your strategies. We recommend a quarterly review to stay ahead of trends and adjust tactics as needed.", animationDelay: ".5s" },
|
||||||
|
{ id: 9, title: "What makes Metatroncube unique in digital marketing services?", content: "Our approach is client-centric, focusing on customized solutions that align with your specific business goals. Our team stays updated with the latest trends to ensure innovative and effective strategies.", animationDelay: ".5s" },
|
||||||
|
{ id: 10, title: "How can we start working with Metatroncube for our digital needs?", content: "Getting started is easy. Simply contact us for a consultation, and we'll discuss your business needs, goals, and how we can assist in achieving your digital transformation objectives.", animationDelay: ".5s" },
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
|
const [active, setActive] = useState(faqsDataPart1[0].id);
|
||||||
|
const [data, setData] = useState(faqDataPart1[0].id);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Web & App Development, SEO, Marketing FAQs | Metatroncube"
|
||||||
|
description="Explore FAQs about Web & App Development, SEO, digital marketing, and graphic design. Uncover expert insights and solutions with Metatroncube." />
|
||||||
|
<Layout header={3} footer={3}>
|
||||||
|
<Ffaq pageName={" FAQS"} />
|
||||||
|
<div className="process pt-90 pb-90">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
<div className="col-lg-6 col-md-12 mb-4 mb-lg-0">
|
||||||
|
<div className="consen-section-title pr-50">
|
||||||
|
<h5 className="mt-0">Digital Mastery Unlocked</h5>
|
||||||
|
<h2>
|
||||||
|
Metatroncube FAQs:
|
||||||
|
<span className='d-block'> Web-Apps, SEO, & Digital Marketing</span>
|
||||||
|
</h2>
|
||||||
|
<p>
|
||||||
|
Welcome to Metatroncube’s FAQ page, where we delve into the intricacies of Web-App Development, the nuances of SEO, and the dynamics of Digital Marketing. Our goal is to address your queries and provide insightful answers that empower your digital journey, whether you’re navigating website design, mobile app development, or looking for effective digital marketing strategies.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-md-12 text-center">
|
||||||
|
<div className="process-text">
|
||||||
|
<img
|
||||||
|
src="/assets/images/faq/1 .webp"
|
||||||
|
alt="Metatroncube FAQs:
|
||||||
|
web-apps, SEO, & digital marketing"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="faq pb-90 pt-90 color-bg">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
{/* Content First on Mobile, Second on Desktop */}
|
||||||
|
<div className="col-md-6 order-1 order-md-2">
|
||||||
|
<div id="tab1" className="tab_content">
|
||||||
|
<Accordion defaultActiveKey={faqsDataPart1[0].id.toString()} as="ul" className="accordion">
|
||||||
|
{faqsDataPart1.map((faq) => (
|
||||||
|
<li key={faq.id} className="wow fadeInUp" data-wow-delay={faq.animationDelay}>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Image Second on Mobile, First on Desktop */}
|
||||||
|
<div className="col-md-6 order-2 order-md-1 d-flex align-items-center justify-content-center">
|
||||||
|
<img
|
||||||
|
src="/assets/images/faq/3.webp"
|
||||||
|
alt="Metatroncube FAQs:
|
||||||
|
web-apps, SEO, & digital marketing"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="faq pb-90 pt-90 color-bg">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
{/* Left Column - FAQ */}
|
||||||
|
<div className="col-md-6">
|
||||||
|
<div id="tab2" className="tab_content">
|
||||||
|
<Accordion defaultActiveKey={faqsDataPart2[0].id.toString()} as="ul" className="accordion">
|
||||||
|
{faqsDataPart2.map((faq) => (
|
||||||
|
<li key={faq.id} className="wow fadeInUp" data-wow-delay={faq.animationDelay}>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-md-6 d-flex align-items-center justify-content-center">
|
||||||
|
<img
|
||||||
|
src="/assets/images/faq/5.webp"
|
||||||
|
alt="Metatroncube FAQs:
|
||||||
|
web-apps, SEO, & digital marketing"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="faq pb-90 pt-90">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-md-6 order-1 order-md-2">
|
||||||
|
<div id="tab3" className="tab_content">
|
||||||
|
<Accordion defaultActiveKey={faqDataPart1[0].id.toString()} as="ul" className="accordion">
|
||||||
|
{faqDataPart1.map((faq) => (
|
||||||
|
<li key={faq.id} className="wow fadeInUp" data-wow-delay={faq.animationDelay}>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setData(faq.id === data ? null : faq.id)}
|
||||||
|
className={faq.id === data ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-md-6 order-2 order-md-1 d-flex align-items-center justify-content-center">
|
||||||
|
<img
|
||||||
|
src="/assets/images/faq/6.webp"
|
||||||
|
alt="Metatroncube FAQs:
|
||||||
|
web-apps, SEO, & digital marketing"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="faq pb-90 pt-90">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
{/* Left Column - FAQ */}
|
||||||
|
<div className="col-md-6">
|
||||||
|
<div id="tab4" className="tab_content">
|
||||||
|
<Accordion defaultActiveKey={faqDataPart2[0].id.toString()} as="ul" className="accordion">
|
||||||
|
{faqDataPart2.map((faq) => (
|
||||||
|
<li key={faq.id} className="wow fadeInUp" data-wow-delay={faq.animationDelay}>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setData(faq.id === data ? null : faq.id)}
|
||||||
|
className={faq.id === data ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-md-6 d-flex align-items-center justify-content-center">
|
||||||
|
<img
|
||||||
|
src="/assets/images/faq/4.webp"
|
||||||
|
alt="Metatroncube FAQs:
|
||||||
|
web-apps, SEO, & digital marketing"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="contact justify-content-center color-bg pb-90 pt-90">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
<div className="col-sm-12 col-md-6 mb-4 mb-md-0">
|
||||||
|
<img src="/assets/images/faq/2.webp" className="img-fluid" alt="Get in touch with metatroncube" />
|
||||||
|
</div>
|
||||||
|
<div className="col-sm-12 col-md-6 pl-50">
|
||||||
|
<div className="contact_title pb-4 text-center">
|
||||||
|
<h6>Let's Connect</h6>
|
||||||
|
<h3 className="meta">Get In Touch With Metatroncube</h3>
|
||||||
|
<h6>Your Questions and Ideas Matter to Us</h6>
|
||||||
|
</div>
|
||||||
|
<form onSubmit={(e) => e.preventDefault()} method="POST" id="dreamit-form">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6">
|
||||||
|
<div className="form_box mb-3">
|
||||||
|
<input type="text" name="name" placeholder="Full Name" className="form-control" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6">
|
||||||
|
<div className="form_box mb-3">
|
||||||
|
<input type="email" name="email" placeholder="Email Address" className="form-control" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6">
|
||||||
|
<div className="form_box mb-3">
|
||||||
|
<input type="text" name="phone" placeholder="Phone Number" className="form-control" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6">
|
||||||
|
<div className="form_box mb-3">
|
||||||
|
<input type="text" name="web" placeholder="Subject" className="form-control" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="form_box mb-3">
|
||||||
|
<textarea
|
||||||
|
name="message"
|
||||||
|
id="message"
|
||||||
|
cols={30}
|
||||||
|
rows={5}
|
||||||
|
placeholder="Write Message"
|
||||||
|
className="form-control"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="quote_button text-center">
|
||||||
|
<button className="btn btn-primary" type="submit">
|
||||||
|
Send A Message
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
<div id="status" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{/* <div className="color-bg pb-90 pt-90">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row sub-bgmn align-items-center change-bg">
|
||||||
|
<div className="col-lg-4 col-md-6 p-0">
|
||||||
|
<div className="sub-left-thumb justify-content-center align-items-center">
|
||||||
|
<img src="assets/images/faq/schedule-consultation.webp" className="myImage" alt="Newsletter" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-md-6">
|
||||||
|
<div className="subscribe-right-bx">
|
||||||
|
<h4 className="mb-3 text-center card-color ml-5 myText">
|
||||||
|
Take the First Step Towards Digital Excellence. Book Your Personalized Consultation with Our Experts Today.
|
||||||
|
</h4>
|
||||||
|
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="service-bottom-text pt-0 pb-0">
|
||||||
|
<p>
|
||||||
|
{" "}
|
||||||
|
|
||||||
|
|
||||||
|
<Link legacyBehavior href="https://calendly.com/metatroncubeswsolutions/request-consultation?month=2025-05">
|
||||||
|
<a className="mt-4 border">Schedule Consultation</a>
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="status" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-2" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div> */}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="call-do-action-section">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-12 pl-5 pr-5">
|
||||||
|
<div className="call-do-action-content text-center">
|
||||||
|
<h2 className="text-white">
|
||||||
|
Take the First Step Towards Digital Excellence.
|
||||||
|
<span className="sub-title d-block">Book Your Personalized Consultation with Our Experts Today.</span>
|
||||||
|
</h2>
|
||||||
|
<div className="btn-common btn-cda mt-40">
|
||||||
|
<Link legacyBehavior href="https://calendly.com/metatroncubeswsolutions/request-consultation?month=2025-05">
|
||||||
|
<a>Schedule Consultation</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="sub pt-5">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Faq;
|
||||||
52
pages/index.js
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import BrandSlider from "@/src/components/BrandSlider";
|
||||||
|
import { Swiper, SwiperSlide } from "swiper/react";
|
||||||
|
import Banner from "@/src/components/Home/Banner";
|
||||||
|
import AboutSection from "@/src/components/Home/AboutSection";
|
||||||
|
import Cards from "@/src/components/Home/Cards";
|
||||||
|
import FaqArea from "@/src/components/Home/FaqArea";
|
||||||
|
import CounterSection from "@/src/components/Home/CounterSection";
|
||||||
|
import { testimonial_list_slider } from "@/src/sliderProps";
|
||||||
|
import dynamic from "next/dynamic";
|
||||||
|
import HomeContact from "@/src/components/HomeContact";
|
||||||
|
import Link from "next/link";
|
||||||
|
import ServicesSection from "@/src/components/Home/ServicesSection";
|
||||||
|
import CallToAction from "@/src/components/Home/CallToAction";
|
||||||
|
import TestimonialSection from "@/src/components/Home/TestimonialSection";
|
||||||
|
import AboveFooter from "@/src/components/AboveFooter";
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import BlogSection from "@/src/components/Home/BlogSection";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const CaseStudies2 = dynamic(
|
||||||
|
() => import("@/src/components/isotope/CaseStudies2"),
|
||||||
|
{
|
||||||
|
ssr: false,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
const Index3 = () => {
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Layout header={3} footer={3}>
|
||||||
|
<ConsenHead title="Metatroncube: Leaders in Web & Mobile Dev, SEO, Digital Marketing" description="Metatroncube Software Solutions: Your go-to agency for cutting-edge web & app development, SEO, digital marketing, and graphic design services" />
|
||||||
|
<Banner />
|
||||||
|
<Cards />
|
||||||
|
<AboutSection />
|
||||||
|
<FaqArea />
|
||||||
|
<ServicesSection />
|
||||||
|
<BrandSlider />
|
||||||
|
<CounterSection />
|
||||||
|
<CallToAction />
|
||||||
|
<TestimonialSection />
|
||||||
|
<HomeContact />
|
||||||
|
{/* End Contact Section */}
|
||||||
|
<BlogSection />
|
||||||
|
|
||||||
|
<SubCard />
|
||||||
|
</Layout>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default Index3;
|
||||||
25
pages/portfolio.js
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
import Portfolios from "@/src/components/services-details-banner/portfoliobanner";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import dynamic from "next/dynamic";
|
||||||
|
const CaseStudies = dynamic(
|
||||||
|
() => import("@/src/components/isotope/CaseStudies"),
|
||||||
|
{
|
||||||
|
ssr: false,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
const Portfolio = () => {
|
||||||
|
return (
|
||||||
|
<Layout>
|
||||||
|
<Portfolios pageName={"PORTFOLIO"} />
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen case study Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="case-study-area style-three">
|
||||||
|
<div className="container">
|
||||||
|
<CaseStudies />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default Portfolio;
|
||||||
396
pages/privacy-policy.js
Normal file
@ -0,0 +1,396 @@
|
|||||||
|
import Counter from "@/src/components/Counter";
|
||||||
|
import Faqs from "@/src/components/Faqs";
|
||||||
|
import ProgressBar from "@/src/components/ProgressBar";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Access from "@/src/components/services-details-banner/access.js";
|
||||||
|
import Link from "next/link";
|
||||||
|
import Privacy from "@/src/components/services-details-banner/privacy.js";
|
||||||
|
import SubCard from '../src/components/AboveFooter';
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
|
||||||
|
|
||||||
|
const Policy = ({ pageName }) => {
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Privacy Policy of Metatroncube Software Solutions - Metatroncube Software Solutions | Innovative & User-Centric Tech Services in Waterloo"
|
||||||
|
description="Introduction:Welcome to Metatroncube Software Solutions! We are committed to protecting the privacy and security of your personal information. This Privacy Policy outlines our practices regarding the collection, use, and disclosure of your data when you use our services, and your privacy rights under applicable law.Scope and Consent:By accessing or using our services, you acknowledge that" />
|
||||||
|
<Layout>
|
||||||
|
<Privacy pageName={"PRIVACY POLICY"} />
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen feature Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen about Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
|
||||||
|
<div className="process-are pt-90">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
{/* <div className="col-lg-6 mb-4 mb-lg-0 ">
|
||||||
|
<img src="/assets/images/careers/benefits .webp" alt="Benefits" className="img-fluid pl-50" />
|
||||||
|
</div> */}
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="consen-title">
|
||||||
|
<h4>Introduction:</h4>
|
||||||
|
</div>
|
||||||
|
<p className="mb-3">
|
||||||
|
Welcome to Metatroncube Software Solutions! We are committed to protecting the privacy and security of your personal information. This Privacy Policy outlines our practices regarding the collection, use, and disclosure of your data when you use our services, and your privacy rights under applicable law.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="process-are">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="consen-title">
|
||||||
|
<h4 className="mt-3">Scope and Consent:</h4>
|
||||||
|
</div>
|
||||||
|
<p>
|
||||||
|
By accessing or using our services, you acknowledge that you have read this Privacy Policy and understand your rights and responsibilities. You consent to the collection, use, and sharing of your information as described in this policy.
|
||||||
|
</p>
|
||||||
|
<h4 className="mb-2 pt-3"> Definitions:</h4>
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<ul className="list-unstyled">
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>“Services” refers to our website, software products, and related services.</span>
|
||||||
|
</li>
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>“Personal Data” is any information that can identify you as an individual.</span>
|
||||||
|
</li>
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>“Usage Data” is automatically collected data generated by the use of our services or from the service infrastructure itself (such as duration of a page visit).</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* <div className="col-lg-6 mb-4 mb-lg-0 ">
|
||||||
|
<img src="/assets/images/careers/benefits .webp" alt="Benefits" className="img-fluid pl-50" />
|
||||||
|
</div> */}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="process-are">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
{/*
|
||||||
|
<div className="col-lg-6 mb-4 mb-lg-0 ">
|
||||||
|
<img src="/assets/images/careers/benefits .webp" alt="Benefits" className="img-fluid pl-50" />
|
||||||
|
</div> */}
|
||||||
|
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<h4 className=" pt-3">Information Collection and Use:</h4>
|
||||||
|
<p>
|
||||||
|
We collect several types of information for various purposes to provide and improve our service to you.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p className="bold mb-2">Types of Data Collected:</p>
|
||||||
|
|
||||||
|
<p className="bold mb-2"> 1.Personal Data</p>
|
||||||
|
<div className="consen-section-titl">
|
||||||
|
<div className="service-details-icon-box ">
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<ul className="list-unstyled">
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Email address</span>
|
||||||
|
</li>
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>First name and last name</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Phone number</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Other relevant information</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p className="bold pt-3 mb-2"> 2.Usage Data</p>
|
||||||
|
<div className="consen-section-titl">
|
||||||
|
<div className="service-details-icon-box ">
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<ul className="list-unstyled">
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>We may also collect information on how the Service is accessed and used. This Usage Data may include information such as your computer’s Internet Protocol address (IP address), browser type, browser version, the pages of our Services that you visit, the time and date of your visit, the time spent on those pages, unique device identifiers, and other diagnostic data.</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="process-are pt-3">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="consen-section-titl">
|
||||||
|
<h4>Cookies and Tracking Data:</h4>
|
||||||
|
<p>We use cookies and similar tracking technologies to monitor activity on our Services and store certain information. You can instruct your browser to refuse all cookies or indicate when a cookie is being sent.</p>
|
||||||
|
|
||||||
|
<h4 className="pt-3">Use of Data:</h4>
|
||||||
|
<p className="mb-2">Metatroncube Software Solutions uses the collected data for various purposes:</p>
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="widget-service-details-icon ">
|
||||||
|
<ul className="list-unstyled ">
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Font adjustments users can increase and decrease its size, change its family (type), adjust the spacing, alignment, line height, and more.</span>
|
||||||
|
</li>
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>To provide and maintain our Services</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>To notify you about changes to our Services</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>To allow you to participate in interactive features of our Services when you choose to do so</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>To provide customer support</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>To gather analysis or valuable information so that we can improve our Services</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>To monitor the usage of our Services</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>To detect, prevent, and address technical issues</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* <div className="col-lg-6 mb-4 mb-lg-0 ">
|
||||||
|
<img src="/assets/images/careers/benefits .webp" alt="Benefits" className="img-fluid pl-50" />
|
||||||
|
</div> */}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="process-are pt-3">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
{/* <div className="col-lg-6 mb-4 mb-lg-0 ">
|
||||||
|
<img src="/assets/images/careers/benefits .webp" alt="Benefits" className="img-fluid pr-50" />
|
||||||
|
</div> */}
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="consen-section-titl ">
|
||||||
|
<div className="consen-section-titl">
|
||||||
|
<h4>Legal Basis for Processing Personal Data:</h4>
|
||||||
|
<p className="">
|
||||||
|
{" "}
|
||||||
|
We process your personal data in accordance with the law, such as:
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<h4 className="pt-3 pb-2">Notes, comments, and feedback</h4>
|
||||||
|
<div className="consen-section-titl">
|
||||||
|
<div className="service-details-icon-box ">
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<ul className="list-unstyled">
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Your consent</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>The need to perform a contract with you</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>The need to comply with legal obligations</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>Our legitimate business interests, such as improving our Services</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen about Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen feature Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="service-shape">
|
||||||
|
<img src="assets/images/resource/all-shape3.png" alt />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="process-are">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
|
||||||
|
{/* Text - now on the left */}
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="consen-titl pt-3">
|
||||||
|
<h4>Retention of Data:</h4>
|
||||||
|
</div>
|
||||||
|
<p className="mt-2">
|
||||||
|
We will retain your Personal Data only for as long as is necessary for the purposes set out in this Privacy Policy.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div className="consen-title pt-2">
|
||||||
|
<h4>Transfer of Data:</h4>
|
||||||
|
</div>
|
||||||
|
<p className="mt-2">
|
||||||
|
Your information, including Personal Data, may be transferred to — and maintained on — computers located outside of your jurisdiction where the data protection laws may differ from those of your jurisdiction.
|
||||||
|
</p>
|
||||||
|
<h4 className="pt-3 "> Disclosure of Data:</h4>
|
||||||
|
<p className="mb-2">We may disclose personal information in good faith when such action is necessary for the following:</p>
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<ul className="list-unstyled">
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>To comply with a legal obligation</span>
|
||||||
|
</li>
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>To protect and defend the rights or property of Metatroncube Software Solutions</span>
|
||||||
|
</li>
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>To prevent or investigate possible wrongdoing in connection with the Services </span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>To protect the personal safety of users of the Services or the public</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li className="mb-3 d-flex">
|
||||||
|
<i className="bi bi-arrow-right-circle me-2 pr-2" />
|
||||||
|
<span>To protect against legal liability</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* <div className="col-lg-6 mb-4 mb-lg-0 ">
|
||||||
|
<img src="/assets/images/careers/benefits .webp" alt="Benefits" className="img-fluid pl-50" />
|
||||||
|
</div> */}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="process-are pt-3 pb-90">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
{/* <div className="col-lg-6 mb-4 mb-lg-0 ">
|
||||||
|
<img src="/assets/images/careers/benefits .webp" alt="Benefits" className="img-fluid pl-50" />
|
||||||
|
</div> */}
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="consen-section-titl">
|
||||||
|
<h4 className=" bold">Security of Data:</h4>
|
||||||
|
<p className="mt-2">The security of your data is important to us, but no method of transmission over the Internet or method of electronic storage is 100% secure. We strive to use commercially acceptable means to protect your Personal Data.</p>
|
||||||
|
|
||||||
|
<h4 className="bold pt-3">Children’s Privacy:</h4>
|
||||||
|
<p className="mt-2">Our Service does not address anyone under the age of 18 (“Children”).</p>
|
||||||
|
|
||||||
|
<h4 className="bold pt-3">Changes to This Privacy Policy:</h4>
|
||||||
|
<p className="mt-2">We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.</p>
|
||||||
|
|
||||||
|
<h4 className="bold pt-3">Contact Us</h4>
|
||||||
|
<p className="mt-2">If you have any questions about this Privacy Policy, please contact us:</p>
|
||||||
|
<ul className="my-list">
|
||||||
|
<li>
|
||||||
|
By email: <a href="mailto:info@metatroncubesolutions.com">info@metatroncubesolutions.com</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Team Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start faq Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Blog Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
|
||||||
|
<div className="sub">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default Policy;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
408
pages/service/app-development-waterloo.js
Normal file
@ -0,0 +1,408 @@
|
|||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Link from "next/link";
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import Accordion from 'react-bootstrap/Accordion';
|
||||||
|
import Application from "@/src/components/services-details-banner/application.js";
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
|
||||||
|
|
||||||
|
const ApplicationDevelopment = () => {
|
||||||
|
const faqsData = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "What is an app development agency?",
|
||||||
|
content:
|
||||||
|
"An app development agency is a company that specializes in creating software applications for various platforms, such as mobile devices, web, and desktop. These agencies have teams of professionals who handle the entire app development process, including ideation, design, coding, testing, and deployment. They may also provide post-launch services such as app maintenance, updates, and marketing.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "How much does it cost to hire someone to build a mobile app?",
|
||||||
|
content:
|
||||||
|
"The cost to hire someone to build a mobile app can vary widely depending on several factors, including the complexity of the app, the platform(s) it will run on, the geographic location of the developers, and the level of design and functionality required. Simple apps may start in the range of a few thousand dollars, while more complex applications can cost tens or even hundreds of thousands of dollars.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "How do I choose a mobile app development agency?",
|
||||||
|
content: (
|
||||||
|
<>
|
||||||
|
<p className="changeColor pl-0">Choosing a mobile app development agency involves several considerations:</p>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold"> Portfolio:</span> Look at their past work to assess their experience and expertise.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold"> Technical Skills: </span> Ensure they have the technical skills necessary for your specific app requirements.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold"> Client Testimonials: </span> Check client reviews and testimonials to gauge their reliability and customer service.
|
||||||
|
</li>
|
||||||
|
<li >
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold"> Process Transparency: </span> The agency should have a clear development process and be willing to keep you informed throughout.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold">Post-Launch Support:</span> Find out if they offer maintenance and support services after the app is launched.
|
||||||
|
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</>
|
||||||
|
),
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "What are the benefits of hiring a mobile app development agency instead of freelancers ?",
|
||||||
|
content: (
|
||||||
|
<>
|
||||||
|
<p className="changeColor pl-0 ">Hiring a mobile app development agency brings several advantages over individual freelancers:</p>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold"> Team Expertise: </span> Agencies have a team of experts with diverse skills, providing a comprehensive approach to development.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold">Scalability: </span> They can scale resources up or down according to project needs, which is harder with freelancers.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold">Accountability: </span> Agencies typically have a higher level of professional accountability and established business practices.
|
||||||
|
</li>
|
||||||
|
<li >
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold"> Continuity: </span> TThey can offer continuity and support, ensuring your project won't stall if an individual becomes unavailable.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</>
|
||||||
|
),
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
|
||||||
|
];
|
||||||
|
|
||||||
|
const [active, setActive] = useState(faqsData[0].id);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Web & Mobile Application Development Agency in Waterloo, Canada" description="Top mobile apps designer services for Android in Canada. Leading mobile application development company in Waterloo. Choose us for top-notch app development service." />
|
||||||
|
<Layout>
|
||||||
|
<Application pageName={"MOBILE APPLICATION DEVELOPMENT"} />
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen service details Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="service-detials-area">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-4 col-md-12">
|
||||||
|
<div className="widget-categories-box">
|
||||||
|
{/* categories title */}
|
||||||
|
<div className="categories-title">
|
||||||
|
<h4> Services </h4>
|
||||||
|
</div>
|
||||||
|
{/* widget categories menu */}
|
||||||
|
<div className="widget-categories-menu">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/website-development-company">
|
||||||
|
<a> Website Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li className="active">
|
||||||
|
<Link legacyBehavior href="/service/mobile-application-development">
|
||||||
|
<a>Mobile Application Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/graphic-designing-company">
|
||||||
|
<a>Graphic Designing
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/ui-ux-designing">
|
||||||
|
<a> UI / UX Designing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/search-engine-optimization-seo-content-writing">
|
||||||
|
<a>SEO & Content Writing</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/digital-marketing-agency-in-canada">
|
||||||
|
<a> Digital Marketing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* categoreis thumb */}
|
||||||
|
<div className="widget-categories-thumb pt-0 pt-5">
|
||||||
|
{/* widget categories content */}
|
||||||
|
<div className="widget-categories-content text-center">
|
||||||
|
<div className="logo-thumb d-flex justify-content-center ml-70 mb-4">
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a className="subscribe-icon ml-5">
|
||||||
|
<i className="bi bi-telephone-inbound" />
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="card-color">
|
||||||
|
<h4 className="card-color">Looking for Top Digital <br /> service?</h4>
|
||||||
|
<p className="pt-3 card-color">Call anytime</p>
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a>
|
||||||
|
<h5 className="card-color">+1-647-679-7651</h5>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-8 col-md-12">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-12 col-sm-12">
|
||||||
|
<div className="consen-service-details-box">
|
||||||
|
<div className="consen-service-thumb">
|
||||||
|
<img src="/assets/images/service-details/mobile-app-development.webp" alt="Two app developers in a collaborative discussion, with papers and a laptop on the table, in a bustling office setting." />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-content">
|
||||||
|
<div className="consen-section-title mt-4 mb-4">
|
||||||
|
<h2><span>Application Development at Metatroncube:
|
||||||
|
</span>Premier App Development Waterloo</h2>
|
||||||
|
</div>
|
||||||
|
<div className="serivce-details-desc">
|
||||||
|
<p>
|
||||||
|
Welcome to the forefront of app development Waterloo at Metatroncube. Specializing in mobile technology, our Application Development Services cater to the unique demands of Waterloo’s small businesses and entrepreneurs. Our team’s broad expertise in various platforms and technologies ensures the creation of high-performance, scalable, and engaging mobile applications. Whether your project calls for native solutions or seeks the advantages of cross-platform versatility, our Waterloo-based developers excel in bringing your ideas to life.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
<p>
|
||||||
|
Android App Development Waterloo Market: Explore the possibilities in the Android ecosystem with custom apps designed specifically for Waterloo’s diverse business landscape. Leveraging the latest frameworks and tools, we ensure your Android app is robust, user-friendly, and stands out in the Play Store, perfectly catering to the unique needs of Waterloo small businesses.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>iOS App Development Waterloo: Provide your users in Waterloo with a premium iOS experience. Our developers craft sleek, intuitive applications that comply with Apple’s design guidelines, offering an unmatched user experience tailored to the sophisticated clientele of Waterloo.</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Native App Development Waterloo: Achieve optimal performance and seamless integration with device capabilities through our native app development. We build apps for both Android and iOS, ensuring smooth operation and full utilization of device features, ideal for businesses in Waterloo seeking superior user experiences.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Cross-Platform Development with Flutter for Waterloo’s Audience: Extend your reach across Waterloo with cross-platform applications using Flutter. With a unified codebase, we develop beautiful, natively compiled applications for both mobile platforms, ensuring consistency and efficiency, without compromising on the quality that Waterloo’s market demands.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Choose Metatroncube in Waterloo for your app development needs and partner with a team that’s deeply committed to innovation, quality, and creating exceptional digital experiences. Let us guide you through the mobile landscape with applications that not only elevate your brand but also actively engage your Waterloo audience.
|
||||||
|
</p>
|
||||||
|
<p className="targets ">
|
||||||
|
Code with Vision, Create with Precision – Crafting Mobile Experiences for Waterloo That Truly Inspire.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
By choosing Metatroncube for app development in Waterloo, you’re not just developing an app; you’re investing in a partnership that understands and values the unique digital needs of Waterloo small businesses. Let us help you navigate the ever-evolving mobile landscape with applications that elevate your brand and resonate with your local users.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-boex overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/3.webp" alt="Android app excellence"></img>
|
||||||
|
</div>
|
||||||
|
<div className="box-flex">
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>Android App Excellence</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Navigate Android's versatility with apps that deliver. Our Android solutions merge market trends with user-centric design for standout Play Store presence.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/4.webp" alr="iOS development craftsmanship"></img>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>iOS Development Craftsmanship</h4>
|
||||||
|
</div>
|
||||||
|
< div className="services-detials-desc">
|
||||||
|
<p>Experience the artistry of iOS apps. We build with precision, ensuring every app meets Apple's high standards for sleek design and flawless functionality.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-thumb mt-0">
|
||||||
|
<img className="i-width" src="/assets/images/service-details/card-image/api.webp" alt="A group of web developers, including a skilled web page designer, intensely reviewing code on a computer screen in a modern office environment." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<h4 className="mt-0">Crafting Cross-Platform Mobile Masterpieces</h4>
|
||||||
|
|
||||||
|
<p className="changeColor bold">Seamless Apps for Android and iOS Users Alike</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Unified User Experience</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
{" "}
|
||||||
|
Optimized Performance{" "}
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Design Consistency</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Continuous Integration and Deployment</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="faq-section">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
|
||||||
|
<div className="col-lg-8 order-2 order-lg-1 pl-5">
|
||||||
|
<div id="tab1" className="tab_content">
|
||||||
|
<Accordion
|
||||||
|
defaultActiveKey={faqsData[0].id.toString()}
|
||||||
|
as="ul"
|
||||||
|
className="accordion"
|
||||||
|
>
|
||||||
|
{faqsData.map((faq) => (
|
||||||
|
<li
|
||||||
|
key={faq.id}
|
||||||
|
className="wow fadeInUp"
|
||||||
|
data-wow-delay={faq.animationDelay}
|
||||||
|
>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-lg-4 mb-4 mb-lg-0 order-1 order-lg-2 text-center mt-3">
|
||||||
|
<div className="testimonial-thumb">
|
||||||
|
<img
|
||||||
|
src="/assets/images/service-details/faq/2.webp"
|
||||||
|
alt="FAQ"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* <div className="about-area new-style bg-white pt-0">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center justify-content-center">
|
||||||
|
<div className="col-lg-10">
|
||||||
|
<div className="row g-3">
|
||||||
|
<div className="col-12">
|
||||||
|
<Accordion defaultActiveKey={faqsData[0].id.toString()} as="ul" className="accordion">
|
||||||
|
{faqsData.map((faq) => (
|
||||||
|
<li key={faq.id} className="wow fadeInUp" data-wow-delay={faq.animationDelay}>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div> */}
|
||||||
|
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="sub">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default ApplicationDevelopment;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
425
pages/service/digital-marketing-agency-in-canada.js
Normal file
@ -0,0 +1,425 @@
|
|||||||
|
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import Dm from "@/src/components/services-details-banner/dm.js";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Link from "next/link";
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import Accordion from 'react-bootstrap/Accordion';
|
||||||
|
|
||||||
|
const DigitalMarketing = () => {
|
||||||
|
const faqsData = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "What does a digital marketing agency do?",
|
||||||
|
content:
|
||||||
|
"A digital marketing agency specializes in creating strategies to promote businesses online. This includes services like search engine optimization (SEO), pay-per-click advertising (PPC), social media management, content creation, email marketing, and web design and development. The goal is to increase brand awareness, drive traffic, and convert leads into customers using various digital platforms.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "Is it worth it to hire a digital marketing agency?",
|
||||||
|
content:
|
||||||
|
"Hiring a digital marketing agency can be highly beneficial, especially if you lack the expertise or resources to effectively market your business online. Agencies bring a wealth of experience and specialized skills that can help you reach a broader audience more efficiently than attempting to do it yourself. They can also provide valuable insights into market trends and analytics, ensuring that your marketing efforts are data-driven and have the highest possible return on investment (ROI).",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "How does a digital marketing agency improve my business's online presence?",
|
||||||
|
content:
|
||||||
|
"A digital marketing agency improves your online presence by implementing a comprehensive digital strategy tailored to your business’s needs. They employ SEO tactics to improve your search engine rankings, run targeted ad campaigns to increase visibility, manage your social media accounts to engage with your audience more effectively, and create compelling content that represents your brand's voice. All these efforts work together to boost your online footprint and attract potential customers.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "What should I look for when choosing a digital marketing agency?",
|
||||||
|
content:
|
||||||
|
"When choosing a digital marketing agency, look for their track record of success with businesses similar to yours, including case studies and client testimonials. Evaluate their expertise across different digital marketing disciplines and their ability to adapt to the latest industry changes. Transparency in communication, reporting, and pricing are also key factors. Lastly, ensure they understand your business goals and can align their strategies accordingly.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const [active, setActive] = useState(faqsData[0].id);
|
||||||
|
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Best Digital Marketing Agency in Waterloo, Canada | SEO | SMM" description="Top digital marketing company in Canada. Best digital marketing agency in Waterloo offering top digital marketing service for all your business needs." />
|
||||||
|
<Layout>
|
||||||
|
<Dm pageName={"DIGITAL MARKETING"} />
|
||||||
|
<div className="service-detials-area">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-4 col-md-12">
|
||||||
|
<div className="widget-categories-box">
|
||||||
|
{/* categories title */}
|
||||||
|
<div className="categories-title">
|
||||||
|
<h4> Services </h4>
|
||||||
|
</div>
|
||||||
|
{/* widget categories menu */}
|
||||||
|
<div className="widget-categories-menu">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/website-development-company">
|
||||||
|
<a> Website Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/mobile-service/mobile-application-development">
|
||||||
|
<a>Mobile Application Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/graphic-designing-company">
|
||||||
|
<a>Graphic Designing
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/ui-ux-designing">
|
||||||
|
<a> UI / UX Designing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/search-engine-optimization-seo-content-writing">
|
||||||
|
<a>SEO & Content Writing</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li className="active">
|
||||||
|
<Link legacyBehavior href="/service/digital-marketing-agency-in-canada">
|
||||||
|
<a> Digital Marketing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* categoreis thumb */}
|
||||||
|
<div className="widget-categories-thumb pt-0 pt-5">
|
||||||
|
{/* widget categories content */}
|
||||||
|
<div className="widget-categories-content text-center">
|
||||||
|
<div className="logo-thumb d-flex justify-content-center ml-70 mb-4">
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a className="subscribe-icon ml-5">
|
||||||
|
<i className="bi bi-telephone-inbound" />
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="card-color">
|
||||||
|
<h4 className="card-color">Looking for Top Digital <br /> service?</h4>
|
||||||
|
<p className="pt-3 card-color">Call anytime</p>
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a>
|
||||||
|
<h5 className="card-color">+1-647-679-7651</h5>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-8 col-md-12">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-12 col-sm-12">
|
||||||
|
<div className="consen-service-details-box">
|
||||||
|
<div className="consen-service-thumb">
|
||||||
|
<img src="/assets/images/service-details/digital-marketing.webp" alt="A digital marketer from a leading digital marketing agency in Canada presenting futuristic concepts with interactive icons." />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-content">
|
||||||
|
<div className="consen-section-title mt-3 mb-4">
|
||||||
|
<h2>Metatroncube Software Solutions:<span className="d-block">Revolutionizing <span>Digital Marketing</span> in Canada </span></h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Introduction:</span> Metatroncube Software Solutions is not just a digital marketing agency in Canada; we are your strategic partner for transformative digital success. Our bespoke digital marketing solutions are crafted to captivate your unique Canadian audience, driving the success story you deserve.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p className="mb-0"> <span className="bold">Digital Marketing Services: </span> “Shaping Canada’s Digital Landscape – One Campaign at a Time”
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Your search for the best digital marketing agency in Canada ends here. Metatroncube Software Solutions is home to award-winning digital marketing excellence. We are committed to driving increased traffic, generating leads, and converting prospects into loyal customers. Engage with us to elevate your online presence and connect with your audience across Canada.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p className="mb-0">
|
||||||
|
<span className="bold">SEO</span> “Optimizing for the Canadian Market – Beyond the Search Engine”
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<p className="mb-0">
|
||||||
|
At Metatroncube, SEO is a strategic endeavor that goes beyond ranking first. It’s about understanding and acting upon the motivations of your Canadian audience. By leveraging insightful data, we create compelling content that resonates with your clientele, positioning your brand as the go-to within your industry in Canada.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p className="mb-0 pt-3 ">
|
||||||
|
<span className="bold">PPC</span> “Hyper-Targeted Pay Per Click Strategies – The Fast Lane to Visibility”
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
With Metatroncube’s Pay Per Click marketing, instantly navigate a stream of qualified Canadian traffic to your site. Our PPC experts utilize data-centric strategies to target traffic effectively, enhance conversions, and maximize your ROI, solidifying your online presence in the competitive Canadian market.
|
||||||
|
</p>
|
||||||
|
<p className="mb-0">
|
||||||
|
<span className="bold">Display Advertising:</span> “Engaging Canadian Audiences with Precision Display Advertising”
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
Display Advertising at Metatroncube is tailored to capture the Canadian demographic by utilizing data to align ads with user age, interests, and location. Our experts excel in targeting potential customers, significantly boosting sales through strategically placed advertisements.
|
||||||
|
</p>
|
||||||
|
<p className="mb-0">
|
||||||
|
<span className="bold">Social Media Marketing:</span> “Crafting Social Narratives for the Canadian Audience”
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Social media is the digital pulse of Canada, and at Metatroncube, we craft narratives that align with your marketing goals. Our content is tailored to engage with your Canadian audience, promoting your offerings and fostering community around your brand.
|
||||||
|
</p>
|
||||||
|
<p className="mb-0">
|
||||||
|
<span className="bold">Email Marketing:</span> “Direct Engagement Through Tailored Email Campaigns”
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
As one of the most effective digital channels, email marketing holds a special place in the Canadian market. Metatroncube designs personalized email campaigns that resonate with your audience, ensuring your business stands out through newsletters and captivating advertisements.
|
||||||
|
</p>
|
||||||
|
<p className="mb-0">
|
||||||
|
<span className="bold">Web Analytics:</span> “Insights into the Canadian Digital Consumer”
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Web Analytics is the compass guiding our strategy, providing insight into Canadian consumer behavior online. At Metatroncube, we use this data to fine-tune a content strategy that not only attracts but also motivates your audience to engage with your brand in a meaningful way.
|
||||||
|
</p>
|
||||||
|
<p className="mb-0">
|
||||||
|
<span className="bold">Content Marketing:</span> “Educating and Engaging the Canadian Market”
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
In Canada, content marketing is the key to building a base of loyal followers. Metatroncube begins by understanding the unique interests of your Canadian audience. Our team of expert writers then crafts content that satisfies their informational needs, establishing your brand’s authority.
|
||||||
|
</p>
|
||||||
|
<p className="targets">
|
||||||
|
Crafting Visibility. Cultivating Connections. Let Metatroncube illuminate your digital path and forge lasting bonds with your audience.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="service-bottom-text pt-0 pb-5">
|
||||||
|
<h2 className="meta">Join Forces with a Leading Digital Marketing Agency in Canada{" "}</h2>
|
||||||
|
<p>
|
||||||
|
{" "}
|
||||||
|
|
||||||
|
|
||||||
|
<Link legacyBehavior href="/contact">
|
||||||
|
<a className="mt-4">Schedule Consultation</a>
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/11.webp" alt="SEO & organic growth"></img>
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>SEO & Organic Growth</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>SEO & Organic Growth
|
||||||
|
Dominate search engine rankings and captivate your audience organically.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/12.webp" alt="Social media engagement"></img>
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>Social Media Engagement</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Elevate your social media impact with Metatroncube's bespoke campaigns.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-thumb mt-0 ">
|
||||||
|
<img className="i-width" src="/assets/images/service-details/card-image/digi-mar-1.webp" alt="Digital marketing professional analyzing SEO data on a laptop and tablet with colorful graphs and notes on the desk." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<h4 className="mt-0">Amplify Your Reach with SEO Mastery</h4>
|
||||||
|
|
||||||
|
<h6 className="changeColor bold">Ascend Search Rankings and Connect with Your Audience</h6>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>Data-Driven Keyword Strategy</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
{" "}
|
||||||
|
On-Page and Off-Page Optimization{" "}
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
Content is King</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
Analytics and Adaptation</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-thumb">
|
||||||
|
<img className="i-width" src="/assets/images/service-details/card-image/digi-mar-2.webp" alt="Group of marketers strategizing around laptops with vibrant social media call-to-action icons." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-icon-box mt-5">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<h4>Engage Audiences with Dynamic Social Media</h4>
|
||||||
|
|
||||||
|
<h6 className="changeColor bold">Build a Community Around Your Brand
|
||||||
|
</h6>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>Strategic Content Creation</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
{" "}
|
||||||
|
Targeted Social Campaigns{" "}
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
Interactive Community Management</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
|
||||||
|
Performance Metrics</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="faq-section">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
<div className="col-lg-8 order-2 order-lg-1 pl-5">
|
||||||
|
<div id="tab1" className="tab_content">
|
||||||
|
<Accordion
|
||||||
|
defaultActiveKey={faqsData[0].id.toString()}
|
||||||
|
as="ul"
|
||||||
|
className="accordion"
|
||||||
|
>
|
||||||
|
{faqsData.map((faq) => (
|
||||||
|
<li
|
||||||
|
key={faq.id}
|
||||||
|
className="wow fadeInUp"
|
||||||
|
data-wow-delay={faq.animationDelay}
|
||||||
|
>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-4 mb-4 mb-lg-0 order-1 order-lg-2 text-center mt-3">
|
||||||
|
<div className="testimonial-thumb">
|
||||||
|
<img
|
||||||
|
src="/assets/images/service-details/faq/6.webp"
|
||||||
|
alt="FAQ"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="sub">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default DigitalMarketing;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
317
pages/service/graphic-designing-company.js
Normal file
@ -0,0 +1,317 @@
|
|||||||
|
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import Graphic from "@/src/components/services-details-banner/graphic.js";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Link from "next/link";
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import Accordion from 'react-bootstrap/Accordion';
|
||||||
|
|
||||||
|
const GraphicDesigning = () => {
|
||||||
|
const faqsData = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "What makes a good graphic design?",
|
||||||
|
content:
|
||||||
|
"Good graphic design effectively communicates a message through visual hierarchy, composition, color, typography, and appropriate use of space. It should be aesthetically pleasing, functionally effective, and aligned with the brand’s identity.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "How important is graphic design for my business?",
|
||||||
|
content:
|
||||||
|
"Graphic design is crucial for creating a professional image, attracting potential customers, and differentiating your brand from competitors. It can influence customer perceptions and decision-making, ultimately impacting the success of your business.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "Can graphic design impact the user experience of my website or app?",
|
||||||
|
content:
|
||||||
|
"Absolutely. Good graphic design can significantly improve the user experience by organizing information in an intuitive manner, creating easy navigation, and ensuring a visually enjoyable journey which can lead to higher user engagement and retention.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "Should I have a consistent design theme across all my business materials?",
|
||||||
|
content:
|
||||||
|
"Consistency in design across all materials is key to building brand recognition and trust. A unified theme reinforces your brand identity and ensures that customers have a coherent experience with your brand, whether it’s on your website, in a brochure, or on social media.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const [active, setActive] = useState(faqsData[0].id);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Best Branding Service & Graphic Design agency in Waterloo, Canada" description="Top graphic designing agency in Waterloo. Leading graphic design company in Canada offering graphic design service, and branding solutions. Best branding agencies." />
|
||||||
|
<Layout>
|
||||||
|
<Graphic pageName={"GRAPHIC DESIGN SERVICES"} />
|
||||||
|
<div className="service-detials-area">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-4 col-md-12">
|
||||||
|
<div className="widget-categories-box">
|
||||||
|
{/* categories title */}
|
||||||
|
<div className="categories-title">
|
||||||
|
<h4> Services </h4>
|
||||||
|
</div>
|
||||||
|
{/* widget categories menu */}
|
||||||
|
<div className="widget-categories-menu">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/website-development-company">
|
||||||
|
<a> Website Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/mobile-application-development">
|
||||||
|
<a>Mobile Application Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li className="active">
|
||||||
|
<Link legacyBehavior href="/service/graphic-designing-company">
|
||||||
|
<a>Graphic Designing
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/ui-ux-designing">
|
||||||
|
<a> UI / UX Designing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/search-engine-optimization-seo-content-writing">
|
||||||
|
<a>SEO & Content Writing</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/digital-marketing-agency-in-canada">
|
||||||
|
<a> Digital Marketing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* categoreis thumb */}
|
||||||
|
<div className="widget-categories-thumb pt-0 pt-5">
|
||||||
|
{/* widget categories content */}
|
||||||
|
<div className="widget-categories-content text-center">
|
||||||
|
<div className="logo-thumb d-flex justify-content-center ml-70 mb-4">
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651">
|
||||||
|
<a className="subscribe-icon ml-5">
|
||||||
|
<i className="bi bi-telephone-inbound" />
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="card-color">
|
||||||
|
<h4 className="card-color">Looking for Top Digital <br /> service?</h4>
|
||||||
|
<p className="pt-3 card-color">Call anytime</p>
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a>
|
||||||
|
<h5 className="card-color">+1-647-679-7651</h5>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-8 col-md-12">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-12 col-sm-12">
|
||||||
|
<div className="consen-service-details-box">
|
||||||
|
<div className="consen-service-thumb">
|
||||||
|
<img src="/assets/images/service-details/graphic-design.webp" alt="Graphic design services professional sketching logo concepts with a draft logo displayed on the computer screen." />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-content">
|
||||||
|
<div className="consen-section-title mt-4">
|
||||||
|
<h2 className="pb-3"><span>Graphic Design Services </span>at Metatroncube</h2>
|
||||||
|
<h6>Graphic Design Services: <span className="meta">Branding and Identity Design</span></h6>
|
||||||
|
</div>
|
||||||
|
<div className="serivce-details-desc ">
|
||||||
|
<p>
|
||||||
|
Elevate your corporate persona with Metatroncube’s Graphic Design Services. We specialize in creating logos and brand elements that are not only visually stunning but also embody your company’s core values, ensuring a consistent and powerful brand identity.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
|
||||||
|
<p> <span className="bold">Graphic Design Services: Marketing Collateral Design</span> Amplify your marketing strategy with Metatroncube’s Graphic Design Services. Our team expertly produces brochures, flyers, and banners that not only grab attention but also convey your message effectively, making every piece of marketing collateral count.</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Graphic Design Services: UI/UX Design</span> With Metatroncube’s Graphic Design Services, your digital presence will become more intuitive and visually appealing. Our commitment to refined UI/UX design ensures a seamless, user-friendly experience that translates into increased engagement and customer satisfaction.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold"> Graphic Design Services: Packaging Design</span> Distinguish your products with the innovative packaging design offered by Metatroncube’s Graphic Design Services. We understand the critical role of packaging in market success and design with the intent to make your products stand out and resonate with consumers.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Graphic Design Services: Infographics and Data Visualization </span>Transform data into impactful stories with Metatroncube’s Graphic Design Services. Our expertise in infographics and data visualization makes complex information easily digestible, visually engaging, and suitable for a variety of platforms, from annual reports to social media posts.
|
||||||
|
</p>
|
||||||
|
<p className="targets">
|
||||||
|
Designing Tomorrow’s Vision Today — Metatroncube: Where Creativity Meets Strategy.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<p className="mb-5">
|
||||||
|
By choosing Metatroncube for your graphic design needs, you’re not just getting a service; you’re investing in a visual strategy that amplifies your brand’s presence and connects with your customers on a deeper level.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/5.webp" alt="Brand identity design"></img>
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>Brand Identity Design </h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Shape a unique brand identity that stands out.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/6.webp" alt="Print & digital media design"></img>
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>Print & Digital Media Design</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Craft visuals that engage and resonate across media </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-thumb mt-0">
|
||||||
|
<img className="i-width" src="/assets/images/service-details/card-image/graphic.webp" alt="Graphic designer reviewing logo designs on a computer screen in a bright office." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<h4 className="mt-0">Visual Storytelling at Its Finest</h4>
|
||||||
|
|
||||||
|
<h6 className="changeColor bold">Crafting Designs That Captivate and Communicate</h6>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Branding That Connects</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
{" "}
|
||||||
|
Marketing Collateral{" "}
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Digital Interface Design</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>Packaging That Pops</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="faq-section">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
|
||||||
|
<div className="col-lg-8 order-2 order-lg-1 pl-5">
|
||||||
|
<div id="tab1" className="tab_content">
|
||||||
|
<Accordion
|
||||||
|
defaultActiveKey={faqsData[0].id.toString()}
|
||||||
|
as="ul"
|
||||||
|
className="accordion"
|
||||||
|
>
|
||||||
|
{faqsData.map((faq) => (
|
||||||
|
<li
|
||||||
|
key={faq.id}
|
||||||
|
className="wow fadeInUp"
|
||||||
|
data-wow-delay={faq.animationDelay}
|
||||||
|
>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-lg-4 mb-4 mb-lg-0 order-1 order-lg-2 text-center mt-3">
|
||||||
|
<div className="testimonial-thumb">
|
||||||
|
<img
|
||||||
|
src="/assets/images/service-details/faq/3.webp"
|
||||||
|
alt="FAQ"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="sub">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default GraphicDesigning;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
518
pages/service/kitchener-waterloo-website-design-services.js
Normal file
@ -0,0 +1,518 @@
|
|||||||
|
|
||||||
|
import Breadcumb from "@/src/components/Breadcumb";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Link from "next/link";
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import Accordion from 'react-bootstrap/Accordion';
|
||||||
|
import Web from "@/src/components/services-details-banner/web.js";
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const WebDevelopment = () => {
|
||||||
|
const faqsData = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "Is my website builder allowed on site?",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "How to soft launch your business?",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "How to turn visitors into contributors",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "How can i find my app solutions?",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const [active, setActive] = useState(faqsData[0].id);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Best Web Design Agency | Web Development Company waterloo, Canada" description="Top web design agency in Waterloo, Canada. Offering web development services to create stunning websites. Choose us best website design and development service." />
|
||||||
|
<Layout>
|
||||||
|
<Web pageName={" WEBSITE DEVELOPMENT"} />
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen service details Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="service-detials-area">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-4 col-md-12">
|
||||||
|
<div className="widget-categories-box">
|
||||||
|
{/* categories title */}
|
||||||
|
<div className="categories-title">
|
||||||
|
<h4> Services </h4>
|
||||||
|
</div>
|
||||||
|
{/* widget categories menu */}
|
||||||
|
<div className="widget-categories-menu">
|
||||||
|
<ul>
|
||||||
|
<li className="active">
|
||||||
|
<Link legacyBehavior href="/service/website-development-company">
|
||||||
|
<a> Website Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/mobile-application-development">
|
||||||
|
<a>Mobile Application Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/graphic-designing-company">
|
||||||
|
<a>Graphic Designing
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/ui-ux-designing">
|
||||||
|
<a> UI / UX Designing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/search-engine-optimization-seo-content-writing">
|
||||||
|
<a>SEO & Content Writing</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/digital-marketing-agency-in-canada">
|
||||||
|
<a> Digital Marketing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* categoreis thumb */}
|
||||||
|
<div className="widget-categories-thumb pt-0 pt-5">
|
||||||
|
{/* widget categories content */}
|
||||||
|
<div className="widget-categories-content text-center">
|
||||||
|
<div className="logo-thumb d-flex justify-content-center ml-70 mb-4">
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a className="subscribe-icon ml-5">
|
||||||
|
<i className="bi bi-telephone-inbound" />
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="card-color">
|
||||||
|
<h4 className="card-color">Looking for Top Digital <br /> service?</h4>
|
||||||
|
<p className="pt-3 card-color">Call anytime</p>
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a>
|
||||||
|
<h5 className="card-color">+1-647-679-7651</h5>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-8 col-md-12">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-12 col-sm-12">
|
||||||
|
<div className="consen-service-details-box">
|
||||||
|
<div className="consen-service-thumb">
|
||||||
|
<img src="/assets/images/service-details/web-development.webp" alt="A web page designer consulting with a diverse team over documents on a table, indicative of a collaborative web development process." />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-content">
|
||||||
|
<div className="consen-section-title mt-3 mb-4">
|
||||||
|
<h2><span>KITCHENER WATERLOO WEBSITE DESIGN SERVICES:
|
||||||
|
</span> Tailoring Digital Interfaces with Metatroncube</h2>
|
||||||
|
</div>
|
||||||
|
<div className="serivce-details-desc">
|
||||||
|
<p>
|
||||||
|
Bespoke Website Design from Kitchener’s Creative Vanguard Welcome to Metatroncube Software Solutions. We stand at the confluence of technology and creativity in Kitchener-Waterloo, offering unmatched Kitchener Waterloo Website Design Services. Our expert team, known for its technological prowess and artistic vision, ensures each solution is not just visually compelling but also enriches user experience.
|
||||||
|
</p>
|
||||||
|
{/* <p className="targets">
|
||||||
|
A website is not just an online destination; it’s a digital journey that starts with a single click.
|
||||||
|
</p> */}
|
||||||
|
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Elevating Aesthetics with Functional Design In the tech-rich landscape of Kitchener-Waterloo, our design philosophy is about infusing functionality with beauty. As providers of Waterloo Website Design Services, we craft digital narratives that align with your brand’s core values, ensuring each interaction is meaningful.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Customized Web Solutions for the Kitchener-Waterloo Business Community Understanding the diversity of the local economy, our Kitchener Website Design Services are uniquely personalized. From small start-ups to established enterprises, we ensure that every digital strategy is as distinctive as the businesses we serve.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
Customized Web Solutions for the Kitchener-Waterloo Business Community Understanding the diversity of the local economy, our Kitchener Website Design Services are uniquely personalized. From small start-ups to established enterprises, we ensure that every digital strategy is as distinctive as the businesses we serve.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Prioritizing User Experience in Every Design Our design methodology at Metatroncube is deeply ingrained in user-centric principles. By thoroughly analyzing user behavior and preferences, we ensure our KW Website Design Services deliver intuitive and engaging websites that meet the exacting demands of today’s users.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>Embracing Cutting-Edge Technology for Dynamic Solutions We harness the latest in web development technology, creating sites that are resilient and scalable. Our forward-thinking approach positions us at the forefront of Kitchener Waterloo Website Design Services, ready to embrace the digital future.</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
SEO-Optimized Design for Greater Reach SEO is integral to our design process. By optimizing design elements, we enhance your website’s search engine ranking, thus boosting visibility and organic traffic as a core aspect of our Waterloo Website Design Services.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Comprehensive Support for Continuous Evolution Our engagement extends beyond website deployment. Offering ongoing support, we ensure that your digital platform is always aligned with the latest trends, reflecting the dynamic spirit of KITCHENER WATERLOO WEBSITE DESIGN SERVICES.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Join Us on a Collaborative Design Adventure Embark on your web design journey with Metatroncube. We are eager to surpass your expectations, highlighting the signature quality of our Kitchener Waterloo Website Design Services.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Join Us on a Collaborative Design Adventure Embark on your web design journey with Metatroncube. We are eager to surpass your expectations, highlighting the signature quality of our Kitchener Waterloo Website Design Services.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Discover the full spectrum of web design excellence with Metatroncube. Together, let’s forge a remarkable and effective digital identity for your business in the Kitchener-Waterloo area.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p className="targets">
|
||||||
|
Web Page Design Waterloo: Where Your Digital Dreams Take Flight. Transforming Visions into Virtual Masterpieces.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{/* <div className="service-page-title">
|
||||||
|
<h3>Key Features of Our Website Development Services:
|
||||||
|
<span className="meta"> Crafting Digital Excellence</span>
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
At Metatroncube, our website development services are distinguished by a series of key features that ensure each project we undertake is not just completed but is transformed into a digital masterpiece. Here’s what sets our services a part:
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0">1. Custom Design:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Tailored Aesthetics:</span> Every website we create is tailored to reflect your brand’s unique identity. Our designers work closely with you to ensure the visual elements resonate with your brand and appeal to your target audience.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">User Experience Focus:</span> We prioritize user experience (UX) in our designs, ensuring that navigation is intuitive and that the website is accessible to all users, thereby enhancing user engagement and satisfaction.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0 mt-4">2. Responsive and Mobile-Friendly:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Cross-Device Compatibility: </span> Understanding the importance of mobile traffic, we ensure your website looks great and functions seamlessly across all devices and screen sizes.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Speed Optimization: </span> We optimize for speed, reducing load times to improve user experience and boost SEO rankings.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0 mt-4">3. Advanced Technologies:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Cutting-Edge Solutions: </span> Our team stays abreast of the latest technological trends in web development, from advanced frontend frameworks to efficient backend solutions.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Scalability and Security: </span>We build websites that are not only robust and secure but also scalable, ensuring they can grow and evolve with your business.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0 mt-4">4. SEO-Optimized:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Visibility and Ranking: </span> Our development process includes SEO optimization to ensure your site ranks well on search engines, driving organic traffic and increasing visibility.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Content Strategy: </span>We assist in developing a content strategy that aligns with SEO best practices, ensuring your website’s content is relevant, engaging, and optimized for search engines.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0 mt-4">5. Comprehensive CMS Integration:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Easy Management: </span> We integrate powerful content management systems (CMS) to give you control over your content, allowing for easy updates and management.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Custom Features: </span>Depending on your needs, we can include custom features in the CMS, like e-commerce capabilities, blogs, or event calendars.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0 mt-4">6. Ongoing Support and Analytics:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Post-Launch Support: </span> Our relationship doesn’t end at launch. We provide ongoing support and maintenance to ensure your website remains up-to-date and performs optimally.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Data-Driven Insights: </span>We equip your site with analytics tools so you can monitor performance and user engagement, helping you make informed decisions for future growth.
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p className="mt-4">
|
||||||
|
In summary, our website development services at Metatroncube are a blend of aesthetics, functionality, technology, and strategy. We commit to delivering a product that not only meets but exceeds your expectations, driving your business forward in the digital realm.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div> */}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="service-page-title2 portfolio"><h1 className="pb-0"><span className="meta"> Our</span> Portfolio:</h1></div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/1.webp" aly="Innovative web solutions"></img>
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>Innovative Web Solutions</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Customized digital experiences to elevate your brand.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/2.webp" alt="Cutting-edge technology" />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title ">
|
||||||
|
<h4>Cutting-Edge Technology</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Leveraging the latest tech to create responsive, fast, and secure websites.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6 ">
|
||||||
|
<div className="service-details-thumb mt-0">
|
||||||
|
<img className="i-width" src="/assets/images/service-details/card-image/web-devo.webp" alt="A group of web developers, including a skilled web page designer, intensely reviewing code on a computer screen in a modern office environment." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<h4>Seamless Integration</h4>
|
||||||
|
|
||||||
|
<h6 className="changeColor">Streamline your online presence with effortlessly integrated web services.</h6>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Customized Design</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
{" "}
|
||||||
|
Responsive Layouts{" "}
|
||||||
|
</span>
|
||||||
|
</p >
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> SEO-Optimized</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Robust Security </span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="faq-section">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
|
||||||
|
<div className="col-lg-8 order-2 order-lg-1 pl-5">
|
||||||
|
<div id="tab1" className="tab_content">
|
||||||
|
<Accordion
|
||||||
|
defaultActiveKey={faqsData[0].id.toString()}
|
||||||
|
as="ul"
|
||||||
|
className="accordion"
|
||||||
|
>
|
||||||
|
{faqsData.map((faq) => (
|
||||||
|
<li
|
||||||
|
key={faq.id}
|
||||||
|
className="wow fadeInUp"
|
||||||
|
data-wow-delay={faq.animationDelay}
|
||||||
|
>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-lg-4 mb-4 mb-lg-0 order-1 order-lg-2">
|
||||||
|
<div className="testimonial-thumb text-center mt-3">
|
||||||
|
<img
|
||||||
|
src="/assets/images/service-details/faq/1.webp"
|
||||||
|
alt="FAQ"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="sub">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default WebDevelopment;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
406
pages/service/mobile-application-development.js
Normal file
@ -0,0 +1,406 @@
|
|||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Link from "next/link";
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import Accordion from 'react-bootstrap/Accordion';
|
||||||
|
import Application from "@/src/components/services-details-banner/application.js";
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
|
||||||
|
|
||||||
|
const ApplicationDevelopment = () => {
|
||||||
|
const faqsData = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "What is an app development agency?",
|
||||||
|
content:
|
||||||
|
"An app development agency is a company that specializes in creating software applications for various platforms, such as mobile devices, web, and desktop. These agencies have teams of professionals who handle the entire app development process, including ideation, design, coding, testing, and deployment. They may also provide post-launch services such as app maintenance, updates, and marketing.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "How much does it cost to hire someone to build a mobile app?",
|
||||||
|
content:
|
||||||
|
"The cost to hire someone to build a mobile app can vary widely depending on several factors, including the complexity of the app, the platform(s) it will run on, the geographic location of the developers, and the level of design and functionality required. Simple apps may start in the range of a few thousand dollars, while more complex applications can cost tens or even hundreds of thousands of dollars.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "How do I choose a mobile app development agency?",
|
||||||
|
content: (
|
||||||
|
<>
|
||||||
|
<p className="changeColor pl-0">Choosing a mobile app development agency involves several considerations:</p>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold"> Portfolio:</span> Look at their past work to assess their experience and expertise.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold"> Technical Skills: </span> Ensure they have the technical skills necessary for your specific app requirements.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold"> Client Testimonials: </span> Check client reviews and testimonials to gauge their reliability and customer service.
|
||||||
|
</li>
|
||||||
|
<li >
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold"> Process Transparency: </span> The agency should have a clear development process and be willing to keep you informed throughout.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold">Post-Launch Support:</span> Find out if they offer maintenance and support services after the app is launched.
|
||||||
|
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</>
|
||||||
|
),
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "What are the benefits of hiring a mobile app development agency instead of freelancers ?",
|
||||||
|
content: (
|
||||||
|
<>
|
||||||
|
<p className="changeColor pl-0 ">Hiring a mobile app development agency brings several advantages over individual freelancers:</p>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold"> Team Expertise: </span> Agencies have a team of experts with diverse skills, providing a comprehensive approach to development.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold">Scalability: </span> They can scale resources up or down according to project needs, which is harder with freelancers.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold">Accountability: </span> Agencies typically have a higher level of professional accountability and established business practices.
|
||||||
|
</li>
|
||||||
|
<li >
|
||||||
|
{/* <i className="bi bi-check-lg mr-2" />{" "} */}
|
||||||
|
<span className="bold"> Continuity: </span> TThey can offer continuity and support, ensuring your project won't stall if an individual becomes unavailable.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</>
|
||||||
|
),
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
|
||||||
|
];
|
||||||
|
|
||||||
|
const [active, setActive] = useState(faqsData[0].id);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Web & Mobile Application Development Agency in Waterloo, Canada" description="Top mobile apps designer services for Android in Canada. Leading mobile application development company in Waterloo. Choose us for top-notch app development service." />
|
||||||
|
<Layout>
|
||||||
|
<Application pageName={"MOBILE APPLICATION DEVELOPMENT"} />
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen service details Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="service-detials-area">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-4 col-md-12">
|
||||||
|
<div className="widget-categories-box">
|
||||||
|
{/* categories title */}
|
||||||
|
<div className="categories-title">
|
||||||
|
<h4> Services </h4>
|
||||||
|
</div>
|
||||||
|
{/* widget categories menu */}
|
||||||
|
<div className="widget-categories-menu">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/website-development-company">
|
||||||
|
<a> Website Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li className="active">
|
||||||
|
<Link legacyBehavior href="/service/mobile-application-development">
|
||||||
|
<a>Mobile Application Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/graphic-designing-company">
|
||||||
|
<a>Graphic Designing
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/ui-ux-designing">
|
||||||
|
<a> UI / UX Designing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/search-engine-optimization-seo-content-writing">
|
||||||
|
<a>SEO & Content Writing</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/digital-marketing-agency-in-canada">
|
||||||
|
<a> Digital Marketing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* categoreis thumb */}
|
||||||
|
<div className="widget-categories-thumb pt-0 pt-5">
|
||||||
|
{/* widget categories content */}
|
||||||
|
<div className="widget-categories-content text-center">
|
||||||
|
<div className="logo-thumb d-flex justify-content-center ml-70 mb-4">
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a className="subscribe-icon ml-5">
|
||||||
|
<i className="bi bi-telephone-inbound" />
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="card-color">
|
||||||
|
<h4 className="card-color">Looking for Top Digital <br /> service?</h4>
|
||||||
|
<p className="pt-3 card-color">Call anytime</p>
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a>
|
||||||
|
<h5 className="card-color">+1-647-679-7651</h5>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-8 col-md-12">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-12 col-sm-12">
|
||||||
|
<div className="consen-service-details-box">
|
||||||
|
<div className="consen-service-thumb">
|
||||||
|
<img src="/assets/images/service-details/mobile-app-development.webp" alt="Two app developers in a collaborative discussion, with papers and a laptop on the table, in a bustling office setting." />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-content">
|
||||||
|
<div className="consen-section-title mt-4 mb-4">
|
||||||
|
<h2><span>Application Development</span> at Metatroncube</h2>
|
||||||
|
</div>
|
||||||
|
<div className="serivce-details-desc">
|
||||||
|
<p>
|
||||||
|
Step into the future of mobile technology with Metatroncube’s Application Development Services. Our expertise spans across various platforms and technologies, ensuring we deliver high-performance, scalable, and engaging mobile applications tailored to your business needs. Whether you’re looking for native solutions or cross-platform versatility, our skilled developers are adept at turning your concepts into reality.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
<p>
|
||||||
|
<span className="bold"> Android Application Development:</span> Enter the vast world of Android with custom apps designed to harness the full power of the most widely used mobile OS. We utilize the latest frameworks and tools to ensure your Android app is robust, user-friendly, and capable of standing out in the crowded Play Store.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p> <span className="bold">iOS Application Development:</span> Immerse your users in the premium experience of iOS. Our developers craft sleek, intuitive applications that adhere to Apple’s stringent design guidelines, providing an unmatched user experience that reflects the quality of the iOS ecosystem.</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Native Application Development:</span> For optimal performance and seamless integration with device capabilities, go native. We build native apps for both Android and iOS, ensuring they run smoothly, utilize device features to the fullest, and provide a superior user experience.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold"> Cross-Platform Development with Flutter:</span> Maximize your reach with cross-platform applications using Flutter. With a single codebase, we create beautiful, natively compiled applications for both mobile platforms, ensuring consistency and efficiency without compromising on quality or performance.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
By partnering with Metatroncube for your application development needs, you gain access to a team that’s committed to innovation, quality, and delivering exceptional digital experiences. Let us help you navigate the mobile landscape with applications that elevate your brand and engage your users.
|
||||||
|
</p>
|
||||||
|
<p className="targets ">
|
||||||
|
Code with Vision, Create with Precision – Crafting Mobile Experiences that Inspire.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-boex overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/3.webp" alt="Android app excellence"></img>
|
||||||
|
</div>
|
||||||
|
<div className="box-flex">
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>Android App Excellence</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Navigate Android's versatility with apps that deliver. Our Android solutions merge market trends with user-centric design for standout Play Store presence.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/4.webp" alr="iOS development craftsmanship"></img>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>iOS Development Craftsmanship</h4>
|
||||||
|
</div>
|
||||||
|
< div className="services-detials-desc">
|
||||||
|
<p>Experience the artistry of iOS apps. We build with precision, ensuring every app meets Apple's high standards for sleek design and flawless functionality.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-thumb mt-0">
|
||||||
|
<img className="i-width" src="/assets/images/service-details/card-image/api.webp" alt="A group of web developers, including a skilled web page designer, intensely reviewing code on a computer screen in a modern office environment." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<h4 className="mt-0">Crafting Cross-Platform Mobile Masterpieces</h4>
|
||||||
|
|
||||||
|
<p className="changeColor bold">Seamless Apps for Android and iOS Users Alike</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Unified User Experience</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
{" "}
|
||||||
|
Optimized Performance{" "}
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Design Consistency</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Continuous Integration and Deployment</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="faq-section">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
|
||||||
|
<div className="col-lg-8 order-2 order-lg-1 pl-5">
|
||||||
|
<div id="tab1" className="tab_content">
|
||||||
|
<Accordion
|
||||||
|
defaultActiveKey={faqsData[0].id.toString()}
|
||||||
|
as="ul"
|
||||||
|
className="accordion"
|
||||||
|
>
|
||||||
|
{faqsData.map((faq) => (
|
||||||
|
<li
|
||||||
|
key={faq.id}
|
||||||
|
className="wow fadeInUp"
|
||||||
|
data-wow-delay={faq.animationDelay}
|
||||||
|
>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-lg-4 mb-4 mb-lg-0 order-1 order-lg-2 text-center mt-3">
|
||||||
|
<div className="testimonial-thumb">
|
||||||
|
<img
|
||||||
|
src="/assets/images/service-details/faq/2.webp"
|
||||||
|
alt="FAQ"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* <div className="about-area new-style bg-white pt-0">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center justify-content-center">
|
||||||
|
<div className="col-lg-10">
|
||||||
|
<div className="row g-3">
|
||||||
|
<div className="col-12">
|
||||||
|
<Accordion defaultActiveKey={faqsData[0].id.toString()} as="ul" className="accordion">
|
||||||
|
{faqsData.map((faq) => (
|
||||||
|
<li key={faq.id} className="wow fadeInUp" data-wow-delay={faq.animationDelay}>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div> */}
|
||||||
|
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="sub">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default ApplicationDevelopment;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
352
pages/service/professional-website-designers-in-waterloo.js
Normal file
@ -0,0 +1,352 @@
|
|||||||
|
|
||||||
|
import Breadcumb from "@/src/components/Breadcumb";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Link from "next/link";
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import Accordion from 'react-bootstrap/Accordion';
|
||||||
|
import Web from "@/src/components/services-details-banner/web.js";
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const WebDevelopment = () => {
|
||||||
|
const faqsData = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "Is my website builder allowed on site?",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "How to soft launch your business?",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "How to turn visitors into contributors",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "How can i find my app solutions?",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const [active, setActive] = useState(faqsData[0].id);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Best Web Design Agency | Web Development Company waterloo, Canada" description="Top web design agency in Waterloo, Canada. Offering web development services to create stunning websites. Choose us best website design and development service." />
|
||||||
|
<Layout>
|
||||||
|
<Web pageName={" WEBSITE DEVELOPMENT"} />
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen service details Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="service-detials-area">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-4 col-md-12">
|
||||||
|
<div className="widget-categories-box">
|
||||||
|
{/* categories title */}
|
||||||
|
<div className="categories-title">
|
||||||
|
<h4> Services </h4>
|
||||||
|
</div>
|
||||||
|
{/* widget categories menu */}
|
||||||
|
<div className="widget-categories-menu">
|
||||||
|
<ul>
|
||||||
|
<li className="active">
|
||||||
|
<Link legacyBehavior href="/service/website-development-company">
|
||||||
|
<a> Website Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/mobile-application-development">
|
||||||
|
<a>Mobile Application Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/graphic-designing-company">
|
||||||
|
<a>Graphic Designing
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/ui-ux-designing">
|
||||||
|
<a> UI / UX Designing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/search-engine-optimization-seo-content-writing">
|
||||||
|
<a>SEO & Content Writing</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/digital-marketing-agency-in-canada">
|
||||||
|
<a> Digital Marketing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* categoreis thumb */}
|
||||||
|
<div className="widget-categories-thumb pt-0 pt-5">
|
||||||
|
{/* widget categories content */}
|
||||||
|
<div className="widget-categories-content text-center">
|
||||||
|
<div className="logo-thumb d-flex justify-content-center ml-70 mb-4">
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a className="subscribe-icon ml-5">
|
||||||
|
<i className="bi bi-telephone-inbound" />
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="card-color">
|
||||||
|
<h4 className="card-color">Looking for Top Digital <br /> service?</h4>
|
||||||
|
<p className="pt-3 card-color">Call anytime</p>
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a>
|
||||||
|
<h5 className="card-color">+1-647-679-7651</h5>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-8 col-md-12">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-12 col-sm-12">
|
||||||
|
<div className="consen-service-details-box">
|
||||||
|
<div className="consen-service-thumb">
|
||||||
|
<img src="/assets/images/service-details/web-development.webp" alt="A web page designer consulting with a diverse team over documents on a table, indicative of a collaborative web development process." />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-content">
|
||||||
|
<div className="consen-section-title mt-3 mb-4">
|
||||||
|
<h2><span>Metatroncube: Empowering Your Digital Journey </span> in Waterloo</h2>
|
||||||
|
</div>
|
||||||
|
<div className="serivce-details-desc">
|
||||||
|
<p>
|
||||||
|
Welcome to Metatroncube Software Solutions, where innovation in web design meets Waterloo’s vibrant business landscape. As Waterloo’s premier website designers, we specialize in creating bespoke digital solutions that capture the essence of your business and connect you with your target audience. Our expertise in understanding the local market nuances positions us uniquely to elevate your online presence.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
<p>
|
||||||
|
Why Choose Metatroncube for Your Waterloo Business: In Waterloo’s thriving economic scene, your business deserves a website that stands out. At Metatroncube Software Solutions, we:
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold"> Grasp Local Dynamics:</span> Our deep understanding of Waterloo’s business environment means your website will effectively engage with your local audience.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p> <span className="bold">Provide Customized Web Solutions:</span> From startups to established enterprises, our approach is tailor-made to fit your unique digital needs.</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Focus on Collaboration:</span> Your vision is our blueprint. We collaborate with you closely to ensure your website reflects your brand’s ethos and goals.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
<div className="consen-section-title mt-3 mb-4">
|
||||||
|
<h2><span>Our </span>Services:</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold"> Bespoke Website Design:</span> We craft visually stunning and functionally superior websites that represent your brand’s personality.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p> <span className="bold">Responsive Web Development: </span> Our websites are optimized for all devices, ensuring a seamless user experience.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">E-Commerce Platforms:</span> Elevate your online sales with our intuitive e-commerce solutions designed for maximum customer engagement and conversion.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">SEO and Digital Marketing:</span> Boost your online visibility with our strategic SEO and comprehensive digital marketing services.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Local Success Stories: </span> Metatroncube has a proven track record of empowering Waterloo businesses through exceptional web design.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<p className="targets">
|
||||||
|
Shaping Digital Destinies with Precision and Passion — Metatroncube, Your Local Web Artisans.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="service-page-title2 portfolio"><h1 className="pb-0"><span className="meta">Our </span> Portfolio:</h1></div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/1.webp" aly="Innovative web solutions"></img>
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>Innovative Web Solutions</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Customized digital experiences to elevate your brand.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/2.webp" alt="Cutting-edge technology" />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title ">
|
||||||
|
<h4>Cutting-Edge Technology</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Leveraging the latest tech to create responsive, fast, and secure websites.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6 ">
|
||||||
|
<div className="service-details-thumb mt-0">
|
||||||
|
<img className="i-width" src="/assets/images/service-details/card-image/web-devo.webp" alt="A group of web developers, including a skilled web page designer, intensely reviewing code on a computer screen in a modern office environment." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<h4>Seamless Integration</h4>
|
||||||
|
|
||||||
|
<h6 className="changeColor">Streamline your online presence with effortlessly integrated web services.</h6>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Customized Design</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
{" "}
|
||||||
|
Responsive Layouts{" "}
|
||||||
|
</span>
|
||||||
|
</p >
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> SEO-Optimized</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Robust Security </span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="faq-section">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
|
||||||
|
<div className="col-lg-8 order-2 order-lg-1 pl-5">
|
||||||
|
<div id="tab1" className="tab_content">
|
||||||
|
<Accordion
|
||||||
|
defaultActiveKey={faqsData[0].id.toString()}
|
||||||
|
as="ul"
|
||||||
|
className="accordion"
|
||||||
|
>
|
||||||
|
{faqsData.map((faq) => (
|
||||||
|
<li
|
||||||
|
key={faq.id}
|
||||||
|
className="wow fadeInUp"
|
||||||
|
data-wow-delay={faq.animationDelay}
|
||||||
|
>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-lg-4 mb-4 mb-lg-0 order-1 order-lg-2">
|
||||||
|
<div className="testimonial-thumb text-center mt-3">
|
||||||
|
<img
|
||||||
|
src="/assets/images/service-details/faq/1.webp"
|
||||||
|
alt="FAQ"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="sub">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default WebDevelopment;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
319
pages/service/search-engine-optimization-seo-content-writing.js
Normal file
@ -0,0 +1,319 @@
|
|||||||
|
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import Seo from "@/src/components/services-details-banner/seo.js";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Link from "next/link";
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import Accordion from 'react-bootstrap/Accordion';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const SeoContentWriting = () => {
|
||||||
|
const faqsData = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "What is the importance of SEO in content writing?",
|
||||||
|
content:
|
||||||
|
"SEO is crucial in content writing as it helps in increasing the visibility of the content in search engines, driving organic traffic, and enhancing the relevance and authority of your website.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "How does quality content benefit my website?",
|
||||||
|
content:
|
||||||
|
"Quality content engages your audience, providing value and building trust. It leads to higher engagement rates, increased brand loyalty, and contributes to a better overall user experience on your website.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "Can SEO and content writing improve my sales?",
|
||||||
|
content:
|
||||||
|
"Yes, effective SEO and content writing can significantly improve sales. By attracting the right audience and providing them with valuable content, you can guide them through the sales funnel more effectively",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "How often should I update my website's content?",
|
||||||
|
content:
|
||||||
|
"Regular updates are key to keeping your website fresh and relevant. Depending on your industry, updating content weekly or bi-weekly can help maintain engagement and improve SEO performance.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const [active, setActive] = useState(faqsData[0].id);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Best SEO & Content Writing Company in waterloo, Canada" description="Boost online visibility with best SEO & Content Writing Services. Metatroncube, a Top-rated SEO company, agency for effective local search engine optimization." />
|
||||||
|
<Layout>
|
||||||
|
<Seo pageName={"SEO & CONTENT WRITING"} />
|
||||||
|
<div className="service-detials-area">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-4 col-md-12">
|
||||||
|
<div className="widget-categories-box">
|
||||||
|
{/* categories title */}
|
||||||
|
<div className="categories-title">
|
||||||
|
<h4> Services </h4>
|
||||||
|
</div>
|
||||||
|
{/* widget categories menu */}
|
||||||
|
<div className="widget-categories-menu">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/website-development-company">
|
||||||
|
<a> Website Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/mobile-application-development">
|
||||||
|
<a>Mobile Application Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/graphic-designing-company">
|
||||||
|
<a>Graphic Designing
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/ui-ux-designing">
|
||||||
|
<a> UI / UX Designing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li className="active">
|
||||||
|
<Link legacyBehavior href="/service/search-engine-optimization-seo-content-writing">
|
||||||
|
<a>SEO & Content Writing</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/digital-marketing-agency-in-canada">
|
||||||
|
<a> Digital Marketing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* categoreis thumb */}
|
||||||
|
<div className="widget-categories-thumb pt-0 pt-5">
|
||||||
|
{/* widget categories content */}
|
||||||
|
<div className="widget-categories-content text-center">
|
||||||
|
<div className="logo-thumb d-flex justify-content-center ml-70 mb-4">
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a className="subscribe-icon ml-5">
|
||||||
|
<i className="bi bi-telephone-inbound" />
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="card-color">
|
||||||
|
<h4 className="card-color">Looking for Top Digital <br /> service?</h4>
|
||||||
|
<p className="pt-3 card-color">Call anytime</p>
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651">
|
||||||
|
<a >
|
||||||
|
<h5 className="card-color">+1-647-679-7651</h5>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-8 col-md-12">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-12 col-sm-12">
|
||||||
|
<div className="consen-service-details-box">
|
||||||
|
<div className="consen-service-thumb">
|
||||||
|
<img src="/assets/images/service-details/seo.webp" alt="A team of marketing professionals in a meeting room discussing SEO and content writing strategies with laptops and a whiteboard filled with notes." />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-content">
|
||||||
|
<div className="consen-section-title mt-3 mb-3">
|
||||||
|
<h2><span>SEO & Content Writing</span> Services at Metatroncube</h2>
|
||||||
|
</div>
|
||||||
|
<div className="serivce-details-desc">
|
||||||
|
<p>
|
||||||
|
Transform your online presence with Metatroncube’s SEO & Content Writing Services. In the digital age, visibility is key to success, and our specialized services are designed to propel your website to the top of search engine rankings. We blend artful content creation with strategic SEO practices to not only attract but also engage and retain your audience.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Search Engine Optimization (SEO):</span> Unlock the potential of your website with our comprehensive SEO strategies. From keyword research and on-page optimization to link building and technical SEO, we ensure your site ranks higher on search engines, driving organic traffic and enhancing your online authority.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p> <span className="bold">Content Writing:</span> Content is the heart of digital marketing, and our expert writers know how to make it beat. We produce engaging, informative, and SEO-friendly content that resonates with your audience and supports your marketing goals. From blog posts and articles to web content and whitepapers, our content not only informs but also inspires action.</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Integrated SEO & Content Strategy:</span> We don’t just write content; we craft an integrated strategy where content and SEO work hand in hand. By aligning your content strategy with SEO best practices, we ensure that every piece of content is an opportunity to improve your search rankings and connect with your target audience.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Analytics and Reporting:</span> Transparency and data-driven decisions are at the core of our services. We provide detailed analytics and performance reports, giving you insights into how our strategies are enhancing your online visibility and contributing to your business growth.
|
||||||
|
</p>
|
||||||
|
<p className="targets">
|
||||||
|
Crafting Words, Elevating Brands – Where Content Meets Purpose and Strategy.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<p className="mb-5">
|
||||||
|
Partner with Metatroncube for SEO & Content Writing Services and experience the power of content that’s not just seen but also felt and acted upon. Let’s elevate your brand’s voice and make it echo across the digital landscape.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/9.webp" alt="SEO mastery"></img>
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4> SEO Mastery</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Boost Your Search Engine Presence. Our advanced SEO techniques elevate your site's visibility and drive organic growth and reach.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/10.webp" alt="Content writing excellence"></img>
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>Content Writing Excellence</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Engage and Inspire with Every Word. Our content writing services blend creativity with marketing savvy for impactful storytelling.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-thumb mt-0">
|
||||||
|
<img className="i-width" src="/assets/images/service-details/card-image/seo.webp" alt="A group of web developers, including a skilled web page designer, intensely reviewing code on a computer screen in a modern office environment." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2 ">
|
||||||
|
<h4 className="mt-0">SEO: Your Pathway to Digital Prominence</h4>
|
||||||
|
|
||||||
|
<h6 className="changeColor bold">Optimizing Your Online Presence for Maximum Impact</h6>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="widget-service-details-icon pb-4">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>Keyword-Rich Content</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
{" "}
|
||||||
|
Versatile Content Creation{" "}
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
Brand Voice Consistency</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>Performance Tracking</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="faq-section">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
<div className="col-lg-8 order-2 order-lg-1 pl-5">
|
||||||
|
<div id="tab1" className="tab_content">
|
||||||
|
<Accordion
|
||||||
|
defaultActiveKey={faqsData[0].id.toString()}
|
||||||
|
as="ul"
|
||||||
|
className="accordion"
|
||||||
|
>
|
||||||
|
{faqsData.map((faq) => (
|
||||||
|
<li
|
||||||
|
key={faq.id}
|
||||||
|
className="wow fadeInUp"
|
||||||
|
data-wow-delay={faq.animationDelay}
|
||||||
|
>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-4 mb-4 mb-lg-0 order-1 order-lg-2 text-center mt-3">
|
||||||
|
<div className="testimonial-thumb">
|
||||||
|
<img
|
||||||
|
src="/assets/images/service-details/faq/5.webp"
|
||||||
|
alt="FAQ"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="sub">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default SeoContentWriting;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
322
pages/service/ui-ux-designing.js
Normal file
@ -0,0 +1,322 @@
|
|||||||
|
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import UiUx from "@/src/components/services-details-banner/uiux.js";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Link from "next/link";
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import Accordion from 'react-bootstrap/Accordion';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const UiUxDesign = () => {
|
||||||
|
const faqsData = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "GPT What does a UI/UX design agency do?",
|
||||||
|
content:
|
||||||
|
"A UI/UX design agency specializes in creating user interfaces and user experiences for digital products like websites, mobile apps, and software. They focus on understanding user behaviors and needs to design intuitive, engaging, and visually appealing interfaces. Their work involves research, wireframing, prototyping, testing, and iterating designs to ensure a product is not only easy and pleasant to use but also meets the goals of the business.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "What do UI/UX designers charge?",
|
||||||
|
content:
|
||||||
|
"The cost of hiring UI/UX designers can vary widely based on factors like location, experience, the complexity of the project, and whether they are freelancers or part of an agency. Freelance UI/UX designers may charge anywhere from $50 to $200 per hour, while agencies might have set rates for projects, which can range from a few thousand dollars for basic designs to tens of thousands for more complex, large-scale projects.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "Is UI/UX still in demand?",
|
||||||
|
content:
|
||||||
|
"Absolutely, UI/UX is still in high demand. As the digital landscape continues to grow and evolve, the need for skilled UI/UX designers remains critical. Companies recognize the importance of providing excellent user experiences to attract and retain customers, making UI/UX a key factor in the success of digital products.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "How does good UI/UX design benefit a business?",
|
||||||
|
content:
|
||||||
|
"Good UI/UX design significantly benefits a business by enhancing user satisfaction, which in turn can lead to increased user engagement, higher retention rates, and improved conversion rates. A well-designed, user-friendly interface makes it easier for users to navigate and interact with a product, leading to a positive experience that can boost the brand's reputation, customer loyalty, and ultimately, the business's bottom line.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const [active, setActive] = useState(faqsData[0].id);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Best UI/UX Designing Company in Waterloo, Canada" description="Establish the best UI/UX design company in Waterloo to improve user experiences. Create user-friendly interfaces for digital success." />
|
||||||
|
<Layout>
|
||||||
|
<UiUx pageName={"UI / UX DESIGNING"} />
|
||||||
|
<div className="service-detials-area">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-4 col-md-12">
|
||||||
|
<div className="widget-categories-box">
|
||||||
|
{/* categories title */}
|
||||||
|
<div className="categories-title">
|
||||||
|
<h4> Services </h4>
|
||||||
|
</div>
|
||||||
|
{/* widget categories menu */}
|
||||||
|
<div className="widget-categories-menu">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/website-development-company">
|
||||||
|
<a> Website Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/mobile-application-development">
|
||||||
|
<a>Mobile Application Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/graphic-designing-company">
|
||||||
|
<a>Graphic Designing
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li className="active">
|
||||||
|
<Link legacyBehavior href="/service/ui-ux-designing">
|
||||||
|
<a> UI / UX Designing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/search-engine-optimization-seo-content-writing">
|
||||||
|
<a>SEO & Content Writing</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/digital-marketing-agency-in-canada">
|
||||||
|
<a> Digital Marketing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* categoreis thumb */}
|
||||||
|
<div className="widget-categories-thumb pt-0 pt-5">
|
||||||
|
{/* widget categories content */}
|
||||||
|
<div className="widget-categories-content text-center">
|
||||||
|
<div className="logo-thumb d-flex justify-content-center ml-70 mb-4">
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a className="subscribe-icon ml-5">
|
||||||
|
<i className="bi bi-telephone-inbound" />
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="card-color">
|
||||||
|
<h4 className="card-color">Looking for Top Digital <br /> service?</h4>
|
||||||
|
<p className="pt-3 card-color">Call anytime</p>
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651">
|
||||||
|
<a >
|
||||||
|
<h5 className="card-color">+1-647-679-7651</h5>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-8 col-md-12">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-12 col-sm-12">
|
||||||
|
<div className="consen-service-details-box">
|
||||||
|
<div className="consen-service-thumb">
|
||||||
|
<img src="/assets/images/service-details/ui-ux.webp" alt="A team of UI/UX designers collaboratively working on a high-fidelity interface mockup with color palettes and design elements." />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-content">
|
||||||
|
<div className="consen-section-title mt-4 mb-4 ">
|
||||||
|
<h2><span>UI/UX Design</span> Services at Metatroncube</h2>
|
||||||
|
</div>
|
||||||
|
<div className="serivce-details-desc">
|
||||||
|
<p>
|
||||||
|
Elevate your digital presence with Metatroncube’s UI/UX Design Services, where user experience meets stunning aesthetics. Our design team focuses on creating interfaces that are not only visually appealing but also intuitively navigable, ensuring users enjoy every interaction with your digital product. From initial research to final implementation, we craft experiences that delight users and drive engagement.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Research and Strategy:</span> Understanding your users is key. We begin with in-depth research and analysis to inform our design strategy, ensuring that every decision is data-driven and user-centered.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p> <span className="bold">User Interface (UI) Design:</span> Captivate your audience with beautifully designed interfaces. Our UI designs are tailored to be clear, concise, and visually engaging, enhancing the overall aesthetic of your digital product.</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">User Experience (UX) Design:</span> Craft a seamless journey through your digital landscape. We map out the user flow to create intuitive and accessible experiences, which keep users coming back.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Prototyping and Testing:</span> Bring concepts to life with interactive prototypes. We validate our designs through rigorous user testing, refining the user experience to near perfection.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Responsive and Adaptive Design:</span> Prepare your product for every screen and device. Our responsive designs ensure your app or website performs flawlessly, no matter where it’s accessed from.
|
||||||
|
</p>
|
||||||
|
<p className="targets">
|
||||||
|
Designing with Empathy, Perfecting with Insight — Metatroncube: Shaping Experiences That Resonate.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<p className="mb-5">
|
||||||
|
By integrating Metatroncube’s UI/UX Design Services into your project, you’re choosing a partner dedicated to exceptional design and optimal user experiences. Let’s create something extraordinary together.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/7.webp" alt="Web consultant"></img>
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>Web Consultant</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Your growth starts with the right advice. Let’s build smarter, not harder.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/8.webp" alt="Creative design"></img>
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>Creative Design</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>If you want design that speaks, sells, and sticks, you’re in the right place.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-thumb mt-0">
|
||||||
|
<img className="i-width" src="/assets/images/service-details/card-image/ui-ux.webp" alt="A group of web developers, including a skilled web page designer, intensely reviewing code on a computer screen in a modern office environment." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<h4 className="mt-0">Designing Intuitive Digital Experiences</h4>
|
||||||
|
|
||||||
|
<h6 className="changeColor bold">Where Every Pixel Counts.</h6>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>Intuitive Navigation</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
{" "}
|
||||||
|
Engaging Visuals{" "}
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>User-Centered Approach</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>Accessibility and Inclusion</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="faq-section">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
<div className="col-lg-8 order-2 order-lg-1 pl-5">
|
||||||
|
<div id="tab1" className="tab_content">
|
||||||
|
<Accordion
|
||||||
|
defaultActiveKey={faqsData[0].id.toString()}
|
||||||
|
as="ul"
|
||||||
|
className="accordion"
|
||||||
|
>
|
||||||
|
{faqsData.map((faq) => (
|
||||||
|
<li
|
||||||
|
key={faq.id}
|
||||||
|
className="wow fadeInUp"
|
||||||
|
data-wow-delay={faq.animationDelay}
|
||||||
|
>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-4 mb-4 mb-lg-0 order-1 order-lg-2 text-center mt-3">
|
||||||
|
<div className="testimonial-thumb">
|
||||||
|
<img
|
||||||
|
src="/assets/images/service-details/faq/4.webp"
|
||||||
|
alt="FAQ"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="sub">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default UiUxDesign;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
374
pages/service/waterloo-seo-services.js
Normal file
@ -0,0 +1,374 @@
|
|||||||
|
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import Seo from "@/src/components/services-details-banner/seo.js";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Link from "next/link";
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import Accordion from 'react-bootstrap/Accordion';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const SeoContentWriting = () => {
|
||||||
|
const faqsData = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "What is the importance of SEO in content writing?",
|
||||||
|
content:
|
||||||
|
"SEO is crucial in content writing as it helps in increasing the visibility of the content in search engines, driving organic traffic, and enhancing the relevance and authority of your website.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "How does quality content benefit my website?",
|
||||||
|
content:
|
||||||
|
"Quality content engages your audience, providing value and building trust. It leads to higher engagement rates, increased brand loyalty, and contributes to a better overall user experience on your website.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "Can SEO and content writing improve my sales?",
|
||||||
|
content:
|
||||||
|
"Yes, effective SEO and content writing can significantly improve sales. By attracting the right audience and providing them with valuable content, you can guide them through the sales funnel more effectively",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "How often should I update my website's content?",
|
||||||
|
content:
|
||||||
|
"Regular updates are key to keeping your website fresh and relevant. Depending on your industry, updating content weekly or bi-weekly can help maintain engagement and improve SEO performance.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const [active, setActive] = useState(faqsData[0].id);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Best SEO & Content Writing Company in waterloo, Canada" description="Boost online visibility with best SEO & Content Writing Services. Metatroncube, a Top-rated SEO company, agency for effective local search engine optimization." />
|
||||||
|
<Layout>
|
||||||
|
<Seo pageName={"SEO & CONTENT WRITING"} />
|
||||||
|
<div className="service-detials-area">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-4 col-md-12">
|
||||||
|
<div className="widget-categories-box">
|
||||||
|
{/* categories title */}
|
||||||
|
<div className="categories-title">
|
||||||
|
<h4> Services </h4>
|
||||||
|
</div>
|
||||||
|
{/* widget categories menu */}
|
||||||
|
<div className="widget-categories-menu">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/website-development-company">
|
||||||
|
<a> Website Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/mobile-application-development">
|
||||||
|
<a>Mobile Application Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/graphic-designing-company">
|
||||||
|
<a>Graphic Designing
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/ui-ux-designing">
|
||||||
|
<a> UI / UX Designing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li className="active">
|
||||||
|
<Link legacyBehavior href="/service/search-engine-optimization-seo-content-writing">
|
||||||
|
<a>SEO & Content Writing</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/digital-marketing-agency-in-canada">
|
||||||
|
<a> Digital Marketing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* categoreis thumb */}
|
||||||
|
<div className="widget-categories-thumb pt-0 pt-5">
|
||||||
|
{/* widget categories content */}
|
||||||
|
<div className="widget-categories-content text-center">
|
||||||
|
<div className="logo-thumb d-flex justify-content-center ml-70 mb-4">
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a className="subscribe-icon ml-5">
|
||||||
|
<i className="bi bi-telephone-inbound" />
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="card-color">
|
||||||
|
<h4 className="card-color">Looking for Top Digital <br /> service?</h4>
|
||||||
|
<p className="pt-3 card-color">Call anytime</p>
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651">
|
||||||
|
<a >
|
||||||
|
<h5 className="card-color">+1-647-679-7651</h5>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-8 col-md-12">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-12 col-sm-12">
|
||||||
|
<div className="consen-service-details-box">
|
||||||
|
<div className="consen-service-thumb">
|
||||||
|
<img src="/assets/images/service-details/seo.webp" alt="A team of marketing professionals in a meeting room discussing SEO and content writing strategies with laptops and a whiteboard filled with notes." />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-content">
|
||||||
|
<div className="consen-section-title mt-3 mb-3">
|
||||||
|
<h2><span>Waterloo SEO Services</span> "Waterloo SEO": Revolutionizing Your Online Visibility</h2>
|
||||||
|
</div>
|
||||||
|
<div className="serivce-details-desc">
|
||||||
|
<p>
|
||||||
|
In the heart of Waterloo’s dynamic digital landscape, excelling in SEO is not just beneficial; it’s essential. Metatroncube Software Solutions specializes in Waterloo SEO, crafting strategies that propel your business to the top of search rankings in the local market. Our approach to “Waterloo SEO” is designed to maximize your digital footprint and elevate your brand in the Waterloo area. By understanding the unique aspects of the local market, we tailor our SEO strategies to ensure your business not only gets noticed but becomes a leading voice in your industry.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
<h3>1. The Art of "Waterloo SEO": <span className="meta"> Crafting Your Success Story</span>
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<h4> Tailoring Strategies <span className="meta"> for Local Impact</span>
|
||||||
|
</h4>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Waterloo SEO is not just about being visible; it’s about making a statement in the digital realm. Our approach involves a deep analysis of your business, understanding your unique value proposition, and integrating it with Waterloo’s market characteristics. We focus on creating a narrative that resonates with your target audience, blending local understanding with broad SEO expertise.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
<h3>2. "Waterloo SEO" Techniques: <span className="meta"> On-Page and Off-Page Mastery</span>
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<h4> Comprehensive On-Page and Off-Page <span className="meta"> Optimization</span>
|
||||||
|
</h4>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Our on-page optimization includes meticulous keyword placement, meta-tag enhancements, and content optimization tailored to “Waterloo SEO”. Off-page, we focus on building a strong backlink profile from reputable local sources, enhancing your website’s authority and relevance for Waterloo-based queries.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
<h3>3. Localized Content for "Waterloo SEO": <span className="meta"> Engaging the Waterloo Community</span>
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<h4> Creating Content <span className="meta"> that Connects with Waterloo</span>
|
||||||
|
</h4>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
The content we create speaks directly to the Waterloo community. It’s about engaging narratives that reflect local interests, trends, and needs, all while emphasizing “Waterloo SEO”. We craft content that is not only informative and valuable but also instills a sense of local pride and connection.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
<h3> 4. Navigating the "Waterloo SEO" Landscape: <span className="meta"> Trends and Innovations</span>
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<h4>Staying Ahead with <span className="meta"> the Latest SEO Trends </span>
|
||||||
|
</h4>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
SEO is an ever-evolving field, and staying ahead in “Waterloo SEO” means keeping abreast of the latest trends and innovations. We constantly refine our strategies based on the latest SEO research, algorithm updates, and digital marketing innovations, ensuring your business remains at the forefront of the Waterloo digital scene.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
<h3> 5. Analyzing and Refining <span className="meta"> Your "Waterloo SEO" Strategy</span>
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<h4> Ongoing Analysis for <span className="meta"> Continuous Improvement</span>
|
||||||
|
</h4>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Success in SEO is measured and built over time. We continuously monitor your website’s performance, making data-driven adjustments to enhance your “Waterloo SEO” ranking. This includes analyzing user behavior, conversion rates, and keyword performance specific to the Waterloo area.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
|
||||||
|
<p className="targets ">
|
||||||
|
Driving Success in Digital Spaces – Mastering SEO in Waterloo with Precision and Creativity.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">“Waterloo SEO” Case Studies: Witnessing Real Success Proven Results in the Waterloo Market:</span> Discover how we’ve helped businesses in Waterloo achieve their SEO goals. From increased traffic and higher rankings to enhanced brand visibility and customer engagement, our case studies demonstrate the tangible impact of a well-executed “Waterloo SEO” strategy.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p> <span className="bold">Embrace “Waterloo SEO” with Metatroncube:</span>Partner with us to navigate the complexities of Waterloo SEO. Our team is ready to employ their expertise and passion to help your business thrive in the digital landscape of Waterloo.</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Conclusion Your Journey Towards “Waterloo SEO” Mastery Starts Here:</span>Begin your path to SEO success with Metatroncube. Contact us today to explore how we can elevate your online presence and drive meaningful results in the Waterloo area.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/9.webp" alt="SEO mastery"></img>
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4> SEO Mastery</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Boost Your Search Engine Presence. Our advanced SEO techniques elevate your site's visibility and drive organic growth and reach.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/10.webp" alt="Content writing excellence"></img>
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>Content Writing Excellence</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Engage and Inspire with Every Word. Our content writing services blend creativity with marketing savvy for impactful storytelling.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-thumb mt-0">
|
||||||
|
<img className="i-width" src="/assets/images/service-details/card-image/seo.webp" alt="A group of web developers, including a skilled web page designer, intensely reviewing code on a computer screen in a modern office environment." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2 ">
|
||||||
|
<h4 className="mt-0">SEO: Your Pathway to Digital Prominence</h4>
|
||||||
|
|
||||||
|
<h6 className="changeColor bold">Optimizing Your Online Presence for Maximum Impact</h6>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="widget-service-details-icon pb-4">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>Keyword-Rich Content</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
{" "}
|
||||||
|
Versatile Content Creation{" "}
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
Brand Voice Consistency</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>Performance Tracking</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="faq-section">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
<div className="col-lg-8 order-2 order-lg-1 pl-5">
|
||||||
|
<div id="tab1" className="tab_content">
|
||||||
|
<Accordion
|
||||||
|
defaultActiveKey={faqsData[0].id.toString()}
|
||||||
|
as="ul"
|
||||||
|
className="accordion"
|
||||||
|
>
|
||||||
|
{faqsData.map((faq) => (
|
||||||
|
<li
|
||||||
|
key={faq.id}
|
||||||
|
className="wow fadeInUp"
|
||||||
|
data-wow-delay={faq.animationDelay}
|
||||||
|
>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-4 mb-4 mb-lg-0 order-1 order-lg-2 text-center mt-3">
|
||||||
|
<div className="testimonial-thumb">
|
||||||
|
<img
|
||||||
|
src="/assets/images/service-details/faq/5.webp"
|
||||||
|
alt="FAQ"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="sub">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default SeoContentWriting;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -0,0 +1,349 @@
|
|||||||
|
|
||||||
|
import Breadcumb from "@/src/components/Breadcumb";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Link from "next/link";
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import Accordion from 'react-bootstrap/Accordion';
|
||||||
|
import Web from "@/src/components/services-details-banner/web.js";
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const WebDevelopment = () => {
|
||||||
|
const faqsData = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "Is my website builder allowed on site?",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "How to soft launch your business?",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "How to turn visitors into contributors",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "How can i find my app solutions?",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const [active, setActive] = useState(faqsData[0].id);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Best Web Design Agency | Web Development Company waterloo, Canada" description="Top web design agency in Waterloo, Canada. Offering web development services to create stunning websites. Choose us best website design and development service." />
|
||||||
|
<Layout>
|
||||||
|
<Web pageName={"WEBSITE DEVELOPMENT"} />
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen service details Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="service-detials-area">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-4 col-md-12">
|
||||||
|
<div className="widget-categories-box">
|
||||||
|
{/* categories title */}
|
||||||
|
<div className="categories-title">
|
||||||
|
<h4> Services </h4>
|
||||||
|
</div>
|
||||||
|
{/* widget categories menu */}
|
||||||
|
<div className="widget-categories-menu">
|
||||||
|
<ul>
|
||||||
|
<li className="active">
|
||||||
|
<Link legacyBehavior href="/service/website-development-company">
|
||||||
|
<a> Website Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/mobile-application-development">
|
||||||
|
<a>Mobile Application Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/graphic-designing-company">
|
||||||
|
<a>Graphic Designing
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/ui-ux-designing">
|
||||||
|
<a> UI / UX Designing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/search-engine-optimization-seo-content-writing">
|
||||||
|
<a>SEO & Content Writing</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/digital-marketing-agency-in-canada">
|
||||||
|
<a> Digital Marketing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* categoreis thumb */}
|
||||||
|
<div className="widget-categories-thumb pt-0 pt-5">
|
||||||
|
{/* widget categories content */}
|
||||||
|
<div className="widget-categories-content text-center">
|
||||||
|
<div className="logo-thumb d-flex justify-content-center ml-70 mb-4">
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a className="subscribe-icon ml-5">
|
||||||
|
<i className="bi bi-telephone-inbound" />
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="card-color">
|
||||||
|
<h4 className="card-color">Looking for Top Digital <br /> service?</h4>
|
||||||
|
<p className="pt-3 card-color">Call anytime</p>
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a>
|
||||||
|
<h5 className="card-color">+1-647-679-7651</h5>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-8 col-md-12">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-12 col-sm-12">
|
||||||
|
<div className="consen-service-details-box">
|
||||||
|
<div className="consen-service-thumb">
|
||||||
|
<img src="/assets/images/service-details/web-development.webp" alt="A web page designer consulting with a diverse team over documents on a table, indicative of a collaborative web development process." />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-content">
|
||||||
|
<div className="consen-section-title mt-3 mb-4">
|
||||||
|
<h2>Unlock the Potential of Your Online Presence with<span> Metatroncube Software Solutions</span> – Premier Web Design in Toronto</h2>
|
||||||
|
</div>
|
||||||
|
<div className="serivce-details-desc">
|
||||||
|
<p>
|
||||||
|
At Metatroncube Software Solutions, we understand that the digital landscape of Toronto is not just about being seen—it’s about being memorable. Specializing in innovative website creation, our Toronto-based web design experts blend aesthetics with functionality, crafting bespoke websites that capture the essence of your brand and engage your target audience.
|
||||||
|
</p>
|
||||||
|
<p className="targets">
|
||||||
|
Specializing in innovative website creation, our Toronto-based web design experts blend aesthetics with functionality, crafting bespoke websites.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
<h3> Why Choose Metatroncube <span className="meta"> for Website Design in Toronto?</span>
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold"> Expertise in Local Trends:</span> As a leading website design company in Toronto, we have our finger on the pulse of the city’s digital demands and aesthetic preferences. Whether you are a startup or an established enterprise, our tailored solutions ensure your website stands out in a competitive market.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p><span className="bold">Comprehensive Web Design Solutions:</span> Our services encompass everything from initial design to final launch, and beyond. ‘Website creation Toronto’ is more than just a keyword for us—it’s a commitment to delivering end-to-end solutions that enhance your online visibility and functionality.</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">SEO-Driven Design: </span> With keywords like ‘web design Toronto’ drawing significant search volumes, we prioritize SEO from the ground up. Our designs are not only visually appealing but also optimized for search engines, ensuring that your site ranks well for ‘website design Toronto’ and related queries.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Customized Strategies for Every Client:</span> Understanding that each business has unique needs, we offer customized web design solutions tailored to meet your specific objectives. Our strategic approach ensures that every element of your site, from layout to content, aligns with your overall business goals.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Responsive and Reliable Support: </span> At Metatroncube, we believe in building relationships beyond contracts. Our team is always ready to assist you with any updates, technical issues, or strategic advice to keep your website performing at its best.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
<h4> Your Website Is Your <span className="meta">First Impression</span>
|
||||||
|
</h4>
|
||||||
|
|
||||||
|
<p>In today’s fast-paced digital world, your website often makes the first impression on potential clients and customers. Metatroncube Software Solutions ensures it’s a lasting one. Our team leverages the latest technologies and creative strategies to deliver websites that are not only visually striking but also highly functional and user-friendly.</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
<h4> Ready to Elevate Your <span className="meta">Online Presence? </span>
|
||||||
|
</h4>
|
||||||
|
|
||||||
|
<p>If you’re looking for top-tier web design in Toronto, look no further than Metatroncube Software Solutions. Contact us today to discuss how we can transform your online presence with a stunning, effective, and SEO-optimized website tailored just for you.</p>
|
||||||
|
|
||||||
|
<p>Let’s create a digital experience that resonates with your audience and elevates your brand. Discover the difference with Metatroncube—where your vision meets our expertise.</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* <div class="service-page-title2 portfolio"><h1 className="pb-0"><span className="meta"> Our</span> Portfolio:</h1></div> */}
|
||||||
|
|
||||||
|
|
||||||
|
{/* <div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/1.webp" aly="Innovative web solutions"></img>
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>Innovative Web Solutions</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Customized digital experiences to elevate your brand.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/2.webp" alt="Cutting-edge technology" />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title ">
|
||||||
|
<h4>Cutting-Edge Technology</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Leveraging the latest tech to create responsive, fast, and secure websites.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6 ">
|
||||||
|
<div className="service-details-thumb mt-0">
|
||||||
|
<img className="i-width" src="/assets/images/service-details/card-image/web-devo.webp" alt="A group of web developers, including a skilled web page designer, intensely reviewing code on a computer screen in a modern office environment." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<h4>Seamless Integration</h4>
|
||||||
|
|
||||||
|
<h6 className="changeColor">Streamline your online presence with effortlessly integrated web services.</h6>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Customized Design</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
{" "}
|
||||||
|
Responsive Layouts{" "}
|
||||||
|
</span>
|
||||||
|
</p >
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> SEO-Optimized</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Robust Security </span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> */}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="faq-section">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
|
||||||
|
<div className="col-lg-8 order-2 order-lg-1 pl-5">
|
||||||
|
<div id="tab1" className="tab_content">
|
||||||
|
<Accordion
|
||||||
|
defaultActiveKey={faqsData[0].id.toString()}
|
||||||
|
as="ul"
|
||||||
|
className="accordion"
|
||||||
|
>
|
||||||
|
{faqsData.map((faq) => (
|
||||||
|
<li
|
||||||
|
key={faq.id}
|
||||||
|
className="wow fadeInUp"
|
||||||
|
data-wow-delay={faq.animationDelay}
|
||||||
|
>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-lg-4 mb-4 mb-lg-0 order-1 order-lg-2">
|
||||||
|
<div className="testimonial-thumb text-center mt-3">
|
||||||
|
<img
|
||||||
|
src="/assets/images/service-details/faq/1.webp"
|
||||||
|
alt="FAQ"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="sub">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default WebDevelopment;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
516
pages/service/web-page-design-in-waterloo.js
Normal file
@ -0,0 +1,516 @@
|
|||||||
|
|
||||||
|
import Breadcumb from "@/src/components/Breadcumb";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Link from "next/link";
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import Accordion from 'react-bootstrap/Accordion';
|
||||||
|
import Web from "@/src/components/services-details-banner/web.js";
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const WebDevelopment = () => {
|
||||||
|
const faqsData = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "Is my website builder allowed on site?",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "How to soft launch your business?",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "How to turn visitors into contributors",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "How can i find my app solutions?",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const [active, setActive] = useState(faqsData[0].id);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Best Web Design Agency | Web Development Company waterloo, Canada" description="Top web design agency in Waterloo, Canada. Offering web development services to create stunning websites. Choose us best website design and development service." />
|
||||||
|
<Layout>
|
||||||
|
<Web pageName={" WEBSITE DEVELOPMENT"} />
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen service details Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="service-detials-area">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-4 col-md-12">
|
||||||
|
<div className="widget-categories-box">
|
||||||
|
{/* categories title */}
|
||||||
|
<div className="categories-title">
|
||||||
|
<h4> Services </h4>
|
||||||
|
</div>
|
||||||
|
{/* widget categories menu */}
|
||||||
|
<div className="widget-categories-menu">
|
||||||
|
<ul>
|
||||||
|
<li className="active">
|
||||||
|
<Link legacyBehavior href="/service/website-development-company">
|
||||||
|
<a> Website Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/mobile-application-development">
|
||||||
|
<a>Mobile Application Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/graphic-designing-company">
|
||||||
|
<a>Graphic Designing
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/ui-ux-designing">
|
||||||
|
<a> UI / UX Designing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/search-engine-optimization-seo-content-writing">
|
||||||
|
<a>SEO & Content Writing</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/digital-marketing-agency-in-canada">
|
||||||
|
<a> Digital Marketing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* categoreis thumb */}
|
||||||
|
<div className="widget-categories-thumb pt-0 pt-5">
|
||||||
|
{/* widget categories content */}
|
||||||
|
<div className="widget-categories-content text-center">
|
||||||
|
<div className="logo-thumb d-flex justify-content-center ml-70 mb-4">
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a className="subscribe-icon ml-5">
|
||||||
|
<i className="bi bi-telephone-inbound" />
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="card-color">
|
||||||
|
<h4 className="card-color">Looking for Top Digital <br /> service?</h4>
|
||||||
|
<p className="pt-3 card-color">Call anytime</p>
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a>
|
||||||
|
<h5 className="card-color">+1-647-679-7651</h5>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-8 col-md-12">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-12 col-sm-12">
|
||||||
|
<div className="consen-service-details-box">
|
||||||
|
<div className="consen-service-thumb">
|
||||||
|
<img src="/assets/images/service-details/web-development.webp" alt="A web page designer consulting with a diverse team over documents on a table, indicative of a collaborative web development process." />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-content">
|
||||||
|
<div className="consen-section-title mt-3 mb-4">
|
||||||
|
<h2><span>Web Page Design in Waterloo Metatroncube:
|
||||||
|
</span> Crafting Digital Artistry in Web Page Design for Waterloo Community</h2>
|
||||||
|
</div>
|
||||||
|
<div className="serivce-details-desc">
|
||||||
|
<p>
|
||||||
|
Discover Personalized Web Design with Waterloo’s Creative Architects At Metatroncube Software Solutions, nestled in the heart of Waterloo’s innovation district, we pride ourselves on being the leading web designers in Waterloo. Our team combines the latest technological advancements with a touch of creative flair to ensure that each web solution we deliver is not only visually striking but also provides a stellar user experience that resonates with your audience.
|
||||||
|
</p>
|
||||||
|
{/* <p className="targets">
|
||||||
|
A website is not just an online destination; it’s a digital journey that starts with a single click.
|
||||||
|
</p> */}
|
||||||
|
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Redefining Aesthetics with Purposeful Web Design Our journey in website design transcends typical aesthetics. As dedicated website designers in Waterloo, we delve into the fabric of your brand’s story, weaving a digital narrative that captures your essence and establishes a meaningful connection with your visitors. Our ethos, deeply rooted in the concept of “Web Page Design Waterloo,” sets a benchmark for innovation and quality in the digital realm.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tailoring Web Solutions for Waterloo’s Diverse Businesses We understand that each brand is unique, especially when it comes to small businesses that form the backbone of Waterloo’s economy. As small businesses web designers in Waterloo, we offer personalized and tailored web solutions that reflect the distinct identity of each client, ensuring a unique and compelling digital presence that stands out in the marketplace.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Embracing a User-Centric Design Philosophy At the core of Metatroncube’s strategy is a profound emphasis on the user experience. We meticulously research user behaviors and preferences to ensure that each website we craft is not only intuitive but thoroughly engaging, meeting the high standards we set for “Web Page Design Waterloo.”
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Harnessing Advanced Technology for Dynamic Web Solutions With an arsenal of cutting-edge technology at our disposal, we create web designs that are both robust and scalable. Our commitment to leveraging modern tools and innovative techniques reinforces our stature as a pioneer in “Web Page Design Waterloo,” prepared to take on the challenges of an ever-evolving digital landscape.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p> Enhancing Visibility with SEO-Optimized Design In today’s digital age, SEO is not an afterthought but a fundamental aspect of web design. Our designs are meticulously optimized to improve your site’s ranking on search engines, thereby increasing your online visibility and driving valuable organic traffic as part of our comprehensive “Web Page Design Waterloo” services.</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Dedicated Support for Your Evolving Online Needs Our engagement with you goes beyond the website launch. We are committed to providing continuous support, ensuring that your digital platform remains cutting-edge and responsive to the changing needs of your business, reflecting the vibrant and innovative spirit of “Web Page Design Waterloo.”
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Embark on a Collaborative Design Journey with Metatroncube Your journey towards an outstanding web presence starts here at Metatroncube. Let us take you beyond your expectations, as we showcase the pinnacle of “Web Page Design Waterloo.” Join us in crafting a digital experience that’s as impactful as the city we serve.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Experience the pinnacle of web design with Metatroncube. Together, let’s shape a distinguished and effective digital footprint for your brand in Waterloo.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div className="col-lg-12">
|
||||||
|
<div className="service-details-thumb mt-0">
|
||||||
|
<img className="i-width" src="/assets/images/service-details/card-image/web-devo.webp" alt="A group of web developers, including a skilled web page designer, intensely reviewing code on a computer screen in a modern office environment." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p className="targets">
|
||||||
|
Web Page Design Waterloo: Where Your Digital Dreams Take Flight. Transforming Visions into Virtual Masterpieces.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{/* <div className="service-page-title">
|
||||||
|
<h3>Key Features of Our Website Development Services:
|
||||||
|
<span className="meta"> Crafting Digital Excellence</span>
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
At Metatroncube, our website development services are distinguished by a series of key features that ensure each project we undertake is not just completed but is transformed into a digital masterpiece. Here’s what sets our services a part:
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0">1. Custom Design:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Tailored Aesthetics:</span> Every website we create is tailored to reflect your brand’s unique identity. Our designers work closely with you to ensure the visual elements resonate with your brand and appeal to your target audience.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">User Experience Focus:</span> We prioritize user experience (UX) in our designs, ensuring that navigation is intuitive and that the website is accessible to all users, thereby enhancing user engagement and satisfaction.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0 mt-4">2. Responsive and Mobile-Friendly:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Cross-Device Compatibility: </span> Understanding the importance of mobile traffic, we ensure your website looks great and functions seamlessly across all devices and screen sizes.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Speed Optimization: </span> We optimize for speed, reducing load times to improve user experience and boost SEO rankings.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0 mt-4">3. Advanced Technologies:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Cutting-Edge Solutions: </span> Our team stays abreast of the latest technological trends in web development, from advanced frontend frameworks to efficient backend solutions.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Scalability and Security: </span>We build websites that are not only robust and secure but also scalable, ensuring they can grow and evolve with your business.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0 mt-4">4. SEO-Optimized:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Visibility and Ranking: </span> Our development process includes SEO optimization to ensure your site ranks well on search engines, driving organic traffic and increasing visibility.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Content Strategy: </span>We assist in developing a content strategy that aligns with SEO best practices, ensuring your website’s content is relevant, engaging, and optimized for search engines.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0 mt-4">5. Comprehensive CMS Integration:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Easy Management: </span> We integrate powerful content management systems (CMS) to give you control over your content, allowing for easy updates and management.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Custom Features: </span>Depending on your needs, we can include custom features in the CMS, like e-commerce capabilities, blogs, or event calendars.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0 mt-4">6. Ongoing Support and Analytics:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Post-Launch Support: </span> Our relationship doesn’t end at launch. We provide ongoing support and maintenance to ensure your website remains up-to-date and performs optimally.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Data-Driven Insights: </span>We equip your site with analytics tools so you can monitor performance and user engagement, helping you make informed decisions for future growth.
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p className="mt-4">
|
||||||
|
In summary, our website development services at Metatroncube are a blend of aesthetics, functionality, technology, and strategy. We commit to delivering a product that not only meets but exceeds your expectations, driving your business forward in the digital realm.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div> */}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/*
|
||||||
|
<div class="service-page-title2 portfolio"><h1 className="pb-0"><span className="meta"> Our</span> Portfolio:</h1></div> */}
|
||||||
|
|
||||||
|
|
||||||
|
{/* <div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/1.webp" aly="Innovative web solutions"></img>
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>Innovative Web Solutions</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Customized digital experiences to elevate your brand.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/2.webp" alt="Cutting-edge technology" />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title ">
|
||||||
|
<h4>Cutting-Edge Technology</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Leveraging the latest tech to create responsive, fast, and secure websites.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div> */}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{/*
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6 ">
|
||||||
|
<div className="service-details-thumb mt-0">
|
||||||
|
<img className="i-width" src="/assets/images/service-details/card-image/web-devo.webp" alt="A group of web developers, including a skilled web page designer, intensely reviewing code on a computer screen in a modern office environment." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<h4>Seamless Integration</h4>
|
||||||
|
|
||||||
|
<h6 className="changeColor">Streamline your online presence with effortlessly integrated web services.</h6>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Customized Design</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
{" "}
|
||||||
|
Responsive Layouts{" "}
|
||||||
|
</span>
|
||||||
|
</p >
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> SEO-Optimized</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Robust Security </span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> */}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* <div className="faq-section">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
|
||||||
|
<div className="col-lg-8 order-2 order-lg-1 pl-5">
|
||||||
|
<div id="tab1" className="tab_content">
|
||||||
|
<Accordion
|
||||||
|
defaultActiveKey={faqsData[0].id.toString()}
|
||||||
|
as="ul"
|
||||||
|
className="accordion"
|
||||||
|
>
|
||||||
|
{faqsData.map((faq) => (
|
||||||
|
<li
|
||||||
|
key={faq.id}
|
||||||
|
className="wow fadeInUp"
|
||||||
|
data-wow-delay={faq.animationDelay}
|
||||||
|
>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-lg-4 mb-4 mb-lg-0 order-1 order-lg-2">
|
||||||
|
<div className="testimonial-thumb text-center mt-3">
|
||||||
|
<img
|
||||||
|
src="/assets/images/service-details/faq/1.webp"
|
||||||
|
alt="FAQ"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div> */}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="sub">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default WebDevelopment;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
521
pages/service/website-development-company.js
Normal file
@ -0,0 +1,521 @@
|
|||||||
|
|
||||||
|
import Breadcumb from "@/src/components/Breadcumb";
|
||||||
|
import Layout from "@/src/layout/Layout";
|
||||||
|
import Link from "next/link";
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import Accordion from 'react-bootstrap/Accordion';
|
||||||
|
import Web from "@/src/components/services-details-banner/web.js";
|
||||||
|
import SubCard from "@/src/components/AboveFooter";
|
||||||
|
import ConsenHead from "@/src/ConsenHead";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const WebDevelopment = () => {
|
||||||
|
const faqsData = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "Is my website builder allowed on site?",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "How to soft launch your business?",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "How to turn visitors into contributors",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "How can i find my app solutions?",
|
||||||
|
content:
|
||||||
|
"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable.",
|
||||||
|
animationDelay: ".5s",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const [active, setActive] = useState(faqsData[0].id);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ConsenHead title="Best Web Design Agency | Web Development Company waterloo, Canada" description="Top web design agency in Waterloo, Canada. Offering web development services to create stunning websites. Choose us best website design and development service." />
|
||||||
|
<Layout>
|
||||||
|
<Web pageName={" WEBSITE DEVELOPMENT"} />
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen service details Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="service-detials-area">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-4 col-md-12">
|
||||||
|
<div className="widget-categories-box">
|
||||||
|
{/* categories title */}
|
||||||
|
<div className="categories-title">
|
||||||
|
<h4> Services </h4>
|
||||||
|
</div>
|
||||||
|
{/* widget categories menu */}
|
||||||
|
<div className="widget-categories-menu">
|
||||||
|
<ul>
|
||||||
|
<li className="active">
|
||||||
|
<Link legacyBehavior href="/service/website-development-company">
|
||||||
|
<a> Website Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/mobile-application-development">
|
||||||
|
<a>Mobile Application Development </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/graphic-designing-company">
|
||||||
|
<a>Graphic Designing
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/ui-ux-designing">
|
||||||
|
<a> UI / UX Designing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/search-engine-optimization-seo-content-writing">
|
||||||
|
<a>SEO & Content Writing</a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<Link legacyBehavior href="/service/digital-marketing-agency-in-canada">
|
||||||
|
<a> Digital Marketing </a>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* categoreis thumb */}
|
||||||
|
<div className="widget-categories-thumb pt-0 pt-5">
|
||||||
|
{/* widget categories content */}
|
||||||
|
<div className="widget-categories-content text-center">
|
||||||
|
<div className="logo-thumb d-flex justify-content-center ml-70 mb-4">
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a className="subscribe-icon ml-5">
|
||||||
|
<i className="bi bi-telephone-inbound" />
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="card-color">
|
||||||
|
<h4 className="card-color">Looking for Top Digital <br /> service?</h4>
|
||||||
|
<p className="pt-3 card-color">Call anytime</p>
|
||||||
|
<Link legacyBehavior href="tel:+1-647-679-7651 ">
|
||||||
|
<a>
|
||||||
|
<h5 className="card-color">+1-647-679-7651</h5>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-8 col-md-12">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-12 col-sm-12">
|
||||||
|
<div className="consen-service-details-box">
|
||||||
|
<div className="consen-service-thumb">
|
||||||
|
<img src="/assets/images/service-details/web-development.webp" alt="A web page designer consulting with a diverse team over documents on a table, indicative of a collaborative web development process." />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-content">
|
||||||
|
<div className="consen-section-title mt-3 mb-4">
|
||||||
|
<h2><span>Website Development</span> at Metatroncube: Crafting Digital Masterpieces</h2>
|
||||||
|
</div>
|
||||||
|
<div className="serivce-details-desc">
|
||||||
|
<p>
|
||||||
|
In the digital age, a website is more than just a digital footprint; it’s a powerful tool that encapsulates the essence of your brand, the voice of your business, and the gateway to connect with a global audience. At Metatroncube Software Solutions, we understand that each website is a unique blend of art and functionality, an opportunity to impress, engage, and convert your visitors into loyal customers.
|
||||||
|
</p>
|
||||||
|
<p className="targets">
|
||||||
|
A website is not just an online destination; it’s a digital journey that starts with a single click.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Our approach to website development goes beyond the technicalities of coding. We delve into the heart of your business, identifying and understanding your market, goals, and user needs. This allows us to create not just websites, but digital experiences that resonate with your audience, drive engagement, and foster growth.
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
With a team of skilled developers, creative designers, and strategic thinkers, we harness the latest in web technologies and trends to develop websites that are not only visually stunning but also functionally robust. Whether you’re a startup looking to make your mark, a growing business ready to scale, or an established brand seeking to innovate, our comprehensive website development services are tailored to meet your specific needs.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
<h3> Our Approach to Website Development:
|
||||||
|
A Blend of <span className="meta">Innovation and User-Centric Design</span>
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
At Metatroncube, our approach to website development is rooted in a deep understanding that each project is a unique endeavor with its own set of challenges and opportunities. We don’t just build websites; we craft digital experiences that resonate with your target audience and align with your business objectives.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold"> Understanding Your Vision:</span> Our process begins with a comprehensive discussion to understand your vision, business goals, and the needs of your audience. This collaborative approach ensures that we’re not just service providers, but partners in your digital journey.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p> <span className="bold">Strategic Planning:</span> Once we have a clear understanding of your objectives, our team formulates a strategic plan. This includes defining the website’s structure, functionality, and overall aesthetic, ensuring that every element is purposefully designed to meet your business goals.</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Design and Development:</span> With a plan in place, our skilled designers and developers get to work. We blend creativity with technology, creating designs that are not only visually appealing but also user-friendly and accessible. Our developers then bring these designs to life, using the latest coding practices and technologies to ensure your website is fast, secure, and scalable.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold"> Testing and Optimization:</span> Quality is our top priority. We rigorously test your website across multiple devices and browsers, ensuring a seamless user experience. We also optimize for search engines (SEO) to improve your website’s visibility and reach.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold">Launch and Beyond: </span>Launching your website is just the beginning. We offer ongoing support and maintenance, ensuring your site remains up-to-date and continues to perform at its best. We also provide analytics and insights to help you understand user behavior and make informed decisions for future enhancements.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<span className="bold"> Feedback and Iteration: </span>Your feedback is crucial throughout the development process. We believe in continuous improvement and are always ready to iterate and refine the website based on your input and user data.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
At Metatroncube, we’re committed to delivering a website that not only looks great but also delivers results. Our approach combines the best of technology, design, and strategic thinking to create websites that not only meet but exceed expectations.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-page-title">
|
||||||
|
<h3>Key Features of Our Website Development Services:
|
||||||
|
<span className="meta"> Crafting Digital Excellence</span>
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
At Metatroncube, our website development services are distinguished by a series of key features that ensure each project we undertake is not just completed but is transformed into a digital masterpiece. Here’s what sets our services a part:
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0">1. Custom Design:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Tailored Aesthetics:</span> Every website we create is tailored to reflect your brand’s unique identity. Our designers work closely with you to ensure the visual elements resonate with your brand and appeal to your target audience.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">User Experience Focus:</span> We prioritize user experience (UX) in our designs, ensuring that navigation is intuitive and that the website is accessible to all users, thereby enhancing user engagement and satisfaction.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0 mt-4">2. Responsive and Mobile-Friendly:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Cross-Device Compatibility: </span> Understanding the importance of mobile traffic, we ensure your website looks great and functions seamlessly across all devices and screen sizes.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Speed Optimization: </span> We optimize for speed, reducing load times to improve user experience and boost SEO rankings.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0 mt-4">3. Advanced Technologies:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Cutting-Edge Solutions: </span> Our team stays abreast of the latest technological trends in web development, from advanced frontend frameworks to efficient backend solutions.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Scalability and Security: </span>We build websites that are not only robust and secure but also scalable, ensuring they can grow and evolve with your business.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0 mt-4">4. SEO-Optimized:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Visibility and Ranking: </span> Our development process includes SEO optimization to ensure your site ranks well on search engines, driving organic traffic and increasing visibility.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Content Strategy: </span>We assist in developing a content strategy that aligns with SEO best practices, ensuring your website’s content is relevant, engaging, and optimized for search engines.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0 mt-4">5. Comprehensive CMS Integration:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Easy Management: </span> We integrate powerful content management systems (CMS) to give you control over your content, allowing for easy updates and management.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Custom Features: </span>Depending on your needs, we can include custom features in the CMS, like e-commerce capabilities, blogs, or event calendars.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<p className="bold mb-0 mt-4">6. Ongoing Support and Analytics:</p>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Post-Launch Support: </span> Our relationship doesn’t end at launch. We provide ongoing support and maintenance to ensure your website remains up-to-date and performs optimally.
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<div>
|
||||||
|
<span className="bold1">Data-Driven Insights: </span>We equip your site with analytics tools so you can monitor performance and user engagement, helping you make informed decisions for future growth.
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p className="mt-4">
|
||||||
|
In summary, our website development services at Metatroncube are a blend of aesthetics, functionality, technology, and strategy. We commit to delivering a product that not only meets but exceeds your expectations, driving your business forward in the digital realm.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="service-page-title2 portfolio"><h1 className="pb-0"><span className="meta"> Our</span> Portfolio:</h1></div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/1.webp" aly="Innovative web solutions"></img>
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title">
|
||||||
|
<h4>Innovative Web Solutions</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Customized digital experiences to elevate your brand.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-box overlap-card change-bg">
|
||||||
|
<div className="service-details-icon overlap-icon">
|
||||||
|
<img src="/assets/images/service-details/icon-6S/2.webp" alt="Cutting-edge technology" />
|
||||||
|
</div>
|
||||||
|
<div className="service-details-title ">
|
||||||
|
<h4>Cutting-Edge Technology</h4>
|
||||||
|
</div>
|
||||||
|
<div className="services-detials-desc">
|
||||||
|
<p>Leveraging the latest tech to create responsive, fast, and secure websites.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="row">
|
||||||
|
<div className="col-lg-6 col-sm-6 ">
|
||||||
|
<div className="service-details-thumb mt-0">
|
||||||
|
<img className="i-width" src="/assets/images/service-details/card-image/web-devo.webp" alt="A group of web developers, including a skilled web page designer, intensely reviewing code on a computer screen in a modern office environment." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="col-lg-6 col-sm-6">
|
||||||
|
<div className="service-details-icon-box">
|
||||||
|
<div className="service-page-title2">
|
||||||
|
<h4>Seamless Integration</h4>
|
||||||
|
|
||||||
|
<h6 className="changeColor">Streamline your online presence with effortlessly integrated web services.</h6>
|
||||||
|
</div>
|
||||||
|
<div className="widget-service-details-icon">
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Customized Design</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span>
|
||||||
|
{" "}
|
||||||
|
Responsive Layouts{" "}
|
||||||
|
</span>
|
||||||
|
</p >
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> SEO-Optimized</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<i className="bi bi-check-lg mr-2" />{" "}
|
||||||
|
<span> Robust Security </span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="faq-section">
|
||||||
|
<div className="container">
|
||||||
|
<div className="row align-items-center">
|
||||||
|
|
||||||
|
<div className="col-lg-8 order-2 order-lg-1 pl-5">
|
||||||
|
<div id="tab1" className="tab_content">
|
||||||
|
<Accordion
|
||||||
|
defaultActiveKey={faqsData[0].id.toString()}
|
||||||
|
as="ul"
|
||||||
|
className="accordion"
|
||||||
|
>
|
||||||
|
{faqsData.map((faq) => (
|
||||||
|
<li
|
||||||
|
key={faq.id}
|
||||||
|
className="wow fadeInUp"
|
||||||
|
data-wow-delay={faq.animationDelay}
|
||||||
|
>
|
||||||
|
<Accordion.Toggle
|
||||||
|
as="a"
|
||||||
|
eventKey={faq.id.toString()}
|
||||||
|
onClick={() => setActive(faq.id === active ? null : faq.id)}
|
||||||
|
className={faq.id === active ? "active" : ""}
|
||||||
|
>
|
||||||
|
<span>{faq.title}</span>
|
||||||
|
</Accordion.Toggle>
|
||||||
|
|
||||||
|
<Accordion.Collapse eventKey={faq.id.toString()}>
|
||||||
|
<p>{faq.content}</p>
|
||||||
|
</Accordion.Collapse>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</Accordion>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-lg-4 mb-4 mb-lg-0 order-1 order-lg-2">
|
||||||
|
<div className="testimonial-thumb text-center mt-3">
|
||||||
|
<img
|
||||||
|
src="/assets/images/service-details/faq/1.webp"
|
||||||
|
alt="FAQ"
|
||||||
|
className="img-fluid"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* Start consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
<div className="sub">
|
||||||
|
<div className="container">
|
||||||
|
<SubCard />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*==================================================*/}
|
||||||
|
{/* End consen Subscribe Area */}
|
||||||
|
{/*==================================================*/}
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default WebDevelopment;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
1154
pages/services-digital-solutions.js
Normal file
5
public/assets/css/all.min.css
vendored
Normal file
13
public/assets/css/animate.css
vendored
Normal file
1
public/assets/css/animated-text.css
Normal file
1876
public/assets/css/bootstrap-icons.css
vendored
Normal file
11546
public/assets/css/bootstrap.min.css
vendored
Normal file
165
public/assets/css/flaticon.css
Normal file
@ -0,0 +1,165 @@
|
|||||||
|
/*
|
||||||
|
Flaticon icon font: Flaticon
|
||||||
|
Creation date: 01/08/2019 09:08
|
||||||
|
*/
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Flaticon";
|
||||||
|
src: url("../fonts/Flaticon.eot");
|
||||||
|
src: url("../fonts/Flaticond41d.eot?#iefix") format("embedded-opentype"),
|
||||||
|
url("../fonts/Flaticon.woff2") format("woff2"),
|
||||||
|
url("../fonts/Flaticon.woff") format("woff"),
|
||||||
|
url("../fonts/Flaticon.ttf") format("truetype"),
|
||||||
|
url("../fonts/Flaticon.svg#Flaticon") format("svg");
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
||||||
|
@font-face {
|
||||||
|
font-family: "Flaticon";
|
||||||
|
src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
|
||||||
|
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
|
||||||
|
font-family: Flaticon;
|
||||||
|
font-size: inherit;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flaticon-report:before { content: "\f100"; }
|
||||||
|
.flaticon-clock:before { content: "\f101"; }
|
||||||
|
.flaticon-call:before { content: "\f102"; }
|
||||||
|
.flaticon-tourism:before { content: "\f103"; }
|
||||||
|
.flaticon-process:before { content: "\f104"; }
|
||||||
|
.flaticon-data:before { content: "\f105"; }
|
||||||
|
.flaticon-global:before { content: "\f106"; }
|
||||||
|
.flaticon-system:before { content: "\f107"; }
|
||||||
|
.flaticon-padlock:before { content: "\f108"; }
|
||||||
|
.flaticon-process-1:before { content: "\f109"; }
|
||||||
|
.flaticon-data-1:before { content: "\f10a"; }
|
||||||
|
.flaticon-work:before { content: "\f10b"; }
|
||||||
|
.flaticon-data-analytics:before { content: "\f10c"; }
|
||||||
|
.flaticon-chart:before { content: "\f10d"; }
|
||||||
|
.flaticon-algorithm:before { content: "\f10e"; }
|
||||||
|
.flaticon-data-2:before { content: "\f10f"; }
|
||||||
|
.flaticon-clock-1:before { content: "\f110"; }
|
||||||
|
.flaticon-microchip:before { content: "\f111"; }
|
||||||
|
.flaticon-server:before { content: "\f112"; }
|
||||||
|
.flaticon-24h:before { content: "\f113"; }
|
||||||
|
.flaticon-global-1:before { content: "\f114"; }
|
||||||
|
.flaticon-business-and-finance:before { content: "\f115"; }
|
||||||
|
.flaticon-space:before { content: "\f116"; }
|
||||||
|
.flaticon-information:before { content: "\f117"; }
|
||||||
|
.flaticon-privacy:before { content: "\f118"; }
|
||||||
|
.flaticon-alert:before { content: "\f119"; }
|
||||||
|
.flaticon-online-library:before { content: "\f11a"; }
|
||||||
|
.flaticon-info:before { content: "\f11b"; }
|
||||||
|
.flaticon-interaction:before { content: "\f11c"; }
|
||||||
|
.flaticon-mobile-app:before { content: "\f11d"; }
|
||||||
|
.flaticon-code:before { content: "\f11e"; }
|
||||||
|
.flaticon-developer:before { content: "\f11f"; }
|
||||||
|
.flaticon-intelligent:before { content: "\f120"; }
|
||||||
|
.flaticon-content:before { content: "\f121"; }
|
||||||
|
.flaticon-laptop:before { content: "\f122"; }
|
||||||
|
.flaticon-web:before { content: "\f123"; }
|
||||||
|
.flaticon-content-writing:before { content: "\f124"; }
|
||||||
|
.flaticon-computer:before { content: "\f125"; }
|
||||||
|
.flaticon-computer-1:before { content: "\f126"; }
|
||||||
|
.flaticon-graphic-design:before { content: "\f127"; }
|
||||||
|
.flaticon-analysis:before { content: "\f128"; }
|
||||||
|
.flaticon-bar-chart:before { content: "\f129"; }
|
||||||
|
.flaticon-analytics:before { content: "\f12a"; }
|
||||||
|
.flaticon-ui:before { content: "\f12b"; }
|
||||||
|
.flaticon-resume:before { content: "\f12c"; }
|
||||||
|
.flaticon-taxi:before { content: "\f12d"; }
|
||||||
|
.flaticon-online-shop:before { content: "\f12e"; }
|
||||||
|
.flaticon-smartphone:before { content: "\f12f"; }
|
||||||
|
|
||||||
|
.flaticon-next-1:before { content: "\f100"; }
|
||||||
|
.flaticon-back:before { content: "\f101"; }
|
||||||
|
.flaticon-next:before { content: "\f102"; }
|
||||||
|
.flaticon-back-1:before { content: "\f103"; }
|
||||||
|
.flaticon-respect:before { content: "\f104"; }
|
||||||
|
.flaticon-briefcase:before { content: "\f105"; }
|
||||||
|
.flaticon-graduation-hat:before { content: "\f106"; }
|
||||||
|
.flaticon-left-quote:before { content: "\f107"; }
|
||||||
|
.flaticon-aeroplane:before { content: "\f108"; }
|
||||||
|
.flaticon-jet:before { content: "\f109"; }
|
||||||
|
.flaticon-phone-call-1:before { content: "\f10a"; }
|
||||||
|
.flaticon-phone-call:before { content: "\f10b"; }
|
||||||
|
.flaticon-customer-service:before { content: "\f10c"; }
|
||||||
|
.flaticon-speech-bubble:before { content: "\f10d"; }
|
||||||
|
.flaticon-shopping-basket:before { content: "\f10e"; }
|
||||||
|
.flaticon-mail:before { content: "\f10f"; }
|
||||||
|
.flaticon-graph:before { content: "\f110"; }
|
||||||
|
.flaticon-compass:before { content: "\f111"; }
|
||||||
|
.flaticon-home:before { content: "\f112"; }
|
||||||
|
.flaticon-lifebuoy:before { content: "\f113"; }
|
||||||
|
.flaticon-time:before { content: "\f114"; }
|
||||||
|
|
||||||
|
|
||||||
|
.flaticon-artificial-intelligence:before { content: "\f100"; }
|
||||||
|
.flaticon-robotic-arm:before { content: "\f101"; }
|
||||||
|
.flaticon-ai:before { content: "\f102"; }
|
||||||
|
.flaticon-play-button:before { content: "\f103"; }
|
||||||
|
.flaticon-artificial-intelligence-1:before { content: "\f104"; }
|
||||||
|
.flaticon-automaton:before { content: "\f105"; }
|
||||||
|
.flaticon-brain:before { content: "\f106"; }
|
||||||
|
.flaticon-ai-1:before { content: "\f107"; }
|
||||||
|
.flaticon-artificial-intelligence-2:before { content: "\f108"; }
|
||||||
|
.flaticon-artificial-intelligence-3:before { content: "\f109"; }
|
||||||
|
.flaticon-mail:before { content: "\f10a"; }
|
||||||
|
.flaticon-machine-learning:before { content: "\f10b"; }
|
||||||
|
.flaticon-machine-learning-1:before { content: "\f10c"; }
|
||||||
|
.flaticon-code:before { content: "\f10d"; }
|
||||||
|
.flaticon-gps:before { content: "\f10e"; }
|
||||||
|
.flaticon-place:before { content: "\f10f"; }
|
||||||
|
.flaticon-phone:before { content: "\f110"; }
|
||||||
|
.flaticon-mail-1:before { content: "\f111"; }
|
||||||
|
.flaticon-artificial-intelligence-4:before { content: "\f112"; }
|
||||||
|
.flaticon-abc:before { content: "\f113"; }
|
||||||
|
.flaticon-contract:before { content: "\f114"; }
|
||||||
|
.flaticon-quote:before { content: "\f115"; }
|
||||||
|
.flaticon-business-and-finance:before { content: "\f116"; }
|
||||||
|
.flaticon-binary-code:before { content: "\f117"; }
|
||||||
|
.flaticon-database:before { content: "\f118"; }
|
||||||
|
.flaticon-font:before { content: "\f119"; }
|
||||||
|
.flaticon-speech-bubble:before { content: "\f11a"; }
|
||||||
|
.flaticon-face:before { content: "\f11b"; }
|
||||||
|
.flaticon-facial:before { content: "\f11c"; }
|
||||||
|
.flaticon-data:before { content: "\f11d"; }
|
||||||
|
.flaticon-facial-recognition:before { content: "\f11e"; }
|
||||||
|
.flaticon-right-arrow:before { content: "\f11f"; }
|
||||||
|
.flaticon-seo-and-web:before { content: "\f120"; }
|
||||||
|
.flaticon-encrypt:before { content: "\f121"; }
|
||||||
|
.flaticon-encrypt-1:before { content: "\f122"; }
|
||||||
|
.flaticon-data-encryption:before { content: "\f123"; }
|
||||||
|
.flaticon-tick:before { content: "\f124"; }
|
||||||
|
.flaticon-success:before { content: "\f125"; }
|
||||||
|
.flaticon-send:before { content: "\f126"; }
|
||||||
|
.flaticon-left-arrow:before { content: "\f127"; }
|
||||||
|
.flaticon-up-arrow:before { content: "\f128"; }
|
||||||
|
.flaticon-download-arrow:before { content: "\f129"; }
|
||||||
|
.flaticon-basket:before { content: "\f12a"; }
|
||||||
|
.flaticon-stylish-bag:before { content: "\f12b"; }
|
||||||
|
.flaticon-shopping-bag:before { content: "\f12c"; }
|
||||||
|
.flaticon-bag:before { content: "\f12d"; }
|
||||||
|
.flaticon-chat:before { content: "\f12e"; }
|
||||||
|
.flaticon-robotics:before { content: "\f12f"; }
|
||||||
|
.flaticon-qr:before { content: "\f130"; }
|
||||||
|
.flaticon-production:before { content: "\f131"; }
|
||||||
|
.flaticon-inclusion:before { content: "\f132"; }
|
||||||
|
.flaticon-feature:before { content: "\f133"; }
|
||||||
|
.flaticon-art-and-design:before { content: "\f134"; }
|
||||||
|
.flaticon-search:before { content: "\f135"; }
|
||||||
|
.flaticon-seo-and-web-1:before { content: "\f136"; }
|
||||||
|
.flaticon-phone-1:before { content: "\f137"; }
|
||||||
|
.flaticon-email:before { content: "\f138"; }
|
||||||
|
.flaticon-error:before { content: "\f139"; }
|
||||||
|
.flaticon-close:before { content: "\f13a"; }
|
||||||
|
.flaticon-gps-1:before { content: "\f13b"; }
|
||||||
|
.flaticon-cross-out:before { content: "\f13c"; }
|
||||||
|
.flaticon-woman-bag:before { content: "\f13d"; }
|
||||||
BIN
public/assets/css/fonts/bootstrap-icons.woff
Normal file
BIN
public/assets/css/fonts/bootstrap-icons.woff2
Normal file
421
public/assets/css/magnific-popup.css
Normal file
@ -0,0 +1,421 @@
|
|||||||
|
/* Magnific Popup CSS */
|
||||||
|
.mfp-bg {
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: 1042;
|
||||||
|
overflow: hidden;
|
||||||
|
position: fixed;
|
||||||
|
background: #0b0b0b;
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-wrap {
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: 1043;
|
||||||
|
position: fixed;
|
||||||
|
outline: none !important;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-container {
|
||||||
|
text-align: center;
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
padding: 0 8px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-container:before {
|
||||||
|
content: "";
|
||||||
|
display: inline-block;
|
||||||
|
height: 100%;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-align-top .mfp-container:before {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-content {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin: 0 auto;
|
||||||
|
text-align: left;
|
||||||
|
z-index: 1045;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-inline-holder .mfp-content,
|
||||||
|
.mfp-ajax-holder .mfp-content {
|
||||||
|
width: 100%;
|
||||||
|
cursor: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-ajax-cur {
|
||||||
|
cursor: progress;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-zoom-out-cur,
|
||||||
|
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
|
||||||
|
cursor: -moz-zoom-out;
|
||||||
|
cursor: -webkit-zoom-out;
|
||||||
|
cursor: zoom-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-zoom {
|
||||||
|
cursor: pointer;
|
||||||
|
cursor: -webkit-zoom-in;
|
||||||
|
cursor: -moz-zoom-in;
|
||||||
|
cursor: zoom-in;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-auto-cursor .mfp-content {
|
||||||
|
cursor: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-close,
|
||||||
|
.mfp-arrow,
|
||||||
|
.mfp-preloader,
|
||||||
|
.mfp-counter {
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-loading.mfp-figure {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-hide {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-preloader {
|
||||||
|
color: #ccc;
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
width: auto;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: -0.8em;
|
||||||
|
left: 8px;
|
||||||
|
right: 8px;
|
||||||
|
z-index: 1044;
|
||||||
|
}
|
||||||
|
.mfp-preloader a {
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
.mfp-preloader a:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-s-ready .mfp-preloader {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-s-error .mfp-content {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.mfp-close,
|
||||||
|
button.mfp-arrow {
|
||||||
|
overflow: visible;
|
||||||
|
cursor: pointer;
|
||||||
|
background: transparent;
|
||||||
|
border: 0;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
display: block;
|
||||||
|
outline: none;
|
||||||
|
padding: 0;
|
||||||
|
z-index: 1046;
|
||||||
|
box-shadow: none;
|
||||||
|
touch-action: manipulation;
|
||||||
|
}
|
||||||
|
|
||||||
|
button::-moz-focus-inner {
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-close {
|
||||||
|
width: 44px;
|
||||||
|
height: 44px;
|
||||||
|
line-height: 44px;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
text-decoration: none;
|
||||||
|
text-align: center;
|
||||||
|
opacity: 0.65;
|
||||||
|
padding: 0 0 18px 10px;
|
||||||
|
color: #fff;
|
||||||
|
font-style: normal;
|
||||||
|
font-size: 28px;
|
||||||
|
font-family: Arial, Baskerville, monospace;
|
||||||
|
}
|
||||||
|
.mfp-close:hover,
|
||||||
|
.mfp-close:focus {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
.mfp-close:active {
|
||||||
|
top: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-close-btn-in .mfp-close {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-image-holder .mfp-close,
|
||||||
|
.mfp-iframe-holder .mfp-close {
|
||||||
|
color: #fff;
|
||||||
|
right: -6px;
|
||||||
|
text-align: right;
|
||||||
|
padding-right: 6px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-counter {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
color: #ccc;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 18px;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-arrow {
|
||||||
|
position: absolute;
|
||||||
|
opacity: 0.65;
|
||||||
|
margin: 0;
|
||||||
|
top: 50%;
|
||||||
|
margin-top: -55px;
|
||||||
|
padding: 0;
|
||||||
|
width: 90px;
|
||||||
|
height: 110px;
|
||||||
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
}
|
||||||
|
.mfp-arrow:active {
|
||||||
|
margin-top: -54px;
|
||||||
|
}
|
||||||
|
.mfp-arrow:hover,
|
||||||
|
.mfp-arrow:focus {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
.mfp-arrow:before,
|
||||||
|
.mfp-arrow:after {
|
||||||
|
content: "";
|
||||||
|
display: block;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
margin-top: 35px;
|
||||||
|
margin-left: 35px;
|
||||||
|
border: medium inset transparent;
|
||||||
|
}
|
||||||
|
.mfp-arrow:after {
|
||||||
|
border-top-width: 13px;
|
||||||
|
border-bottom-width: 13px;
|
||||||
|
top: 8px;
|
||||||
|
}
|
||||||
|
.mfp-arrow:before {
|
||||||
|
border-top-width: 21px;
|
||||||
|
border-bottom-width: 21px;
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-arrow-left {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
.mfp-arrow-left:after {
|
||||||
|
border-right: 17px solid #fff;
|
||||||
|
margin-left: 31px;
|
||||||
|
}
|
||||||
|
.mfp-arrow-left:before {
|
||||||
|
margin-left: 25px;
|
||||||
|
border-right: 27px solid #3f3f3f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-arrow-right {
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
.mfp-arrow-right:after {
|
||||||
|
border-left: 17px solid #fff;
|
||||||
|
margin-left: 39px;
|
||||||
|
}
|
||||||
|
.mfp-arrow-right:before {
|
||||||
|
border-left: 27px solid #3f3f3f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-iframe-holder {
|
||||||
|
padding-top: 40px;
|
||||||
|
padding-bottom: 40px;
|
||||||
|
}
|
||||||
|
.mfp-iframe-holder .mfp-content {
|
||||||
|
line-height: 0;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 900px;
|
||||||
|
}
|
||||||
|
.mfp-iframe-holder .mfp-close {
|
||||||
|
top: -40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-iframe-scaler {
|
||||||
|
width: 100%;
|
||||||
|
height: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
padding-top: 56.25%;
|
||||||
|
}
|
||||||
|
.mfp-iframe-scaler iframe {
|
||||||
|
position: absolute;
|
||||||
|
display: block;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
||||||
|
background: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Main image in popup */
|
||||||
|
img.mfp-img {
|
||||||
|
width: auto;
|
||||||
|
max-width: 90vw;
|
||||||
|
height: auto;
|
||||||
|
max-height: 90vh;
|
||||||
|
display: block;
|
||||||
|
line-height: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 40px 0 40px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* The shadow behind the image */
|
||||||
|
.mfp-figure {
|
||||||
|
line-height: 0;
|
||||||
|
}
|
||||||
|
.mfp-figure:after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 40px;
|
||||||
|
bottom: 40px;
|
||||||
|
display: block;
|
||||||
|
right: 0;
|
||||||
|
width: auto;
|
||||||
|
height: auto;
|
||||||
|
z-index: -1;
|
||||||
|
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
||||||
|
background: #444;
|
||||||
|
}
|
||||||
|
.mfp-figure small {
|
||||||
|
color: #bdbdbd;
|
||||||
|
display: block;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 14px;
|
||||||
|
}
|
||||||
|
.mfp-figure figure {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-bottom-bar {
|
||||||
|
margin-top: -36px;
|
||||||
|
position: absolute;
|
||||||
|
top: 100%;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
cursor: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-title {
|
||||||
|
text-align: left;
|
||||||
|
line-height: 18px;
|
||||||
|
color: #f3f3f3;
|
||||||
|
word-wrap: break-word;
|
||||||
|
padding-right: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-image-holder .mfp-content {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfp-gallery .mfp-image-holder .mfp-figure {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 800px) and (orientation: landscape),
|
||||||
|
screen and (max-height: 300px) {
|
||||||
|
/**
|
||||||
|
* Remove all paddings around the image on small screen
|
||||||
|
*/
|
||||||
|
.mfp-img-mobile .mfp-image-holder {
|
||||||
|
padding-left: 0;
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
.mfp-img-mobile img.mfp-img {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.mfp-img-mobile .mfp-figure:after {
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
.mfp-img-mobile .mfp-figure small {
|
||||||
|
display: inline;
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
.mfp-img-mobile .mfp-bottom-bar {
|
||||||
|
background: rgba(0, 0, 0, 0.6);
|
||||||
|
bottom: 0;
|
||||||
|
margin: 0;
|
||||||
|
top: auto;
|
||||||
|
padding: 3px 5px;
|
||||||
|
position: fixed;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.mfp-img-mobile .mfp-bottom-bar:empty {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.mfp-img-mobile .mfp-counter {
|
||||||
|
right: 5px;
|
||||||
|
top: 3px;
|
||||||
|
}
|
||||||
|
.mfp-img-mobile .mfp-close {
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
width: 35px;
|
||||||
|
height: 35px;
|
||||||
|
line-height: 35px;
|
||||||
|
background: rgba(0, 0, 0, 0.6);
|
||||||
|
position: fixed;
|
||||||
|
text-align: center;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media all and (max-width: 900px) {
|
||||||
|
.mfp-arrow {
|
||||||
|
-webkit-transform: scale(0.75);
|
||||||
|
transform: scale(0.75);
|
||||||
|
}
|
||||||
|
.mfp-arrow-left {
|
||||||
|
-webkit-transform-origin: 0;
|
||||||
|
transform-origin: 0;
|
||||||
|
}
|
||||||
|
.mfp-arrow-right {
|
||||||
|
-webkit-transform-origin: 100%;
|
||||||
|
transform-origin: 100%;
|
||||||
|
}
|
||||||
|
.mfp-container {
|
||||||
|
padding-left: 6px;
|
||||||
|
padding-right: 6px;
|
||||||
|
}
|
||||||
|
}
|
||||||
131
public/assets/css/meanmenu.min.css
vendored
Normal file
@ -0,0 +1,131 @@
|
|||||||
|
a.meanmenu-reveal{display:none}
|
||||||
|
.mean-container .mean-bar {
|
||||||
|
background: #000000;
|
||||||
|
float: left;
|
||||||
|
min-height: 60px;
|
||||||
|
padding: 4px 0 0;
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 999;
|
||||||
|
}
|
||||||
|
.mean-container a.meanmenu-reveal{width:22px;height:22px;padding:18px;top:0;right:0;cursor:pointer;color:#fff;text-decoration:none;font-size:16px;text-indent:-9999em;line-height:22px;font-size:1px;display:block;font-family:Arial,Helvetica,sans-serif;font-weight:700;float: right;}
|
||||||
|
.mean-container a.meanmenu-reveal span{display:block;background:#fff;height:3px;margin-top:3px}
|
||||||
|
.mean-container .mean-nav{float:left;width:100%;background:#0c1923}
|
||||||
|
.mean-container .mean-nav ul{padding:0;margin:0;width:100%;list-style-type:none}
|
||||||
|
.mean-container .mean-nav ul li {
|
||||||
|
background: #f8f8f8;
|
||||||
|
float: left;
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
}
|
||||||
|
.mean-container .mean-nav ul li a {
|
||||||
|
background: #f8f8f8;
|
||||||
|
color: #232323;
|
||||||
|
display: block;
|
||||||
|
float: left;
|
||||||
|
font-size: 14px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 1em 5%;
|
||||||
|
text-align: left;
|
||||||
|
text-decoration: none;
|
||||||
|
text-transform: capitalize;
|
||||||
|
width: 90%;
|
||||||
|
}
|
||||||
|
.mobile-menu-area {
|
||||||
|
background: #262626;
|
||||||
|
}
|
||||||
|
.mean-container .mean-nav ul li li a {
|
||||||
|
border-top: 1px solid rgba(255, 255, 255, 0.25);
|
||||||
|
color: #232323;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 500;
|
||||||
|
opacity: 0.75;
|
||||||
|
padding: 1em 10%;
|
||||||
|
text-shadow: none !important;
|
||||||
|
text-transform: capitalize;
|
||||||
|
visibility: visible;
|
||||||
|
width: 80%;
|
||||||
|
}
|
||||||
|
.mean-container .mean-nav ul li.mean-last a{border-bottom:0;margin-bottom:0}
|
||||||
|
.mean-container .mean-nav ul li li li a{width:70%;padding:1em 15%}
|
||||||
|
.mean-container .mean-nav ul li li li li a{width:60%;padding:1em 20%}
|
||||||
|
.mean-container .mean-nav ul li li li li li a{width:50%;padding:1em 25%}
|
||||||
|
.mean-container .mean-nav ul li a:hover {
|
||||||
|
background: #f8f8f8 none repeat scroll 0 0;
|
||||||
|
}
|
||||||
|
.mean-container .mean-nav ul li a.mean-expand {
|
||||||
|
|
||||||
|
height: 15px;
|
||||||
|
margin-top: 1px;
|
||||||
|
padding: 12px !important;
|
||||||
|
text-align: right;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
z-index: 2;
|
||||||
|
font-weight: 700;
|
||||||
|
border: 0 !important;
|
||||||
|
background: #F8F8F8;
|
||||||
|
}
|
||||||
|
.mean-container .mean-nav ul li a.mean-expand:hover {
|
||||||
|
background: #f8f8f8;
|
||||||
|
}
|
||||||
|
.mean-container .mean-push{float:left;width:100%;padding:0;margin:0;clear:both}
|
||||||
|
.mean-nav .wrapper{width:100%;padding:0;margin:0}
|
||||||
|
.mean-container .mean-bar,.mean-container .mean-bar *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}
|
||||||
|
.mean-remove{display:none!important}
|
||||||
|
.mean-container .mean-bar::after {
|
||||||
|
color: #ffffff;
|
||||||
|
content: "MENU";
|
||||||
|
font-size: 21px;
|
||||||
|
left: 5%;
|
||||||
|
position: absolute;
|
||||||
|
top: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* -------------------------------
|
||||||
|
39. Mobile menu
|
||||||
|
----------------------------------*/
|
||||||
|
.mean-container .mean-bar::after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.mean-container .mean-nav ul li a:hover {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
.mean-container a.meanmenu-reveal span {
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
.mobile-menu-area {
|
||||||
|
background: #fff none repeat scroll 0 0;
|
||||||
|
}
|
||||||
|
.mean-container .mean-nav ul li a.mean-expand {
|
||||||
|
background: none;
|
||||||
|
top: -4px;
|
||||||
|
}
|
||||||
|
.mean-container .mean-nav ul li a.mean-expand:hover {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
.mean-container .mean-nav ul li {
|
||||||
|
background: #444;
|
||||||
|
}
|
||||||
|
.mean-container a.meanmenu-reveal {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.meanmenu-reveal.meanclose:hover {
|
||||||
|
color: #fff !important;
|
||||||
|
}
|
||||||
|
.mean-container a.meanmenu-reveal:hover span {
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
.mean-container .mean-bar::before {
|
||||||
|
color: #fff;
|
||||||
|
content: "MetatronCube";
|
||||||
|
font-size: 28px;
|
||||||
|
font-weight: 600;
|
||||||
|
left: 10px;
|
||||||
|
position: absolute;
|
||||||
|
top: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
6
public/assets/css/owl.carousel.min.css
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/**
|
||||||
|
* Owl Carousel v2.2.1
|
||||||
|
* Copyright 2013-2021 David Deutsch
|
||||||
|
* Licensed under ()
|
||||||
|
*/
|
||||||
|
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
|
||||||
163
public/assets/css/owl.transitions.css
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
/*
|
||||||
|
* Owl Carousel CSS3 Transitions
|
||||||
|
* v1.3.2
|
||||||
|
*/
|
||||||
|
|
||||||
|
.owl-origin {
|
||||||
|
-webkit-perspective: 1200px;
|
||||||
|
-webkit-perspective-origin-x : 50%;
|
||||||
|
-webkit-perspective-origin-y : 50%;
|
||||||
|
-moz-perspective : 1200px;
|
||||||
|
-moz-perspective-origin-x : 50%;
|
||||||
|
-moz-perspective-origin-y : 50%;
|
||||||
|
perspective : 1200px;
|
||||||
|
}
|
||||||
|
/* fade */
|
||||||
|
.owl-fade-out {
|
||||||
|
z-index: 10;
|
||||||
|
-webkit-animation: fadeOut .7s both ease;
|
||||||
|
-moz-animation: fadeOut .7s both ease;
|
||||||
|
animation: fadeOut .7s both ease;
|
||||||
|
}
|
||||||
|
.owl-fade-in {
|
||||||
|
-webkit-animation: fadeIn .7s both ease;
|
||||||
|
-moz-animation: fadeIn .7s both ease;
|
||||||
|
animation: fadeIn .7s both ease;
|
||||||
|
}
|
||||||
|
/* backSlide */
|
||||||
|
.owl-backSlide-out {
|
||||||
|
-webkit-animation: backSlideOut 1s both ease;
|
||||||
|
-moz-animation: backSlideOut 1s both ease;
|
||||||
|
animation: backSlideOut 1s both ease;
|
||||||
|
}
|
||||||
|
.owl-backSlide-in {
|
||||||
|
-webkit-animation: backSlideIn 1s both ease;
|
||||||
|
-moz-animation: backSlideIn 1s both ease;
|
||||||
|
animation: backSlideIn 1s both ease;
|
||||||
|
}
|
||||||
|
/* goDown */
|
||||||
|
.owl-goDown-out {
|
||||||
|
-webkit-animation: scaleToFade .7s ease both;
|
||||||
|
-moz-animation: scaleToFade .7s ease both;
|
||||||
|
animation: scaleToFade .7s ease both;
|
||||||
|
}
|
||||||
|
.owl-goDown-in {
|
||||||
|
-webkit-animation: goDown .6s ease both;
|
||||||
|
-moz-animation: goDown .6s ease both;
|
||||||
|
animation: goDown .6s ease both;
|
||||||
|
}
|
||||||
|
/* scaleUp */
|
||||||
|
.owl-fadeUp-in {
|
||||||
|
-webkit-animation: scaleUpFrom .5s ease both;
|
||||||
|
-moz-animation: scaleUpFrom .5s ease both;
|
||||||
|
animation: scaleUpFrom .5s ease both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.owl-fadeUp-out {
|
||||||
|
-webkit-animation: scaleUpTo .5s ease both;
|
||||||
|
-moz-animation: scaleUpTo .5s ease both;
|
||||||
|
animation: scaleUpTo .5s ease both;
|
||||||
|
}
|
||||||
|
/* Keyframes */
|
||||||
|
/*empty*/
|
||||||
|
@-webkit-keyframes empty {
|
||||||
|
0% {opacity: 1}
|
||||||
|
}
|
||||||
|
@-moz-keyframes empty {
|
||||||
|
0% {opacity: 1}
|
||||||
|
}
|
||||||
|
@keyframes empty {
|
||||||
|
0% {opacity: 1}
|
||||||
|
}
|
||||||
|
@-webkit-keyframes fadeIn {
|
||||||
|
0% { opacity:0; }
|
||||||
|
100% { opacity:1; }
|
||||||
|
}
|
||||||
|
@-moz-keyframes fadeIn {
|
||||||
|
0% { opacity:0; }
|
||||||
|
100% { opacity:1; }
|
||||||
|
}
|
||||||
|
@keyframes fadeIn {
|
||||||
|
0% { opacity:0; }
|
||||||
|
100% { opacity:1; }
|
||||||
|
}
|
||||||
|
@-webkit-keyframes fadeOut {
|
||||||
|
0% { opacity:1; }
|
||||||
|
100% { opacity:0; }
|
||||||
|
}
|
||||||
|
@-moz-keyframes fadeOut {
|
||||||
|
0% { opacity:1; }
|
||||||
|
100% { opacity:0; }
|
||||||
|
}
|
||||||
|
@keyframes fadeOut {
|
||||||
|
0% { opacity:1; }
|
||||||
|
100% { opacity:0; }
|
||||||
|
}
|
||||||
|
@-webkit-keyframes backSlideOut {
|
||||||
|
25% { opacity: .5; -webkit-transform: translateZ(-500px); }
|
||||||
|
75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
|
||||||
|
100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
|
||||||
|
}
|
||||||
|
@-moz-keyframes backSlideOut {
|
||||||
|
25% { opacity: .5; -moz-transform: translateZ(-500px); }
|
||||||
|
75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
|
||||||
|
100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
|
||||||
|
}
|
||||||
|
@keyframes backSlideOut {
|
||||||
|
25% { opacity: .5; transform: translateZ(-500px); }
|
||||||
|
75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
|
||||||
|
100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
|
||||||
|
}
|
||||||
|
@-webkit-keyframes backSlideIn {
|
||||||
|
0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
|
||||||
|
75% { opacity: .5; -webkit-transform: translateZ(-500px); }
|
||||||
|
100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
|
||||||
|
}
|
||||||
|
@-moz-keyframes backSlideIn {
|
||||||
|
0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
|
||||||
|
75% { opacity: .5; -moz-transform: translateZ(-500px); }
|
||||||
|
100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
|
||||||
|
}
|
||||||
|
@keyframes backSlideIn {
|
||||||
|
0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
|
||||||
|
75% { opacity: .5; transform: translateZ(-500px); }
|
||||||
|
100% { opacity: 1; transform: translateZ(0) translateX(0); }
|
||||||
|
}
|
||||||
|
@-webkit-keyframes scaleToFade {
|
||||||
|
to { opacity: 0; -webkit-transform: scale(.8); }
|
||||||
|
}
|
||||||
|
@-moz-keyframes scaleToFade {
|
||||||
|
to { opacity: 0; -moz-transform: scale(.8); }
|
||||||
|
}
|
||||||
|
@keyframes scaleToFade {
|
||||||
|
to { opacity: 0; transform: scale(.8); }
|
||||||
|
}
|
||||||
|
@-webkit-keyframes goDown {
|
||||||
|
from { -webkit-transform: translateY(-100%); }
|
||||||
|
}
|
||||||
|
@-moz-keyframes goDown {
|
||||||
|
from { -moz-transform: translateY(-100%); }
|
||||||
|
}
|
||||||
|
@keyframes goDown {
|
||||||
|
from { transform: translateY(-100%); }
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes scaleUpFrom {
|
||||||
|
from { opacity: 0; -webkit-transform: scale(1.5); }
|
||||||
|
}
|
||||||
|
@-moz-keyframes scaleUpFrom {
|
||||||
|
from { opacity: 0; -moz-transform: scale(1.5); }
|
||||||
|
}
|
||||||
|
@keyframes scaleUpFrom {
|
||||||
|
from { opacity: 0; transform: scale(1.5); }
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes scaleUpTo {
|
||||||
|
to { opacity: 0; -webkit-transform: scale(1.5); }
|
||||||
|
}
|
||||||
|
@-moz-keyframes scaleUpTo {
|
||||||
|
to { opacity: 0; -moz-transform: scale(1.5); }
|
||||||
|
}
|
||||||
|
@keyframes scaleUpTo {
|
||||||
|
to { opacity: 0; transform: scale(1.5); }
|
||||||
|
}
|
||||||
4692
public/assets/css/responsive.css
Normal file
9430
public/assets/css/style.css
Normal file
1198
public/assets/css/theme-default.css
Normal file
BIN
public/assets/fonts/Flaticon.eot
Normal file
900
public/assets/fonts/Flaticon.svg
Normal file
@ -0,0 +1,900 @@
|
|||||||
|
<?xml version="1.0" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||||
|
<!--
|
||||||
|
2019-8-1: Created with FontForge (http://fontforge.org)
|
||||||
|
-->
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
||||||
|
<metadata>
|
||||||
|
Created by FontForge 20170731 at Thu Aug 1 09:08:58 2019
|
||||||
|
By root
|
||||||
|
|
||||||
|
</metadata>
|
||||||
|
<defs>
|
||||||
|
<font id="Flaticon" horiz-adv-x="512" >
|
||||||
|
<font-face
|
||||||
|
font-family="Flaticon"
|
||||||
|
font-weight="400"
|
||||||
|
font-stretch="normal"
|
||||||
|
units-per-em="512"
|
||||||
|
panose-1="2 0 5 3 0 0 0 0 0 0"
|
||||||
|
ascent="448"
|
||||||
|
descent="-64"
|
||||||
|
bbox="-0.000748071 -65.5029 513.069 448.001"
|
||||||
|
underline-thickness="25.6"
|
||||||
|
underline-position="-51.2"
|
||||||
|
unicode-range="U+0020-F12F"
|
||||||
|
/>
|
||||||
|
<missing-glyph />
|
||||||
|
<glyph glyph-name="space" unicode=" " horiz-adv-x="200"
|
||||||
|
/>
|
||||||
|
<glyph glyph-name="019-server" unicode=""
|
||||||
|
d="M68.3789 256.762c18.6133 0 33.7539 -15.1406 33.7539 -33.75s-15.1406 -33.7539 -33.7539 -33.7539c-18.6094 0 -33.75 15.1445 -33.75 33.7539s15.1406 33.75 33.75 33.75zM68.3789 204.379c10.2773 0 18.6328 8.35938 18.6328 18.6328
|
||||||
|
s-8.35547 18.6289 -18.6328 18.6289c-10.2734 0 -18.6289 -8.35547 -18.6289 -18.6289s8.35547 -18.6328 18.6289 -18.6328zM68.3789 204.379zM312.777 233.656c-4.17578 0 -7.55859 3.38281 -7.55859 7.55859s3.38281 7.5625 7.55859 7.5625h31.25
|
||||||
|
c4.17578 0 7.55859 -3.38672 7.55859 -7.5625s-3.38281 -7.55859 -7.55859 -7.55859h-31.25zM312.777 233.656zM403.276 248.777c4.17969 0 7.5625 -3.38672 7.5625 -7.5625s-3.38281 -7.55859 -7.5625 -7.55859h-29.0107c-4.17578 0 -7.55859 3.38281 -7.55859 7.55859
|
||||||
|
s3.38281 7.5625 7.55859 7.5625h29.0107zM403.276 248.777zM167.121 241.215c0 -4.17578 -3.38281 -7.55859 -7.5625 -7.55859h-31.2461c-4.17578 0 -7.55859 3.38281 -7.55859 7.55859s3.38281 7.5625 7.55859 7.5625h31.2461c4.17969 0 7.5625 -3.38672 7.5625 -7.5625z
|
||||||
|
M167.121 241.215zM189.801 233.656c-4.17578 0 -7.55859 3.38281 -7.55859 7.55859s3.38281 7.5625 7.55859 7.5625h31.25c4.17578 0 7.55859 -3.38672 7.55859 -7.5625s-3.38281 -7.55859 -7.55859 -7.55859h-31.25zM189.801 233.656zM251.289 233.656
|
||||||
|
c-4.17578 0 -7.55859 3.38281 -7.55859 7.55859s3.38281 7.5625 7.55859 7.5625h31.25c4.17578 0 7.55859 -3.38672 7.55859 -7.5625s-3.38281 -7.55859 -7.55859 -7.55859h-31.25zM251.289 233.656zM313.027 212.367c4.17969 0 7.5625 -3.38672 7.5625 -7.55859
|
||||||
|
c0 -4.17578 -3.38281 -7.5625 -7.5625 -7.5625h-31.2461c-4.17578 0 -7.5625 3.38672 -7.5625 7.5625c0 4.17188 3.38672 7.55859 7.5625 7.55859h31.2461zM313.027 212.367zM251.539 212.367c4.17578 0 7.5625 -3.38672 7.5625 -7.55859
|
||||||
|
c0 -4.17578 -3.38672 -7.5625 -7.5625 -7.5625h-31.2461c-4.17578 0 -7.5625 3.38672 -7.5625 7.5625c0 4.17188 3.38672 7.55859 7.5625 7.55859h31.2461zM251.539 212.367zM190.051 212.367c4.17578 0 7.5625 -3.38672 7.5625 -7.55859
|
||||||
|
c0 -4.17578 -3.38672 -7.5625 -7.5625 -7.5625h-31.2461c-4.17578 0 -7.5625 3.38672 -7.5625 7.5625c0 4.17188 3.38672 7.55859 7.5625 7.55859h31.2461zM190.051 212.367zM372.785 212.367c4.17969 0 7.56152 -3.38672 7.56152 -7.55859
|
||||||
|
c0 -4.17578 -3.38184 -7.5625 -7.56152 -7.5625h-29.5156c-4.17578 0 -7.55859 3.38672 -7.55859 7.5625c0 4.17188 3.38281 7.55859 7.55859 7.55859h29.5156zM372.785 212.367zM68.3789 144.895c18.6133 0 33.7539 -15.1406 33.7539 -33.7539
|
||||||
|
c0 -18.6094 -15.1406 -33.75 -33.7539 -33.75c-18.6094 0 -33.75 15.1406 -33.75 33.75c0 18.6133 15.1406 33.7539 33.75 33.7539zM68.3789 92.5078c10.2773 0 18.6328 8.35938 18.6328 18.6328s-8.35547 18.6328 -18.6328 18.6328
|
||||||
|
c-10.2734 0 -18.6289 -8.35938 -18.6289 -18.6328s8.35547 -18.6328 18.6289 -18.6328zM68.3789 92.5078zM403.276 136.906c4.17969 0 7.5625 -3.38672 7.5625 -7.55859c0 -4.17578 -3.38281 -7.5625 -7.5625 -7.5625h-29.0107c-4.17578 0 -7.55859 3.38672 -7.55859 7.5625
|
||||||
|
c0 4.17188 3.38281 7.55859 7.55859 7.55859h29.0107zM403.276 136.906zM167.121 129.348c0 -4.17578 -3.38281 -7.5625 -7.5625 -7.5625h-31.2461c-4.17578 0 -7.55859 3.38672 -7.55859 7.5625c0 4.17188 3.38281 7.55859 7.55859 7.55859h31.2461
|
||||||
|
c4.17969 0 7.5625 -3.38672 7.5625 -7.55859zM167.121 129.348zM251.289 121.785c-4.17578 0 -7.55859 3.38672 -7.55859 7.5625c0 4.17188 3.38281 7.55859 7.55859 7.55859h31.25c4.17578 0 7.55859 -3.38672 7.55859 -7.55859
|
||||||
|
c0 -4.17578 -3.38281 -7.5625 -7.55859 -7.5625h-31.25zM251.289 121.785zM189.801 121.785c-4.17578 0 -7.55859 3.38672 -7.55859 7.5625c0 4.17188 3.38281 7.55859 7.55859 7.55859h31.25c4.17578 0 7.55859 -3.38672 7.55859 -7.55859
|
||||||
|
c0 -4.17578 -3.38281 -7.5625 -7.55859 -7.5625h-31.25zM189.801 121.785zM312.777 121.785c-4.17578 0 -7.55859 3.38672 -7.55859 7.5625c0 4.17188 3.38281 7.55859 7.55859 7.55859h31.25c4.17578 0 7.55859 -3.38672 7.55859 -7.55859
|
||||||
|
c0 -4.17578 -3.38281 -7.5625 -7.55859 -7.5625h-31.25zM312.777 121.785zM190.051 100.496c4.17578 0 7.5625 -3.38281 7.5625 -7.55859s-3.38672 -7.5625 -7.5625 -7.5625h-31.2461c-4.17578 0 -7.5625 3.38672 -7.5625 7.5625s3.38672 7.55859 7.5625 7.55859h31.2461z
|
||||||
|
M190.051 100.496zM372.785 100.496c4.17969 0 7.56152 -3.38281 7.56152 -7.55859s-3.38184 -7.5625 -7.56152 -7.5625h-29.5156c-4.17578 0 -7.55859 3.38672 -7.55859 7.5625s3.38281 7.55859 7.55859 7.55859h29.5156zM372.785 100.496zM313.027 100.496
|
||||||
|
c4.17969 0 7.5625 -3.38281 7.5625 -7.55859s-3.38281 -7.5625 -7.5625 -7.5625h-31.2461c-4.17578 0 -7.5625 3.38672 -7.5625 7.5625s3.38672 7.55859 7.5625 7.55859h31.2461zM313.027 100.496zM251.539 100.496c4.17578 0 7.5625 -3.38281 7.5625 -7.55859
|
||||||
|
s-3.38672 -7.5625 -7.5625 -7.5625h-31.2461c-4.17578 0 -7.5625 3.38672 -7.5625 7.5625s3.38672 7.55859 7.5625 7.55859h31.2461zM251.539 100.496zM68.3789 33.0244c18.6133 0 33.7539 -15.1406 33.7539 -33.75c0 -18.6133 -15.1406 -33.7539 -33.7539 -33.7539
|
||||||
|
c-18.6094 0 -33.75 15.1406 -33.75 33.7539c0 18.6094 15.1406 33.75 33.75 33.75zM68.3789 -19.3584c10.2773 0 18.6328 8.35547 18.6328 18.6289s-8.35547 18.6328 -18.6328 18.6328c-10.2734 0 -18.6289 -8.35938 -18.6289 -18.6328s8.35547 -18.6289 18.6289 -18.6289z
|
||||||
|
M68.3789 -19.3584zM403.276 25.0361c4.17969 0 7.5625 -3.38281 7.5625 -7.55859s-3.38281 -7.55859 -7.5625 -7.55859h-29.0107c-4.17578 0 -7.55859 3.38281 -7.55859 7.55859s3.38281 7.55859 7.55859 7.55859h29.0107zM403.276 25.0361zM167.121 17.4775
|
||||||
|
c0 -4.17578 -3.38281 -7.55859 -7.5625 -7.55859h-31.2461c-4.17578 0 -7.55859 3.38281 -7.55859 7.55859s3.38281 7.55859 7.55859 7.55859h31.2461c4.17969 0 7.5625 -3.38281 7.5625 -7.55859zM167.121 17.4775zM251.289 9.91895
|
||||||
|
c-4.17578 0 -7.55859 3.38281 -7.55859 7.55859s3.38281 7.55859 7.55859 7.55859h31.25c4.17578 0 7.55859 -3.38281 7.55859 -7.55859s-3.38281 -7.55859 -7.55859 -7.55859h-31.25zM251.289 9.91895zM312.777 9.91895c-4.17578 0 -7.55859 3.38281 -7.55859 7.55859
|
||||||
|
s3.38281 7.55859 7.55859 7.55859h31.25c4.17578 0 7.55859 -3.38281 7.55859 -7.55859s-3.38281 -7.55859 -7.55859 -7.55859h-31.25zM312.777 9.91895zM189.801 9.91895c-4.17578 0 -7.55859 3.38281 -7.55859 7.55859s3.38281 7.55859 7.55859 7.55859h31.25
|
||||||
|
c4.17578 0 7.55859 -3.38281 7.55859 -7.55859s-3.38281 -7.55859 -7.55859 -7.55859h-31.25zM189.801 9.91895zM372.785 -11.3701c4.17969 0 7.56152 -3.38672 7.56152 -7.5625s-3.38184 -7.55859 -7.56152 -7.55859h-29.5156
|
||||||
|
c-4.17578 0 -7.55859 3.38281 -7.55859 7.55859s3.38281 7.5625 7.55859 7.5625h29.5156zM372.785 -11.3701zM251.539 -11.3701c4.17578 0 7.5625 -3.38672 7.5625 -7.5625s-3.38672 -7.55859 -7.5625 -7.55859h-31.2461c-4.17578 0 -7.5625 3.38281 -7.5625 7.55859
|
||||||
|
s3.38672 7.5625 7.5625 7.5625h31.2461zM251.539 -11.3701zM313.027 -11.3701c4.17969 0 7.5625 -3.38672 7.5625 -7.5625s-3.38281 -7.55859 -7.5625 -7.55859h-31.2461c-4.17578 0 -7.5625 3.38281 -7.5625 7.55859s3.38672 7.5625 7.5625 7.5625h31.2461z
|
||||||
|
M313.027 -11.3701zM190.051 -11.3701c4.17578 0 7.5625 -3.38672 7.5625 -7.5625s-3.38672 -7.55859 -7.5625 -7.55859h-31.2461c-4.17578 0 -7.5625 3.38281 -7.5625 7.55859s3.38672 7.5625 7.5625 7.5625h31.2461zM190.051 -11.3701zM475.917 339.195
|
||||||
|
c18.1562 0 32.9258 -15.1445 32.9258 -33.7617s-14.7695 -33.7617 -32.9258 -33.7617h-25.918c1.26562 -2.96875 1.96484 -6.23047 1.96484 -9.65625v-77.5586c0 -6.66016 -2.65234 -12.7109 -6.94922 -17.1562c4.29688 -4.44922 6.94922 -10.5 6.94922 -17.1562v-77.5586
|
||||||
|
c0 -6.65918 -2.65234 -12.7061 -6.94922 -17.1553c4.29688 -4.44922 6.94922 -10.4961 6.94922 -17.1562v-77.5586c0 -13.6289 -11.0859 -24.7148 -24.7148 -24.7148h-402.534c-13.6289 0 -24.7148 11.0859 -24.7148 24.7148v77.5586
|
||||||
|
c0 6.66016 2.65234 12.707 6.94922 17.1562c-4.29688 4.44531 -6.94922 10.4961 -6.94922 17.1514v77.5586c0 6.66016 2.65234 12.7109 6.94922 17.1562c-4.29688 4.44922 -6.94922 10.5 -6.94922 17.1562v77.5586c0 13.6289 11.0859 24.7188 24.7148 24.7188h168.078
|
||||||
|
c-13.4375 20.625 -1.10547 48.9023 23.0586 52.1758c-6.97656 34.8086 19.3047 67.2539 53.6562 66.6992c28.6328 57.4492 108.387 56.043 135.765 -1.37109c3.91016 0.914062 7.91797 1.37891 11.9766 1.37891c34.0938 0 59.5586 -32.1914 52.8984 -66.418h5.76953z
|
||||||
|
M436.847 -39.2842v77.5586c0 5.29297 -4.30469 9.59766 -9.59766 9.59766h-402.534c-5.28906 0 -9.59375 -4.30469 -9.59375 -9.59766v-77.5586c0 -5.28906 4.30469 -9.59375 9.59375 -9.59375h402.534c5.28906 0 9.59766 4.30469 9.59766 9.59375zM436.847 72.5859v77.5586
|
||||||
|
c0 5.28906 -4.30859 9.59766 -9.59766 9.59766h-402.534c-5.28906 0 -9.59375 -4.30859 -9.59375 -9.59766v-77.5586c0 -5.29199 4.30469 -9.59277 9.59375 -9.59277h402.534c5.28906 0 9.59766 4.30078 9.59766 9.59277zM436.847 184.457v77.5586
|
||||||
|
c0 5.28906 -4.30859 9.59375 -9.59766 9.59375h-402.534c-5.28906 0 -9.59375 -4.30469 -9.59375 -9.59375v-77.5586c0 -5.29297 4.30469 -9.59766 9.59375 -9.59766h402.534c5.28906 0 9.59766 4.30469 9.59766 9.59766zM475.917 286.793
|
||||||
|
c9.81641 0 17.8047 8.36328 17.8047 18.6406c0 10.2812 -7.98828 18.6445 -17.8047 18.6445h-15.8672c-5.35938 0 -9.01953 5.4375 -7.00781 10.4023c10.7305 26.4688 -8.03125 56.0117 -35.793 56.0117c-4.65234 0 -9.21094 -0.851562 -13.5508 -2.53125
|
||||||
|
c-3.94531 -1.53125 -8.36719 0.476562 -9.82422 4.42969c-8.94531 24.2617 -31.7764 40.5625 -56.8115 40.5625c-24.3164 0 -46.2461 -14.9727 -55.8711 -38.1484c-1.30469 -3.13672 -4.53516 -5.01562 -7.90234 -4.60547
|
||||||
|
c-29.6523 3.63672 -51.8789 -27.3867 -40.3906 -55.7227c2.01172 -4.96484 -1.64844 -10.3984 -7.00781 -10.3984h-5.70312c-9.81641 0 -17.8047 -8.36328 -17.8047 -18.6445c0 -10.2773 7.98828 -18.6406 17.8047 -18.6406h255.729zM475.917 286.793zM332.93 339.867
|
||||||
|
c3.01953 2.88281 7.80469 2.77734 10.6914 -0.242188c2.88281 -3.01953 2.77344 -7.80469 -0.246094 -10.6914c-30.0781 -27.7383 -29.543 -30.4766 -34.9258 -30.4766c-5.37891 0 -4.91406 2.79688 -34.9258 30.4766c-3.01953 2.88672 -3.12891 7.67188 -0.242188 10.6914
|
||||||
|
c2.88281 3.01562 7.66797 3.125 10.6875 0.242188l16.9219 -16.168v59.0195c0 4.17578 3.38281 7.5625 7.55859 7.5625s7.55859 -3.38672 7.55859 -7.5625v-59.0195zM332.93 339.867zM381.202 388.188l29.7031 -28.3867
|
||||||
|
c4.94531 -4.72266 1.53516 -13.0234 -5.22266 -13.0234c-5.20312 0 -5.9375 3.66016 -22.1445 18.2617v-59.0234c0 -4.17188 -3.38281 -7.55859 -7.55762 -7.55859c-4.17578 0 -7.55859 3.38672 -7.55859 7.55859v59.0234l-16.9219 -16.168
|
||||||
|
c-3.01953 -2.88281 -7.80469 -2.77734 -10.6875 0.242188c-2.88672 3.01953 -2.77734 7.80469 0.242188 10.6875l29.7031 28.3867c2.92188 2.79297 7.52344 2.79297 10.4443 0zM381.202 388.188z" />
|
||||||
|
<glyph glyph-name="002-clock" unicode=""
|
||||||
|
d="M503.467 -12.7998c4.71289 0 8.5332 -3.82129 8.5332 -8.5332c0 -4.71289 -3.82031 -8.5332 -8.5332 -8.5332h-25.6006v-25.6006c0 -4.71289 -3.82031 -8.5332 -8.5332 -8.5332c-4.71191 0 -8.5332 3.82031 -8.5332 8.5332v25.6006h-110.934
|
||||||
|
c-1.74805 0.000976562 -3.45215 0.538086 -4.88477 1.54004c-3.8623 2.69922 -4.80469 8.02051 -2.10352 11.8828l119.467 170.666c1.5957 2.27832 4.20117 3.63574 6.98242 3.6377c4.71191 0.00292969 8.53613 -3.81445 8.53906 -8.52734v-162.133h25.6006zM460.8 -12.7998
|
||||||
|
v135.065l-94.5488 -135.065h94.5488zM349.866 -46.9336c4.71289 0 8.53418 -3.82031 8.53418 -8.5332s-3.82129 -8.5332 -8.53418 -8.5332h-119.466c-2.02148 0.000976562 -3.97559 0.71875 -5.51758 2.02637c-3.59277 3.0498 -4.03516 8.43457 -0.985352 12.0283
|
||||||
|
l105.489 124.262c12.3604 18.4678 8.25293 43.3594 -9.38672 56.875c-8.70605 6.25293 -19.1543 9.61523 -29.8721 9.61426c-28.2764 -0.00390625 -51.1982 -22.9287 -51.1943 -51.2061c0 -4.71191 -3.82129 -8.5332 -8.5332 -8.5332
|
||||||
|
c-4.71289 0 -8.53418 3.82129 -8.53418 8.5332c-0.00195312 14.2969 4.48438 28.2334 12.8271 39.8438c21.999 30.6182 64.6553 37.6064 95.2734 15.6064c25.1816 -19.0283 31.0674 -54.4365 13.3975 -80.5889c-0.18457 -0.275391 -0.383789 -0.540039 -0.597656 -0.793945
|
||||||
|
l-93.9258 -110.601h101.025zM230.588 -4.42871c-0.173828 -4.58203 -3.93945 -8.20801 -8.52539 -8.20898h-0.31543c-123.56 4.59668 -221.415 105.987 -221.628 229.632c-0.0078125 0.212891 -0.119141 0.392578 -0.119141 0.605469
|
||||||
|
c0 0.213867 0.119141 0.392578 0.119141 0.606445c0.173828 126.773 102.901 229.501 229.675 229.675c0.213867 0.0078125 0.392578 0.119141 0.606445 0.119141c0.212891 0 0.392578 -0.111328 0.605469 -0.119141c122.466 -0.180664 223.322 -96.2754 229.419 -218.59
|
||||||
|
l34.1074 34.082c3.30762 3.19336 8.55078 3.19336 11.8574 0c3.38965 -3.27539 3.48242 -8.67676 0.208984 -12.0664l-48.2822 -48.2646c-0.873047 -0.859375 -1.9248 -1.51758 -3.08008 -1.92871c-0.342773 -0.0878906 -0.69043 -0.15332 -1.04102 -0.196289
|
||||||
|
c-0.620117 -0.200195 -1.26172 -0.326172 -1.91113 -0.375h-0.239258h-0.248047c-0.617188 0.078125 -1.22266 0.223633 -1.80859 0.435547c-0.342773 0.0634766 -0.681641 0.146484 -1.01562 0.24707c-1.30859 0.521484 -2.46484 1.36328 -3.3623 2.44922l-47.6328 47.6328
|
||||||
|
c-3.19336 3.30762 -3.19336 8.55078 0 11.8574c3.27441 3.38965 8.67676 3.4834 12.0664 0.208984l33.2803 -33.2803c-6.32617 109.504 -94.7861 196.294 -204.391 200.533v-25.293c0 -4.71191 -3.82129 -8.5332 -8.5332 -8.5332
|
||||||
|
c-4.71289 0 -8.53418 3.82129 -8.53418 8.5332v25.293c-111.125 -4.26562 -200.231 -93.3682 -204.501 -204.492h33.835c4.71191 0 8.5332 -3.82129 8.5332 -8.53418c0 -4.71191 -3.82129 -8.5332 -8.5332 -8.5332h-33.835
|
||||||
|
c4.33203 -111.32 93.6855 -200.514 205.014 -204.646h0.00292969c4.70898 -0.177734 8.38379 -4.13965 8.20605 -8.84863zM345.045 332.245c3.33203 -3.33203 3.33203 -8.7334 0 -12.0654l-91.6133 -91.6143c4.75098 -9.74707 2.76758 -21.4375 -4.93262 -29.0732
|
||||||
|
c-7.6582 -7.66309 -19.3174 -9.66504 -29.0928 -4.99512c-12.7373 6.08301 -18.1309 21.3408 -12.0459 34.0771l-43.333 43.332c-3.19336 3.30664 -3.19336 8.54883 0 11.8555c3.27441 3.39062 8.67676 3.48438 12.0664 0.210938l43.418 -43.418
|
||||||
|
c6.92676 3.08887 14.8398 3.08887 21.7686 0l91.6992 91.6904c3.33203 3.33105 8.7334 3.33105 12.0654 0zM236.436 211.569c3.33105 3.33203 3.33105 8.73535 -0.00292969 12.0684c-3.33301 3.33105 -8.73535 3.33105 -12.0674 -0.00292969
|
||||||
|
c-3.33203 -3.33301 -3.33203 -8.73535 0.00195312 -12.0674c3.375 -3.22754 8.69141 -3.22754 12.0654 0c0.00195312 0.000976562 0.00195312 0.000976562 0.00292969 0.00195312z" />
|
||||||
|
<glyph glyph-name="006-data" unicode=""
|
||||||
|
d="M85.3574 142.422c-47.0645 0 -85.3574 38.293 -85.3574 85.3623c0 40.0928 27.4707 74.041 65.4863 83.0283c-1.72266 6.60645 -2.5918 13.4033 -2.5918 20.2979c0 44.5918 36.2773 80.8691 80.8691 80.8691c18.7969 0 37.0127 -6.6582 51.4238 -18.5605
|
||||||
|
c24.3291 33.8662 63.9229 54.5039 105.815 54.5039c71.8398 0 130.287 -58.4521 130.287 -130.288c0 -1.51172 -0.0302734 -3.04395 -0.0917969 -4.60645c45.0283 -2.29785 80.9609 -39.6504 80.9609 -85.2441c0 -47.0693 -38.293 -85.3623 -85.3623 -85.3623h-103.326
|
||||||
|
c-4.9668 0 -8.9873 4.02539 -8.9873 8.9873c0 4.96094 4.02051 8.98633 8.9873 8.98633h103.326c37.1621 0 67.3887 30.2266 67.3887 67.3887s-30.2266 67.3877 -67.3887 67.3877c-1.34668 0 -2.66309 -0.102539 -3.98438 -0.195312
|
||||||
|
c-2.69434 -0.148438 -5.625 0.791992 -7.47559 2.71973c-1.85059 1.92871 -3.0957 4.55078 -2.79199 7.20898c0.519531 4.59082 0.776367 8.75586 0.776367 12.7295c0 61.9336 -50.3857 112.313 -112.318 112.313c-39.9023 0 -75.9648 -20.5752 -96.4785 -55.0332
|
||||||
|
c-1.45508 -2.44727 -3.97461 -4.06152 -6.80762 -4.34473c-2.8584 -0.354492 -5.62891 0.771484 -7.54688 2.87402c-11.9229 13.0693 -28.8438 20.5664 -46.4062 20.5664c-34.6787 0 -62.8945 -28.2168 -62.8945 -62.9004c0 -8.25684 1.59375 -16.3135 4.75 -23.959
|
||||||
|
c1.08008 -2.61621 0.864258 -5.58887 -0.585938 -8.02539c-1.44922 -2.43164 -3.96387 -4.04102 -6.78613 -4.33398c-34.3604 -3.60449 -60.2783 -32.4111 -60.2783 -67.0078c0 -37.1621 30.2314 -67.3887 67.3887 -67.3887h70.3857
|
||||||
|
c4.9668 0 8.9873 -4.02539 8.9873 -8.98633c0 -4.96191 -4.02051 -8.9873 -8.9873 -8.9873h-70.3857zM85.3574 142.422zM233.614 16.6328h-197.671c-4.9668 0 -8.9873 4.02051 -8.9873 8.98145v37.2188c-15.4551 4.01562 -26.9561 17.9688 -26.9561 34.6631
|
||||||
|
c0 19.8203 16.123 35.9434 35.9434 35.9434c19.8154 0 35.9385 -16.123 35.9385 -35.9434c0 -16.6943 -11.501 -30.6475 -26.9561 -34.6631v-28.2314h179.707v233.614c0 4.96191 4.02051 8.9873 8.98145 8.9873h82.1445c4.02051 15.4551 17.9688 26.9561 34.6631 26.9561
|
||||||
|
c19.8193 0 35.9434 -16.1279 35.9434 -35.9434c0 -19.8145 -16.124 -35.9385 -35.9434 -35.9385c-16.6943 0 -30.6426 11.4961 -34.6631 26.9512h-73.1572v-233.614c0 -4.96094 -4.02539 -8.98145 -8.9873 -8.98145zM350.422 286.186
|
||||||
|
c-9.9082 0 -17.9697 -8.05664 -17.9697 -17.9697c0 -9.91211 8.06152 -17.9688 17.9697 -17.9688c9.91211 0 17.9736 8.05664 17.9736 17.9688c0 9.91309 -8.06152 17.9697 -17.9736 17.9697zM17.9688 97.4961c0 -9.90723 8.0625 -17.9688 17.9746 -17.9688
|
||||||
|
c9.90723 0 17.9688 8.06152 17.9688 17.9688c0 9.91309 -8.06152 17.9688 -17.9688 17.9688c-9.91211 0 -17.9746 -8.05566 -17.9746 -17.9688zM17.9688 97.4961zM134.776 97.4961h53.9121v95.5889l-36.5498 43.8613c-5.17188 -2.88477 -11.0332 -4.66895 -17.3623 -4.66895
|
||||||
|
c-19.8145 0 -35.9385 16.124 -35.9385 35.9434c0 19.8154 16.124 35.9385 35.9385 35.9385c19.8203 0 35.9434 -16.123 35.9434 -35.9385c0 -6.95605 -2.07227 -13.3926 -5.50684 -18.8994l39.3633 -47.2334c1.34668 -1.61523 2.08203 -3.65039 2.08203 -5.75391v-107.82
|
||||||
|
c0 -4.96582 -4.02051 -8.98633 -8.98242 -8.98633h-62.8994c-4.96191 0 -8.98242 4.02051 -8.98242 8.98633c0 4.96191 4.02051 8.98242 8.98242 8.98242zM116.808 268.216c0 -9.91211 8.06152 -17.9688 17.9688 -17.9688c3.54199 0 6.82812 1.06445 9.60938 2.83789
|
||||||
|
c0.513672 1.5166 1.28516 2.96094 2.61133 4.06152c0.910156 0.760742 1.93848 1.28027 3.00293 1.625c1.71191 2.75586 2.75098 5.96875 2.75098 9.44434c0 9.91309 -8.0625 17.9697 -17.9746 17.9697c-9.90723 0 -17.9688 -8.05664 -17.9688 -17.9697zM116.808 268.216z
|
||||||
|
M485.203 97.4961c4.96094 0 8.98242 -4.02051 8.98242 -8.98242c0 -4.96582 -4.02148 -8.98633 -8.98242 -8.98633h-197.676c-4.96191 0 -8.9873 4.02051 -8.9873 8.98633v82.1396c-15.4551 4.02051 -26.9512 17.9688 -26.9512 34.668
|
||||||
|
c0 19.8154 16.123 35.9385 35.9385 35.9385c19.8145 0 35.9434 -16.123 35.9434 -35.9385c0 -16.6992 -11.502 -30.6475 -26.957 -34.668v-73.1572h188.689zM269.558 205.321c0 -9.91211 8.05664 -17.9746 17.9697 -17.9746c9.91211 0 17.9688 8.0625 17.9688 17.9746
|
||||||
|
c0 9.90723 -8.05664 17.9688 -17.9688 17.9688c-9.91309 0 -17.9697 -8.06152 -17.9697 -17.9688zM269.558 205.321zM476.216 -10.3242c4.96191 0 8.9873 -4.02539 8.9873 -8.9873c0 -4.96094 -4.02539 -8.98633 -8.9873 -8.98633h-71.8818
|
||||||
|
c-3.22363 0 -6.20508 1.73242 -7.79883 4.5293l-33.3525 58.3701h-75.6553c-4.96191 0 -8.9873 4.02051 -8.9873 8.98242c0 4.96582 4.02539 8.98633 8.9873 8.98633h80.8682c3.22363 0 6.20117 -1.72754 7.7998 -4.5293l33.3525 -58.3652h66.668zM476.216 -10.3242z
|
||||||
|
M359.409 -10.3242c4.96094 0 8.98633 -4.02539 8.98633 -8.9873c0 -4.96094 -4.02539 -8.98633 -8.98633 -8.98633h-28.2314c-4.02051 -15.4551 -17.9697 -26.9512 -34.6641 -26.9512c-16.6992 0 -30.6475 11.4961 -34.668 26.9512h-216.92
|
||||||
|
c-4.96191 0 -8.98242 4.02539 -8.98242 8.98633c0 4.96191 4.02051 8.9873 8.98242 8.9873h216.92c4.02051 15.4551 17.9688 26.957 34.668 26.957c16.6943 0 30.6436 -11.502 34.6641 -26.957h28.2314zM296.514 -37.2803c9.9082 0 17.9697 8.05664 17.9697 17.9688
|
||||||
|
c0 9.91309 -8.06152 17.9697 -17.9697 17.9697c-9.91211 0 -17.9736 -8.05664 -17.9736 -17.9697c0 -9.91211 8.06152 -17.9688 17.9736 -17.9688zM296.514 -37.2803z" />
|
||||||
|
<glyph glyph-name="018-microchip" unicode=""
|
||||||
|
d="M430.197 -64h-348.396c-21.8779 0 -39.6797 17.8018 -39.6797 39.6797v432.641c0 21.8779 17.8018 39.6797 39.6797 39.6797h252.626c17.1797 0 38.9111 -9.53027 50.543 -22.166l65.0488 -70.6357c11.3213 -12.2969 19.8555 -34.165 19.8555 -50.876v-328.643
|
||||||
|
c0.00195312 -21.8779 -17.7969 -39.6797 -39.6768 -39.6797zM81.8008 413.989c-3.07227 0 -5.66895 -2.59668 -5.66895 -5.66895v-432.641c0 -3.07227 2.59668 -5.66895 5.66895 -5.66895h348.396c3.07227 0 5.66797 2.59668 5.66797 5.66895v328.643
|
||||||
|
c0 8.24219 -5.28027 21.7715 -10.8652 27.834l-65.0488 70.6367c-5.20215 5.65039 -17.8447 11.1963 -25.5244 11.1963h-252.626zM132.152 261.514c-9.3916 0 -17.0049 7.61133 -17.0049 17.0059v72.5566c0 9.39355 7.61328 17.0049 17.0049 17.0049
|
||||||
|
s17.0059 -7.61133 17.0059 -17.0049v-72.5566c0 -9.39453 -7.61426 -17.0059 -17.0059 -17.0059zM197.984 261.514c-9.3916 0 -17.0059 7.61133 -17.0059 17.0059v72.5566c0 9.39355 7.61426 17.0049 17.0059 17.0049s17.0049 -7.61133 17.0049 -17.0049v-72.5566
|
||||||
|
c0 -9.39453 -7.61328 -17.0059 -17.0049 -17.0059zM263.813 261.514c-9.3916 0 -17.0059 7.61133 -17.0059 17.0059v72.5566c0 9.39355 7.61426 17.0049 17.0059 17.0049s17.0059 -7.61133 17.0059 -17.0049v-72.5566c0 -9.39453 -7.61426 -17.0059 -17.0059 -17.0059z
|
||||||
|
M329.645 261.514c-9.3916 0 -17.0049 7.61133 -17.0049 17.0059v72.5566c0 9.39355 7.61328 17.0049 17.0049 17.0049s17.0059 -7.61133 17.0059 -17.0049v-72.5566c0 -9.39453 -7.61426 -17.0059 -17.0059 -17.0059z" />
|
||||||
|
<glyph glyph-name="007-global" unicode=""
|
||||||
|
d="M480 216c0 -4.41602 -3.58398 -8 -8 -8h-64.8799c0.52832 -5.34375 0.879883 -10.6963 0.879883 -16c-0.00488281 -8.91211 -1.37793 -23.248 -3.06445 -32h19.0645c1.8291 0 4.36328 -1.05078 5.65625 -2.34375l48 -48
|
||||||
|
c1.29297 -1.29297 2.34375 -3.82715 2.34375 -5.65625v-144c0 -4.41602 -3.58398 -8 -8 -8h-144c-4.41602 0 -8 3.58398 -8 8v84.3359c-20.6826 -11.2256 -56.5674 -20.3369 -80.0996 -20.3369c-29.0723 0 -72.0361 13.4766 -95.9004 30.0811v-94.0801
|
||||||
|
c0 -4.41602 -3.58398 -8 -8 -8h-128c-4.41602 0 -8 3.58398 -8 8v96c0 13.248 10.752 24 24 24h8.8877c-9.32324 9.08984 -16.8896 27.0352 -16.8896 40.0557c0 30.8818 25.0635 55.9443 55.9443 55.9443h0.0576172c0.288086 0 0.55957 -0.0400391 0.847656 -0.0400391
|
||||||
|
c-0.503906 5.24023 -0.847656 10.5762 -0.847656 16.04c0 5.30371 0.351562 10.6562 0.879883 16h-48.8799c-13.248 0 -24 10.752 -24 24v176c0 13.248 10.752 24 24 24h32c13.248 0 24 -10.752 24 -24c0 -4.41602 3.58398 -8 8 -8h80c13.248 0 24 -10.752 24 -24v-8h8
|
||||||
|
c6.51758 -0.0214844 15.0078 -4.25098 18.9521 -9.44043c5.7832 0.770508 15.2129 1.41602 21.0479 1.44043c30.9189 -0.0537109 76.0518 -15.1992 100.744 -33.8076c3.94531 5.39551 12.5713 9.78906 19.2559 9.80762h8.8877
|
||||||
|
c-9.32227 9.09766 -16.8877 27.0527 -16.8877 40.0781c0 30.9121 25.0879 56 56 56s56 -25.0879 56 -56c0 -13.0254 -7.56543 -30.9805 -16.8877 -40.0781h8.8877c13.248 0 24 -10.752 24 -24v-96zM368 376c0.0263672 -22.0537 17.9463 -39.9736 40 -40
|
||||||
|
c22.0801 0 40 17.9199 40 40s-17.9199 40 -40 40s-40 -17.9199 -40 -40zM240 40c14.4883 0 29.8477 18.7764 40.7998 50.3115c-11.0439 3.12695 -29.3223 5.66406 -40.7998 5.66406s-29.7559 -2.53711 -40.7998 -5.66406
|
||||||
|
c10.9678 -31.5596 26.3193 -50.3115 40.7998 -50.3115zM205.48 43.9121c-7.8252 10.3965 -17.4268 28.8828 -21.4326 41.2637c-9.37207 -3.70605 -23.6543 -11.4404 -31.8799 -17.2637c13.3965 -9.5498 37.2803 -20.3018 53.3125 -24zM240 112
|
||||||
|
c12.8096 -0.0126953 33.21 -2.85547 45.5361 -6.34375c5.43945 21.2812 10.0518 56.3799 10.2959 78.3438h-111.664c0.246094 -21.9805 4.86523 -57.1035 10.3125 -78.4004c12.3184 3.50977 32.7109 6.37695 45.5195 6.40039zM184.24 200h111.592
|
||||||
|
c-0.266602 19.8301 -4.0625 51.6162 -8.47168 70.9521c-12.7949 -3.80664 -34.0117 -6.9209 -47.3604 -6.95215c-5.24805 0 -10.6084 0.34375 -16 0.847656v-32.8477c0 -13.248 -10.752 -24 -24 -24h-15.5195c-0.112305 -2.65625 -0.18457 -5.32031 -0.240234 -8zM240 280
|
||||||
|
c12.1807 0.03125 31.5342 2.89844 43.2002 6.40039c-11.0801 35.9355 -27.6406 57.5996 -43.2002 57.5996c-5.16504 -0.323242 -12.333 -3.54883 -16 -7.2002v-55.8721c4.40332 -0.479492 11.5713 -0.895508 16 -0.927734zM274.728 339.816
|
||||||
|
c8.88086 -12.0859 19.3965 -33.6074 23.4727 -48.04c10.3438 4.2959 25.9199 13.3564 34.7676 20.2236c-14.4072 11.167 -40.499 23.6289 -58.2402 27.8164zM16 232c0 -4.41602 3.58398 -8 8 -8h9.47168c-0.790039 2.1377 -1.44922 5.72168 -1.47168 8v112
|
||||||
|
c0 13.248 10.752 24 24 24h120v8c0 4.41602 -3.58398 8 -8 8h-80c-13.248 0 -24 10.752 -24 24c0 4.41602 -3.58398 8 -8 8h-32c-4.41602 0 -8 -3.58398 -8 -8v-176zM48 232c0 -4.41602 3.58398 -8 8 -8h144c4.41602 0 8 3.58398 8 8v112c0 4.41602 -3.58398 8 -8 8h-144
|
||||||
|
c-4.41602 0 -8 -3.58398 -8 -8v-112zM168.48 208h-79.5127c-0.288086 -2.67188 -0.511719 -5.32812 -0.65625 -8h79.9287c0.0556641 2.67969 0.135742 5.33594 0.240234 8zM88.3115 184c0.18457 -3.64844 0.488281 -7.24023 1.0166 -10.7676
|
||||||
|
c21.374 -6.87012 38.7217 -30.666 38.7217 -53.1172c0 -7.06348 -2.49902 -17.957 -5.57812 -24.3154c4.25391 -5.22363 11.7803 -13.1084 16.8008 -17.5996c10.2178 7.67773 28.1807 17.6631 40.0957 22.2881c-5.9248 22.6689 -10.9424 60.082 -11.2002 83.5117h-79.8564z
|
||||||
|
M113.04 82.0244c-0.639648 -0.680664 -1.25586 -1.37598 -1.92773 -2.02441h3.76758c-0.607422 0.679688 -1.24805 1.33594 -1.83984 2.02441zM32 120c0.0263672 -22.0537 17.9463 -39.9736 40 -40c22.0801 0 40 17.9199 40 40s-17.9199 40 -40 40s-40 -17.9199 -40 -40z
|
||||||
|
M128 -32v88c0 4.41602 -3.58398 8 -8 8h-96c-4.41602 0 -8 -3.58398 -8 -8v-88h112zM274.608 44c13.3896 3.13867 33.7256 11.5977 45.3916 18.8799v10.2324c-6.3252 3.94336 -17.0771 9.3877 -24 12.1514c-4.00098 -12.375 -13.585 -30.8613 -21.3916 -41.2637zM336 -32
|
||||||
|
h128v128h-40c-4.41602 0 -8 3.58398 -8 8v40h-80v-176zM432 132.688v-20.6885h20.6885zM328 160h60.5518c1.4082 6.55371 2.8418 17.3057 3.2002 24h-79.9199c-0.254883 -23.3848 -5.24707 -60.7295 -11.1436 -83.3604c5.48828 -2.13867 14.1396 -6.16309 19.3115 -8.9834
|
||||||
|
v60.3438c0 4.41602 3.58398 8 8 8zM391.688 200c-0.144531 2.67188 -0.368164 5.32812 -0.65625 8h-47.0322c-4.41602 0 -8 3.58398 -8 8v78.2637c-8.67383 -6.02539 -23.6729 -14.0957 -33.4805 -18.0156c4.87012 -20.7637 9.04199 -54.9229 9.3125 -76.248h79.8564z
|
||||||
|
M464 224v88c0 4.41602 -3.58398 8 -8 8h-96c-4.41602 0 -8 -3.58398 -8 -8v-88h112zM368 48v16h64v-16h-64zM368 0v16h64v-16h-64z" />
|
||||||
|
<glyph glyph-name="032-developer" unicode=""
|
||||||
|
d="M372.348 165.994c63.3662 0 114.919 -51.6309 114.919 -114.997s-51.5527 -114.997 -114.919 -114.997c-44.4912 -0.0644531 -85.0088 25.5957 -103.972 65.8428h-237.306c-3.5 0.135742 -6.28223 2.98535 -6.33594 6.4873v88.5889
|
||||||
|
c0.106445 35.4697 28.835 64.1953 64.3037 64.2979h37.4902v32.2754c-1.89062 1.62207 -3.67969 3.35938 -5.35449 5.2041c-19.6719 20.0762 -30.6729 47.0752 -30.6328 75.1826v67.4961c-0.0292969 37.8389 20.3115 72.7646 53.2363 91.4121
|
||||||
|
c8.35156 12.3145 23.6289 17.9277 37.9668 13.9482l32.5938 -8.80664c12.2598 -3.33008 25.0859 -4.02246 37.6328 -2.0332l71.1729 11.1895c0.320312 0.0507812 0.645508 0.0761719 0.970703 0.0751953c3.39941 -0.0078125 6.15137 -2.76953 6.14453 -6.16992
|
||||||
|
c0 -15.0176 -3.47559 -29.7881 -9.75684 -41.5898c-4.63965 -9.07422 -11.6143 -16.748 -20.2051 -22.2295v-103.292c0.0898438 -28.0908 -10.8652 -55.0938 -30.5 -75.1826c-1.73535 -1.90625 -3.56738 -3.72363 -5.4873 -5.44434v-32.0352h37.292
|
||||||
|
c8.38281 -0.0126953 16.6787 -1.68066 24.415 -4.9082c14.5977 6.42871 30.3799 9.72852 46.3311 9.68555zM158.911 430.912c-5.60352 -4.32324 -8.84082 -11.0371 -8.7334 -18.1133v-38.1289c-0.00195312 -0.0449219 -0.00390625 -0.0878906 -0.00390625 -0.131836
|
||||||
|
c-0.0205078 -2.5127 2 -4.56641 4.51367 -4.58691c38.8838 0 123.774 12.7812 130.972 13.874c13.8994 4.57715 29.7744 20.2441 32.0146 49.9082l-63.7754 -10.0264c-14.2539 -2.26074 -28.8262 -1.47461 -42.7539 2.30957l-32.5713 8.80664
|
||||||
|
c-1.93945 0.53125 -3.94238 0.801758 -5.9541 0.802734c-4.96582 -0.00488281 -9.78906 -1.66309 -13.708 -4.71387zM137.786 413.747c-22.0215 -17.5723 -34.8643 -44.1992 -34.9072 -72.3711v-2.46777c18.5088 -1.63379 36.3994 4.64746 53.1484 18.71
|
||||||
|
c-0.441406 -0.00585938 -0.908203 -0.00585938 -1.33691 -0.00585938c-0.0371094 0 -0.0751953 0.000976562 -0.112305 0.000976562c-9.33203 0.0878906 -16.8271 7.72461 -16.7393 17.0566v38.127c0 0.317383 -0.0605469 0.633789 -0.0527344 0.950195zM102.879 273.879
|
||||||
|
c-0.0556641 -24.8828 9.66602 -48.792 27.0713 -66.5742c17.6182 -18.0947 40.7393 -28.0605 65.3535 -28.0605s47.8584 9.96387 65.4766 28.0605c17.4346 17.7715 27.1943 41.6777 27.1787 66.5742v97.8223h0.0517578
|
||||||
|
c-3.21387 -0.49707 -68.7471 -10.5176 -113.42 -13.3496c-14.7861 -15.501 -37.2803 -32.0283 -66.2363 -32.0283c-1.84277 0 -3.41895 0.0751953 -5.47559 0.213867v-52.6582zM195.552 166.906c-20.1689 -0.0634766 -39.9004 5.87402 -56.6846 17.0547v-26.1738
|
||||||
|
c32.9023 -26.7959 79.1729 -26.8848 113.104 0.0214844v25.9756c-17.4795 -10.9893 -36.2217 -16.8779 -56.4189 -16.8779zM37.0732 14.1816h226.326c-16.7842 50.1504 2.65137 105.294 47.1719 133.837c-2.95898 0.543945 -5.96094 0.832031 -8.96973 0.859375h-41.5859
|
||||||
|
c-18.4941 -15.335 -41.8369 -23.5986 -65.8613 -23.3145c-23.3096 0.233398 -45.8799 7.8916 -63.8213 23.3145h-41.2949c-28.6582 -0.0947266 -51.8672 -23.2998 -51.9648 -51.959v-82.7373zM372.348 -51.5029v0.00195312
|
||||||
|
c13.2861 -0.000976562 26.4453 2.58008 38.7471 7.59766c52.4551 21.3975 77.6328 81.2646 56.2354 133.72c-21.3975 52.4541 -81.2656 77.6328 -133.72 56.2354s-77.6328 -81.2656 -56.2354 -133.72c0.81543 -0.951172 1.31934 -2.12988 1.44531 -3.37598
|
||||||
|
c16.5977 -36.7715 53.1836 -60.4209 93.5273 -60.459zM351.139 91.7432c2.10547 -2.67871 1.64062 -6.55664 -1.03711 -8.66309l-40.1865 -31.5996l40.1865 -31.6006c2.63867 -2.10352 3.09766 -5.93652 1.0293 -8.60449
|
||||||
|
c-2.08691 -2.69238 -5.96191 -3.18262 -8.65527 -1.09473l-46.3555 36.4502c-0.384766 0.303711 -0.732422 0.651367 -1.03516 1.03613c-2.10547 2.67676 -1.64258 6.55566 1.03516 8.66211l46.3555 36.4502c2.67871 2.10645 6.55664 1.64258 8.66309 -1.03613z
|
||||||
|
M392.147 91.7432c2.10742 2.67871 5.98535 3.14258 8.66406 1.03516l46.3555 -36.4502c0.385742 -0.303711 0.732422 -0.650391 1.03516 -1.03516c2.10547 -2.67773 1.64355 -6.55566 -1.03516 -8.66309l-46.3555 -36.4502
|
||||||
|
c-2.67871 -2.10547 -6.55762 -1.6416 -8.66406 1.03613c-2.10547 2.67871 -1.6416 6.55859 1.03711 8.66406l40.1875 31.6006l-40.1875 31.5996c-2.67871 2.10645 -3.14258 5.98438 -1.03711 8.66309zM380.793 111.646
|
||||||
|
c0.00195312 -0.000976562 0.00292969 -0.000976562 0.00683594 0c3.36816 -0.512695 5.68262 -3.6582 5.1709 -7.02734l-16.4521 -108.717c-0.510742 -3.37012 -3.65527 -5.68652 -7.02441 -5.17578c-3.36914 0.511719 -5.68652 3.65625 -5.1748 7.02539l16.4512 108.717
|
||||||
|
c0.509766 3.36914 3.6543 5.6875 7.02246 5.17773zM190.195 290.413v0.00195312c-1.50391 -15.5869 -12.6143 -28.5605 -27.7842 -32.4434c-19.8896 -5.09082 -40.1406 6.90625 -45.2314 26.7959s6.90527 40.1406 26.7959 45.2314
|
||||||
|
c19.8896 5.08984 40.1406 -6.90625 45.2305 -26.7959c4.00391 1.08105 8.22363 1.08105 12.2275 0c3.88086 15.1514 16.8379 26.2461 32.4043 27.752c20.417 1.97363 38.5674 -12.9775 40.542 -33.3936s-12.9775 -38.5674 -33.3936 -40.542
|
||||||
|
c-20.416 -1.97363 -38.5674 12.9775 -40.541 33.3936c-3.21094 1.67871 -7.04004 1.67871 -10.25 0zM237.429 318.792v-0.00390625c-13.7002 -0.015625 -24.8018 -11.1172 -24.8193 -24.8174c0.000976562 -13.708 11.1133 -24.8203 24.8213 -24.8193
|
||||||
|
c13.708 0.00195312 24.8203 11.1133 24.8193 24.8213c-0.000976562 13.709 -11.1133 24.8203 -24.8213 24.8193zM128.392 293.971v-0.00390625c0.0185547 -13.6992 11.1201 -24.7998 24.8193 -24.8154h0.00195312c13.708 0.00195312 24.8203 11.1133 24.8193 24.8213
|
||||||
|
c-0.000976562 13.709 -11.1133 24.8203 -24.8213 24.8193c-13.709 -0.000976562 -24.8203 -11.1133 -24.8193 -24.8213z" />
|
||||||
|
<glyph glyph-name="017-clock-1" unicode=""
|
||||||
|
d="M379.871 55.1465c4.77441 0 8.09375 -8.17969 4.14062 -13.8311c-1.17383 -1.67188 -2.50879 -2.50879 -4.00781 -2.50879h-50.0117c-3.20898 0 -8.00781 2.36328 -8.00781 5.90527v13.9727c0 17.0605 24.7793 30.4736 28.5752 33.7383
|
||||||
|
c11.2139 8.37207 22.1445 20.2578 12.8965 30.9199c-4.37598 5.03711 -14.1953 5.19336 -19.2373 0.65332c-2.40234 -2.16406 -3.60449 -5.41309 -3.60449 -9.7373c0 -4.29785 -4.52832 -7.08105 -9.58887 -7.08105c-5.5498 0 -8.3252 3.34277 -8.3252 10.0312
|
||||||
|
c0 16.4736 14.8691 26.376 30.5996 26.376c16.9863 0 32.1797 -10.7939 32.1797 -28.6221c0 -24.916 -27.7734 -35.2725 -40.9004 -47.8242c-3.11914 -2.98633 -4.68066 -5.82715 -4.68066 -8.52441v-3.46777h39.9727zM379.871 55.1465zM445.534 78.9395
|
||||||
|
c5.46777 -0.442383 8.62988 1.2793 11.0371 -2.43066c3.6875 -5.68262 0.34082 -13.9062 -4.29688 -13.9062h-6.74023v-17.6592c0 -8.2666 -18.6299 -8.05078 -18.6299 0v17.6592h-34.4033c-5.44434 0 -7.82812 5.26074 -5.30371 9.90625l33.9688 66.2432
|
||||||
|
c4.6543 9.81152 20.3018 2.87207 16.4854 -4.77148l-27.5225 -55.041h16.7715v15.7725c0 8.24316 18.6338 8.27832 18.6338 0v-15.7725zM445.534 78.9395zM237.554 253.729c14.5557 -4.32422 25.2061 -17.8193 25.2061 -33.7646
|
||||||
|
c0 -19.4209 -15.8008 -35.2217 -35.2256 -35.2217c-15.9414 0 -29.4365 10.6465 -33.7646 25.2061h-48.4893c-5.53516 0 -10.0195 4.48535 -10.0195 10.0156c0 5.53418 4.48438 10.0195 10.0195 10.0195h48.4893c3.38086 11.3779 12.3672 20.3643 23.7451 23.7451v91.0303
|
||||||
|
c0 5.53027 4.48535 10.0195 10.0195 10.0195s10.0195 -4.48926 10.0195 -10.0195v-91.0303zM227.534 204.779c8.37207 0 15.1855 6.81348 15.1855 15.1855c0 8.37598 -6.81348 15.1855 -15.1855 15.1855c-8.37598 0 -15.1855 -6.80957 -15.1855 -15.1855
|
||||||
|
c0 -8.37207 6.81348 -15.1855 15.1855 -15.1855zM227.534 204.779zM328.998 178.403c0 -4.67773 -3.26074 -8.8418 -8.0625 -9.82031c-5.30762 -1.07617 -10.6494 2.3252 -11.7734 7.86719c-1.08008 5.38574 2.38379 10.6689 7.86328 11.7842
|
||||||
|
c6.05469 1.20996 11.9727 -3.4043 11.9727 -9.83105zM328.998 178.403zM508.807 113.612c17.8662 -68.0938 -22.9941 -138.023 -91.0889 -155.891c-48.9746 -12.8486 -99.8428 4.5957 -131.057 42.4971c-145.792 -39.1504 -286.661 71.2295 -286.661 219.746
|
||||||
|
c0 125.769 101.785 227.534 227.534 227.534c125.77 0 227.53 -101.781 227.53 -227.534c0 -10.1602 -0.696289 -20.3916 -2.05859 -30.5127c27.7217 -17.3037 47.4717 -44.0938 55.8008 -75.8398zM412.634 -22.8965c57.4053 15.0605 91.8516 74.0195 76.791 131.425
|
||||||
|
c-13.9883 53.3154 -65.1426 86.1992 -117.691 79.4561c-11.7568 -1.51855 -22.8096 -7.54199 -25.9639 4.48145c-1.40918 5.36621 1.80371 10.834 7.14648 12.2344c-0.473633 -0.121094 14.2891 4.24707 32.7471 4.22363c0.254883 3.6748 0.379883 7.36621 0.379883 11.041
|
||||||
|
c0 22.665 -4.68066 44.5479 -13.9102 65.0332c-2.27344 5.04883 -0.0234375 10.9785 5.02148 13.2529c5.04102 2.26953 10.9746 0.0234375 13.249 -5.02246c10.4033 -23.0918 15.6787 -47.7412 15.6787 -73.2637c0 -4.21094 -0.164062 -8.43457 -0.458008 -12.6416
|
||||||
|
c9.6875 -1.56152 19.1943 -4.2666 28.3721 -8.07031c0.68457 6.89551 1.0332 13.8232 1.0332 20.7119c0 114.415 -93.084 207.495 -207.495 207.495c-114.415 0 -207.495 -93.0801 -207.495 -207.495c0 -132.811 123.996 -232.329 254.423 -202.152
|
||||||
|
c-4.55957 7.98438 -8.68457 17.4199 -11.5537 27.1348c-110.563 -22.2314 -213.922 62.4189 -213.922 175.018c0 98.4541 80.0977 178.552 178.548 178.552c45.5615 0 87.0762 -17.0645 118.45 -44.9512l0.833984 9.21387c0.500977 5.51074 5.37305 9.58105 10.8838 9.07617
|
||||||
|
c5.51074 -0.49707 9.57422 -5.37012 9.07324 -10.8809l-3.09668 -34.2354c-0.473633 -5.20117 -4.83691 -9.11914 -9.96875 -9.11914c-0.758789 0 1.18652 -0.121094 -35.0957 2.86133c-5.51465 0.454102 -9.61621 5.2959 -9.1582 10.8105
|
||||||
|
c0.454102 5.51074 5.2959 9.62012 10.8066 9.1582l11.3809 -0.939453c-28.8213 25.2285 -65.2441 38.9668 -104.109 38.9668c-87.4053 0 -158.513 -71.1074 -158.513 -158.513c0 -99.3076 91.0645 -175.115 189.714 -155.433
|
||||||
|
c-4.48926 33.6318 4.61523 66.8496 24.4893 93.3467c5.91406 7.88672 18.5088 3.33398 18.0234 -6.5166c-0.214844 -4.35254 -2.23438 -5.2334 -6.91895 -12.6543c-23.2256 -36.9502 -21.9141 -83.5107 2.43066 -118.673
|
||||||
|
c0.113281 -0.167969 0.230469 -0.333008 0.34375 -0.49707c25.1113 -35.8398 70.791 -54.1758 115.53 -42.4346zM412.634 -22.8965z" />
|
||||||
|
<glyph glyph-name="010-process-1" unicode=""
|
||||||
|
d="M451.5 448c24.8135 0 45 -20.1865 45 -45v-362c0 -3.83301 -1.53223 -7.73828 -4.38184 -10.5938c-0.00488281 -0.00488281 -0.00878906 -0.00976562 -0.0146484 -0.015625l-89.9941 -89.9941c-2.8584 -2.8584 -6.76562 -4.39648 -10.6123 -4.39648h-0.00976562h-330.987
|
||||||
|
c-24.8135 0 -45 20.1865 -45 45v422c0 24.8135 20.1865 45 45 45h391zM406.5 -12.7871l38.7871 38.7871h-38.7871v-38.7871zM466.5 56v347c0 8.27148 -6.72852 15 -15 15h-391c-8.27148 0 -15 -6.72852 -15 -15v-422c0 -8.27148 6.72852 -15 15 -15h316v75
|
||||||
|
c0 8.28418 6.71582 15 15 15h75zM372.105 202.607l29.9961 -29.998c5.84375 -5.83984 5.84473 -15.3779 0 -21.2188l-29.9961 -29.998c-2.92871 -2.92969 -6.76855 -4.39355 -10.6064 -4.39355s-7.67676 1.46484 -10.6064 4.39355
|
||||||
|
c-5.85742 5.8584 -5.85742 15.3555 0 21.2139l4.39453 4.39355h-101.367c-6.19238 -17.458 -22.8652 -30 -42.4199 -30s-36.2275 12.542 -42.4199 30h-2.58008c-33.084 0 -60 26.916 -60 60s26.916 60 60 60h92.5801c6.19238 17.458 22.8652 30 42.4199 30
|
||||||
|
s36.2275 -12.542 42.4199 -30h2.58008c16.542 0 30 13.458 30 30s-13.458 30 -30 30h-152.58c-6.19238 -17.458 -22.8652 -30 -42.4199 -30c-24.8135 0 -45 20.1865 -45 45s20.1865 45 45 45c19.5547 0 36.2275 -12.542 42.4199 -30h152.58c33.084 0 60 -26.916 60 -60
|
||||||
|
s-26.916 -60 -60 -60h-2.58008c-6.19238 -17.458 -22.8652 -30 -42.4199 -30s-36.2275 12.542 -42.4199 30h-92.5801c-16.542 0 -30 -13.458 -30 -30s13.458 -30 30 -30h2.58008c6.19238 17.458 22.8652 30 42.4199 30s36.2275 -12.542 42.4199 -30h101.366
|
||||||
|
l-4.39453 4.39355c-5.85742 5.8584 -5.85742 15.3555 0 21.2139c5.8584 5.85742 15.3564 5.85742 21.2139 0zM151.5 327c8.27148 0 15 6.72852 15 15s-6.72852 15 -15 15s-15 -6.72852 -15 -15s6.72852 -15 15 -15zM301.5 267c-8.27148 0 -15 -6.72852 -15 -15
|
||||||
|
s6.72852 -15 15 -15c8.27246 0 15 6.72852 15 15s-6.72852 15 -15 15zM211.5 147c8.27148 0 15 6.72852 15 15s-6.72852 15 -15 15s-15 -6.72852 -15 -15s6.72852 -15 15 -15zM181.5 86c8.28418 0 15 -6.71582 15 -15s-6.71582 -15 -15 -15h-60
|
||||||
|
c-8.28418 0 -15 6.71582 -15 15s6.71582 15 15 15h60zM241.5 26c8.28418 0 15 -6.71582 15 -15s-6.71582 -15 -15 -15h-120c-8.28418 0 -15 6.71582 -15 15s6.71582 15 15 15h120z" />
|
||||||
|
<glyph glyph-name="021-global-1" unicode=""
|
||||||
|
d="M495.466 282.702c10.9707 -28.9521 16.5342 -59.4678 16.5342 -90.7021c0 -68.3799 -26.6289 -132.667 -74.9805 -181.02c-48.3516 -48.3516 -112.64 -74.9805 -181.02 -74.9805s-132.668 26.6289 -181.02 74.9805c-48.3516 48.3525 -74.9805 112.64 -74.9805 181.02
|
||||||
|
s26.6289 132.667 74.9805 181.02c48.3516 48.3516 112.64 74.9805 181.02 74.9805c95.4541 0 182.35 -52.5381 226.775 -137.113c1.92676 -3.66699 0.514648 -8.20117 -3.15234 -10.127c-3.66895 -1.92578 -8.20117 -0.513672 -10.127 3.15234
|
||||||
|
c-6.83008 13.0029 -14.7334 25.1963 -23.5566 36.5059c-13.209 -5.60742 -28.3896 -10.6494 -45.3037 -15.0391c15.1963 -37.666 23.6963 -80.79 24.5449 -125.88h71.6914c-0.81543 26.7939 -5.9873 52.9609 -15.4326 77.8867
|
||||||
|
c-1.46875 3.87305 0.481445 8.20312 4.35449 9.6709c3.87109 1.46875 8.20312 -0.480469 9.67188 -4.35449zM168.5 121.5h175v101.94h-175v-101.94zM295.433 106.5h-78.8652c0.838867 -11.3838 1.80762 -22.0322 2.87988 -31.9756
|
||||||
|
c24.2314 1.28125 48.8945 1.28125 73.1055 0c1.07227 9.94336 2.04004 20.5918 2.87988 31.9756zM255.415 265.821h40.8047c-0.953125 15.124 -2.2041 29.75 -3.72266 43.6494c-12.1006 -0.642578 -24.3076 -0.96875 -36.4971 -0.96875
|
||||||
|
c-12.2051 0 -24.4268 0.326172 -36.5371 0.969727c-1.07129 -9.94238 -2.03711 -20.5889 -2.87598 -31.9717h23.7666c4.96289 0 9.6123 -2.41602 12.4414 -6.46094c0.231445 -0.331055 0.436523 -0.680664 0.612305 -1.0459l2.00781 -4.17285v0.000976562zM343.41 250.819
|
||||||
|
h-80.7783l5.95508 -12.377h74.9131v0v12.2861c0 0.0488281 -0.0419922 0.0908203 -0.0898438 0.0908203zM240.353 262.5h-71.6787c-0.107422 0 -0.144531 -0.0488281 -0.154297 -0.0644531l0.00195312 -3.94434
|
||||||
|
c0.00195312 -0.0576172 0.00878906 -0.113281 0.00878906 -0.170898v-19.8779h83.4102l-11.5742 24.0576h-0.0136719zM201.546 277.5c0.830078 11.3779 1.81738 22.377 2.95508 32.9326c-2.39844 0.181641 -4.79004 0.374023 -7.17383 0.581055
|
||||||
|
c-25.2617 2.28711 -49.167 5.93848 -71.2295 10.8389c-14.6016 -35.5293 -23.3906 -77.4131 -24.2744 -122.353h51.6768v31.4424c0 0.195312 0.0136719 0.388672 0.0292969 0.581055v30.9404c0 8.29102 6.79395 15.0361 15.1455 15.0361h32.8711zM153.5 184.5h-51.6768
|
||||||
|
c0.883789 -44.9395 9.67285 -86.8232 24.2744 -122.353c22.0693 4.90137 45.9697 8.55273 71.2012 10.8359c2.38965 0.207031 4.78418 0.400391 7.18652 0.582031c-1.13965 10.5566 -2.12695 21.5566 -2.95801 32.9346h-36.3525c-6.4375 0 -11.6748 5.2373 -11.6748 11.6748
|
||||||
|
v66.3252zM310.473 106.5c-0.831055 -11.3779 -1.81836 -22.3779 -2.95898 -32.9336c2.39258 -0.181641 4.77832 -0.374023 7.15723 -0.580078c25.2617 -2.28711 49.168 -5.93945 71.2295 -10.8389c15.0127 36.3467 23.4189 78.2891 24.2764 122.353h-51.6768v-66.3252
|
||||||
|
c0 -6.4375 -5.2373 -11.6748 -11.6748 -11.6748h-36.3525zM410.175 199.501c-0.883789 44.9395 -9.67285 86.8232 -24.2744 122.353c-22.0693 -4.90137 -45.9697 -8.55273 -71.2012 -10.8359c-2.40039 -0.208008 -4.80859 -0.40332 -7.22266 -0.585938
|
||||||
|
c1.54688 -14.2275 2.8125 -29.1777 3.77148 -44.6113h32.1621c8.32031 0 15.0898 -6.76953 15.0898 -15.0898v-19.7881v-0.00195312v-31.4395h51.6748zM435.878 352.487c-28.0322 31.4707 -63.7158 54.9131 -103.468 68.1553
|
||||||
|
c16.4014 -12.4941 31.2568 -28.8652 44.2559 -48.835c6.61621 -10.1631 12.5957 -21.0332 17.9268 -32.4873c15.3164 3.88379 29.1504 8.29297 41.2852 13.167zM379.699 335.831c-23.792 49.8174 -59.6055 84.834 -100.665 94.4795
|
||||||
|
c5.4082 -9.39355 10.3027 -22.5635 14.7451 -39.6162c4.73438 -18.1768 8.77734 -40.4346 11.9414 -65.3516c2.55957 0.191406 5.1123 0.394531 7.65527 0.614258c23.4453 2.12207 45.7129 5.43945 66.3232 9.87402zM256 433
|
||||||
|
c-7.59473 0 -24.6133 -28.5225 -34.7881 -108.592c23.0205 -1.18359 46.4736 -1.18555 69.5146 -0.00195312c-3.05957 23.8662 -6.93945 45.1416 -11.4629 62.5068c-9.47754 36.3799 -19.082 46.0869 -23.2637 46.0869zM219.205 394.37
|
||||||
|
c4.18457 15.2891 8.75879 27.2363 13.7695 35.9434c-41.0635 -9.64355 -76.8799 -44.6621 -100.675 -94.4824c20.6035 -4.43262 42.8779 -7.75098 66.3516 -9.87598c2.52344 -0.217773 5.05762 -0.419922 7.59766 -0.609375
|
||||||
|
c3.36426 26.5791 7.73242 49.9404 12.9561 69.0244zM85.5859 362.413c-3.24023 -3.24023 -6.36523 -6.56543 -9.39551 -9.95312c12.1152 -4.86328 25.9248 -9.26172 41.2168 -13.1396c5.33105 11.4541 11.3105 22.3242 17.9268 32.4873
|
||||||
|
c13.0283 20.0146 27.9209 36.4131 44.3662 48.918c-35.0752 -11.6621 -67.2139 -31.415 -94.1143 -58.3125zM66.0791 43.5889c13.2051 5.60449 28.3789 10.6436 45.2852 15.0312c-15.1963 37.666 -23.6963 80.79 -24.5449 125.88h-22.7363c-4.14258 0 -7.5 3.3584 -7.5 7.5
|
||||||
|
s3.35742 7.5 7.5 7.5h22.7363c0.848633 45.0898 9.34863 88.2139 24.5449 125.881c-16.9111 4.39062 -32.083 9.42773 -45.2852 15.0312c-31.5928 -40.2627 -49.3809 -89.1904 -50.9521 -140.912h16.79c4.14258 0 7.5 -3.3584 7.5 -7.5s-3.35742 -7.5 -7.5 -7.5h-16.79
|
||||||
|
c1.57129 -51.7217 19.3604 -100.649 50.9521 -140.911zM85.5879 21.5879c26.8994 -26.8975 59.0381 -46.6494 94.1133 -58.3125c-16.4453 12.5049 -31.3379 28.9033 -44.3662 48.918c-6.61621 10.1631 -12.5957 21.0332 -17.9268 32.4873
|
||||||
|
c-15.2881 -3.87695 -29.0996 -8.27637 -41.2168 -13.1396c3.03027 -3.3877 6.15527 -6.71289 9.39648 -9.95312zM132.3 48.167c23.7939 -49.8174 59.6074 -84.835 100.669 -94.4805c-5.0127 8.70996 -9.58789 20.6562 -13.7734 35.9463
|
||||||
|
c-5.22559 19.082 -9.5957 42.4424 -12.9609 69.0195c-2.54492 -0.189453 -5.08301 -0.391602 -7.61133 -0.610352c-23.4443 -2.12305 -45.7119 -5.43945 -66.3232 -9.875zM256 -49c7.59473 0 24.6182 28.5225 34.8027 108.592
|
||||||
|
c-23.0498 1.18555 -46.5342 1.18652 -69.6045 -0.000976562c10.1836 -80.0684 27.207 -108.591 34.8018 -108.591zM426.414 21.5879c3.24023 3.24023 6.36523 6.56543 9.39551 9.95312c-12.1113 4.86035 -25.916 9.25781 -41.2002 13.1348
|
||||||
|
c-5.55859 -11.9375 -11.8311 -23.2363 -18.7871 -33.7725c-2.28418 -3.45605 -6.93457 -4.40918 -10.3916 -2.12598c-3.45703 2.28125 -4.4082 6.93359 -2.12695 10.3906c5.99902 9.08594 11.4551 18.79 16.3623 29.0068
|
||||||
|
c-20.5938 4.43066 -42.8574 7.74512 -66.3174 9.86914c-2.51855 0.217773 -5.04785 0.418945 -7.58301 0.608398c-3.36523 -26.5771 -7.73535 -49.9375 -12.9609 -69.0195c-4.18457 -15.2871 -8.75977 -27.2334 -13.7715 -35.9414
|
||||||
|
c23.9531 5.63184 46.6768 20.0439 66.6982 42.5166c2.75391 3.09082 7.49414 3.36621 10.5889 0.611328c3.0918 -2.75586 3.36523 -7.49707 0.609375 -10.5889c-7.80176 -8.75781 -16.0059 -16.4023 -24.5352 -22.9238c35.0381 11.667 67.1445 31.4062 94.0195 58.2812z
|
||||||
|
M400.645 58.6162c16.9072 -4.38965 32.0752 -9.42578 45.2754 -15.0283c31.5928 40.2627 49.3818 89.1904 50.9521 140.911h-71.6914c-0.847656 -45.1309 -9.34082 -88.2334 -24.5361 -125.883zM296.576 203.246c5.4209 -1.25 21.9121 -5.05371 21.9248 -16.2656v-0.0107422
|
||||||
|
v-31.29c0 -11.2178 -16.5 -15.0225 -21.9219 -16.2725c-10.9258 -2.51953 -25.3369 -3.90723 -40.5781 -3.90723s-29.6523 1.3877 -40.5781 3.90723c-5.42188 1.25 -21.9219 5.05469 -21.9219 16.2725v31.29v0.0107422c0.0107422 11.2119 16.502 15.0156 21.9229 16.2656
|
||||||
|
c10.9238 2.51855 25.335 3.90723 40.5762 3.90723s29.6523 -1.38867 40.5762 -3.90723zM256 192.153c-21.2275 0 -35.9727 -2.7002 -43.3105 -5.18457c7.33789 -2.4834 22.083 -5.18359 43.3105 -5.18359s35.9727 2.7002 43.3105 5.18359
|
||||||
|
c-7.33789 2.48438 -22.083 5.18457 -43.3105 5.18457zM303.5 157.515v15.0586c-2.7959 -0.926758 -5.33594 -1.51562 -6.92383 -1.88086c-10.9238 -2.51953 -25.335 -3.90723 -40.5762 -3.90723s-29.6523 1.3877 -40.5762 3.90723
|
||||||
|
c-1.58789 0.365234 -4.12793 0.954102 -6.92383 1.88086v-15.0586c4.33887 -2.74023 20.7871 -7.01465 47.5 -7.01465s43.1611 4.27441 47.5 7.01465z" />
|
||||||
|
<glyph glyph-name="011-data-1" unicode=""
|
||||||
|
d="M233.035 225.231v0.00390625h48.1445c7.68262 0 14.4277 2.97363 20.2764 7.14941c-0.355469 -2.25781 -1.35254 -4.27441 -1.35254 -6.63379v-31.5791c-5.84961 4.88477 -13.0742 8.15918 -21.25 8.15918h-43.4785c-7.95996 0 -14.9951 -3.17578 -20.7832 -7.82324
|
||||||
|
c1.78125 3.5625 2.97461 7.44141 2.97461 11.6494v22.9727c4.73438 -2.30664 9.84863 -3.89844 15.4688 -3.89844zM316.76 304.724c2.96387 -7.0127 8.8916 -12.4365 16.1758 -14.8555v-22.9229c-6.06836 -1.72266 -11.7969 -4.30762 -16.5947 -8.23828
|
||||||
|
c0.0400391 0.735352 0.418945 1.36621 0.418945 2.14062v43.876zM312.558 127.95c5.45312 -5.51367 12.6396 -8.83691 20.374 -10.8037v-124.904c0 -27.4561 -22.4434 -49.9424 -49.9414 -49.9424h-233.045c-27.4697 0 -49.9453 22.4863 -49.9453 49.9424v399.525
|
||||||
|
c0 27.46 22.4561 49.9355 49.9453 49.9355h233.048c27.4561 0 49.9219 -22.4756 49.9219 -49.9355v-25.9561c-10.5674 -3.59082 -18.2861 -13.2705 -18.2861 -25.0312v-21.3281c-4.53516 14.4434 -17.5508 25.1484 -33.4688 25.1484h-29.4785
|
||||||
|
c3.62109 4.55859 6.11035 10.0781 6.11035 16.3359v25.6289c0 14.7383 -11.9795 26.7344 -26.7334 26.7344h-25.6064c-14.7344 0 -26.7334 -12 -26.7334 -26.7344v-25.6484c0 -14.7539 11.999 -26.7344 26.7334 -26.7344h2.50684
|
||||||
|
c-6.47754 -6.4375 -10.5156 -15.3613 -10.5156 -25.1816v-48.1533c0 -1.34375 0.636719 -2.50977 0.774414 -3.81055c-2.38574 0.71582 -4.78418 1.5127 -7.40234 1.5127h-25.6289c-14.7344 0 -26.7334 -11.9795 -26.7334 -26.7334v-25.6289
|
||||||
|
c0 -14.7246 11.999 -26.7441 26.7334 -26.7441h25.6289c6.05859 0 11.3525 2.36914 15.8398 5.77148c-2.91895 -4.99316 -5.03613 -10.4443 -5.03613 -16.6338v-43.4551c0 -18.583 15.1201 -33.7461 33.7363 -33.7461h43.4551c18.623 0 33.7471 15.123 33.7471 33.7461
|
||||||
|
v2.82422zM124.124 289.931c0 -13.6982 11.1523 -24.8447 24.8447 -24.8447h20.8223c13.708 0 24.8516 11.1465 24.8516 24.8447v20.8418c0 13.6924 -11.1436 24.835 -24.8516 24.835h-20.8223c-13.6924 0 -24.8447 -11.1465 -24.8447 -24.835v-20.8418zM316.74 158.193
|
||||||
|
v67.5547c0 14.627 11.957 26.583 26.583 26.583h67.5352c14.6045 0 26.5645 -11.9795 26.5645 -26.583v-67.5547c0 -14.6074 -11.96 -26.5645 -26.5645 -26.5645h-67.5352c-14.6465 0 -26.583 11.957 -26.583 26.5645zM155.096 206.157v25.6396
|
||||||
|
c0 5.56152 4.5459 10.0879 10.0879 10.0879h25.6289c5.54883 0 10.0879 -4.5459 10.0879 -10.0879v-25.6396c0 -5.54199 -4.53613 -10.0771 -10.0879 -10.0771h-25.6289c-5.53906 0 -10.0879 4.53516 -10.0879 10.0771zM140.799 289.931v20.8418
|
||||||
|
c0 4.49707 3.66309 8.18945 8.18945 8.18945h20.8223c4.50586 0 8.20898 -3.69238 8.20898 -8.18945v-20.8418c0 -4.50977 -3.70312 -8.18945 -8.20898 -8.18945h-20.8223c-4.52637 0 -8.18945 3.66016 -8.18945 8.18945zM474.767 212.844v20.8447
|
||||||
|
c0 4.50684 3.66309 8.19629 8.19922 8.19629h20.8125c4.5 0 8.22168 -3.68945 8.22168 -8.19629v-20.8447c0 -4.52637 -3.72168 -8.18945 -8.22168 -8.18945h-20.8125c-4.53613 0 -8.19922 3.66309 -8.19922 8.18945zM400.231 370.289v16.3652
|
||||||
|
c0 3.54199 2.88574 6.4375 6.42773 6.4375h16.3555c3.52246 0 6.45117 -2.89941 6.45117 -6.4375v-16.3652c0 -3.54297 -2.92871 -6.4375 -6.45117 -6.4375h-16.3555c-3.54199 0 -6.42773 2.89453 -6.42773 6.4375zM331.305 315.132h-0.0195312v25.6289
|
||||||
|
c0 5.55273 4.55859 10.0879 10.0869 10.0879h25.6299c5.55176 0 10.1104 -4.53516 10.1104 -10.0879v-25.6289c0 -5.54199 -4.55859 -10.0879 -10.1104 -10.0879h-25.6094c-5.54883 0 -10.0879 4.5459 -10.0879 10.0879zM195.361 360.934v25.6318
|
||||||
|
c0 5.54883 4.5459 10.0879 10.0879 10.0879h25.6064c5.55859 0 10.1074 -4.53613 10.1074 -10.0879v-25.6318c0 -5.53906 -4.56543 -10.0879 -10.1074 -10.0879h-25.6064c-5.54199 0 -10.0879 4.54883 -10.0879 10.0879zM424.309 290.277h0.0195312v43.458
|
||||||
|
c0 9.4082 7.67969 17.0908 17.0908 17.0908h43.4385c9.4082 0 17.0908 -7.67969 17.0908 -17.0908v-43.458c0 -9.4209 -7.67969 -17.1035 -17.0908 -17.1035h-43.458c-9.4082 0 -17.0908 7.68262 -17.0908 17.1035zM218.262 125.123v43.458
|
||||||
|
c0 9.42773 7.68262 17.1104 17.0938 17.1104h43.4551c9.43066 0 17.1133 -7.67871 17.1133 -17.1104v-43.458c0 -9.41113 -7.67871 -17.0908 -17.1133 -17.0908h-43.4551c-9.41113 0 -17.0938 7.67676 -17.0938 17.0908zM214.086 260.851h-0.00390625v48.1504
|
||||||
|
c0 10.3887 8.53613 18.9238 18.9531 18.9238h48.1445c10.4082 0 18.9629 -8.53516 18.9629 -18.9238v-48.1504c0 -10.4277 -8.55469 -18.9629 -18.9629 -18.9629h-48.1406c-10.4375 0 -18.9531 8.53516 -18.9531 18.9629z" />
|
||||||
|
<glyph glyph-name="048-smartphone" unicode=""
|
||||||
|
d="M456 312c13.248 0 24 -10.752 24 -24v-240c0 -13.248 -10.752 -24 -24 -24h-80v-48c0 -13.248 -10.752 -24 -24 -24h-224c-13.248 0 -24 10.752 -24 24v48h-80c-13.248 0 -24 10.752 -24 24v240c0 13.248 10.752 24 24 24h80v96c0 13.248 10.752 24 24 24h224
|
||||||
|
c13.248 0 24 -10.752 24 -24v-96h80zM128 416c-4.41602 0 -8 -3.58398 -8 -8v-24h240v24c0 4.41602 -3.58398 8 -8 8h-224zM120 368v-56h240v56h-240zM360 -24v48h-240v-48c0 -4.41602 3.58398 -8 8 -8h224c4.41602 0 8 3.58398 8 8zM464 48v240c0 4.41602 -3.58398 8 -8 8
|
||||||
|
h-432c-4.41602 0 -8 -3.58398 -8 -8v-240c0 -4.41602 3.58398 -8 8 -8h432c4.41602 0 8 3.58398 8 8zM173.664 127.456c31.5195 -1.35254 98.3359 -7.08789 98.3359 -31.4561c0 -31.1035 -107.72 -32 -120 -32s-120 0.896484 -120 32
|
||||||
|
c0 24.3682 66.8164 30.1035 98.3359 31.4561c-14.5518 28.1758 -34.3359 69.8955 -34.3359 88.5439c0 30.9121 25.0879 56 56 56s56 -25.0879 56 -56c0 -18.6484 -19.7842 -60.3682 -34.3359 -88.5439zM152 256c-22.0537 -0.0263672 -39.9736 -17.9463 -40 -40
|
||||||
|
c0 -15.8076 21.8799 -61.6963 40 -95.3838c18.1201 33.6875 40 79.584 40 95.3838c-0.0263672 22.0537 -17.9463 39.9736 -40 40zM152 80c59.2002 0 96.3682 9.75977 103.336 16c-6.0957 5.32812 -36.416 14.4082 -89.9521 15.7275
|
||||||
|
c-3.14355 -5.81543 -5.45605 -9.95996 -6.39941 -11.6396c-1.26562 -2.25391 -4.3916 -4.08398 -6.97656 -4.08398s-5.70996 1.83008 -6.97559 4.08398c-0.952148 1.67969 -3.26465 5.82422 -6.40039 11.6396c-53.5361 -1.32715 -83.8555 -10.3916 -89.9521 -15.7275
|
||||||
|
c6.95215 -6.24023 44.1201 -16 103.32 -16zM176 216c0 -13.248 -10.752 -24 -24 -24s-24 10.752 -24 24s10.752 24 24 24s24 -10.752 24 -24zM144 216c0 -4.41602 3.58398 -8 8 -8s8 3.58398 8 8s-3.58398 8 -8 8s-8 -3.58398 -8 -8zM424 280c13.248 0 24 -10.752 24 -24
|
||||||
|
v-96c0 -13.248 -10.752 -24 -24 -24h-110.704l-46.7676 -15.5918c-0.679688 -0.224609 -1.8125 -0.407227 -2.52832 -0.408203c-4.41309 0.00292969 -7.99414 3.58691 -7.99414 8c0 0.71582 0.183594 1.84863 0.410156 2.52832l15.584 46.7676v78.7041
|
||||||
|
c0 13.248 10.752 24 24 24h128zM432 160v96c0 4.41602 -3.58398 8 -8 8h-128c-4.41602 0 -8 -3.58398 -8 -8v-80v-0.0771484c0 -0.700195 -0.175781 -1.80859 -0.391602 -2.47461l-10.9365 -32.7998l32.7998 10.9434c0.678711 0.225586 1.80859 0.408203 2.52246 0.408203
|
||||||
|
h0.00585938h112c4.41602 0 8 3.58398 8 8zM304 248h16v-16h-16v16zM336 248h48v-16h-48v16zM400 248h16v-16h-16v16zM304 216h16v-16h-16v16zM336 216h48v-16h-48v16zM400 216h16v-16h-16v16zM304 184h16v-16h-16v16zM336 184h48v-16h-48v16zM400 184h16v-16h-16v16z
|
||||||
|
M232 408h16v-16h-16v16z" />
|
||||||
|
<glyph glyph-name="013-data-analytics" unicode=""
|
||||||
|
d="M456 352c13.248 0 24 -10.752 24 -24v-288c0 -13.248 -10.752 -24 -24 -24h-168v-12.6641c0.0078125 -5.21289 1.90039 -13.2295 4.22363 -17.8955l16.7207 -33.4404h-137.889l16.7207 33.4404c2.32324 4.66602 4.21582 12.6826 4.22363 17.8955v12.6641h-168
|
||||||
|
c-13.248 0 -24 10.752 -24 24v288c0 13.248 10.752 24 24 24h80v80h203.312l68.6885 -68.6885v-11.3115h80zM312 404.688v-36.6885h36.6885zM120 416v-304h240v240h-64v64h-176zM277.912 -21.7119c-3.25684 6.5293 -5.90625 17.751 -5.91211 25.0479v12.6641h-64v-12.6641
|
||||||
|
c-0.00585938 -7.29688 -2.65527 -18.5186 -5.91211 -25.0479l-5.14355 -10.2881h86.1113zM464 40v24h-448v-24c0 -4.41602 3.58398 -8 8 -8h432c4.41602 0 8 3.58398 8 8zM16 80h448v248c0 4.41602 -3.58398 8 -8 8h-80v-240h-272v240h-80c-4.41602 0 -8 -3.58398 -8 -8
|
||||||
|
v-248zM192 368c30.877 -0.0351562 55.9648 -25.123 56 -56c0 -30.9121 -25.0879 -56 -56 -56s-56 25.0879 -56 56s25.0879 56 56 56zM231.2 320c-3.5752 17.6699 -21.1074 32.0107 -39.1357 32.0107c-6.65137 0 -16.5469 -2.9873 -22.0889 -6.66699l11.7441 -11.7441
|
||||||
|
c2.68555 1.31348 7.29102 2.38867 10.2803 2.40039c9.32617 -0.0390625 19.4189 -7.20703 22.5283 -16h16.6719zM192 320c-4.41602 0 -8 -3.58398 -8 -8s3.58398 -8 8 -8s8 3.58398 8 8s-3.58398 8 -8 8zM192 272c18.0107 0.0224609 35.5723 14.3584 39.2002 32h-16.6719
|
||||||
|
c-3.10938 -8.82617 -13.2266 -15.9893 -22.584 -15.9893c-13.2178 0 -23.9443 10.7266 -23.9443 23.9443v0.0449219c0.0117188 2.98926 1.08691 7.59473 2.40039 10.2803l-11.7363 11.7441c-3.67871 -5.54199 -6.66406 -15.4375 -6.66406 -22.0889
|
||||||
|
c0 -22.0439 17.8906 -39.9355 39.9355 -39.9355h0.0644531zM264 320v16h80v-16h-80zM264 288v16h80v-16h-80zM200 384v16h80v-16h-80zM136 224v16h80v-16h-80zM136 192v16h80v-16h-80zM136 160v16h80v-16h-80zM248 156.688v-12.6885h96v-16h-112v112h16v-60.6885l24 24
|
||||||
|
l16 -16l42.3438 42.3447l11.3125 -11.3125l-53.6562 -53.6553l-16 16zM136 128v16h80v-16h-80z" />
|
||||||
|
<glyph glyph-name="035-laptop" unicode=""
|
||||||
|
d="M262 369.167c0 -3.31152 -2.68848 -6 -6 -6s-6 2.68848 -6 6v34.9805c0 3.31152 2.68848 6 6 6s6 -2.68848 6 -6v-34.9805zM155.542 369.942c0.979492 1.03027 2.92773 1.86719 4.34961 1.86719c1.32324 0 3.1748 -0.739258 4.13379 -1.65039l25.9199 -24.625
|
||||||
|
c1.03027 -0.979492 1.86719 -2.92871 1.86719 -4.35059c0 -3.31152 -2.68848 -6 -6.00098 -6c-1.32227 0 -3.17383 0.739258 -4.13281 1.65039l-25.9189 24.625c-1.03125 0.979492 -1.86816 2.92871 -1.86816 4.35059c0 1.32227 0.739258 3.17383 1.65039 4.13281z
|
||||||
|
M347.975 370.159c0.958984 0.910156 2.81055 1.64941 4.13281 1.64941c3.3125 0 6 -2.6875 6 -6c0 -1.42188 -0.836914 -3.37012 -1.86719 -4.34961l-25.9189 -24.625c-0.958984 -0.911133 -2.81055 -1.65039 -4.13281 -1.65039c-3.3125 0 -6.00098 2.68848 -6.00098 6
|
||||||
|
c0 1.42188 0.836914 3.37109 1.86719 4.35059zM291 203.814c26 12.8525 42.0078 38.6953 42.0078 66.4355c0.00292969 0.238281 0.00488281 0.624023 0.00488281 0.862305c0 5.00977 -0.972656 13.0234 -2.17188 17.8877h91.1592v-194h-332v194h91.2422
|
||||||
|
c-1.24219 -4.92676 -2.25 -13.0498 -2.25 -18.1309c0 -25.7354 18.8193 -55.6807 42.0078 -66.8428v-51.5518c-0.00390625 -0.0722656 -0.00683594 -0.191406 -0.00683594 -0.263672c0 -2.88379 2.33984 -5.22363 5.22266 -5.22363
|
||||||
|
c0.100586 0 0.261719 0.00585938 0.361328 0.0126953h58.8447c0.0996094 -0.00683594 0.260742 -0.0126953 0.360352 -0.0126953c2.88379 0 5.22461 2.34082 5.22461 5.22461c0 0.0722656 -0.00292969 0.19043 -0.00683594 0.262695v51.3398zM156.4 268
|
||||||
|
c3.31152 0 6 2.68848 6 6s-2.68848 6 -6 6h-36.4004c-3.31152 0 -6 -2.68848 -6 -6s2.68848 -6 6 -6h36.4004zM355.6 280c-3.31152 0 -6 -2.68848 -6 -6s2.68848 -6 6 -6h36.4004c3.31152 0 6 2.68848 6 6s-2.68848 6 -6 6h-36.4004zM301.773 314.44
|
||||||
|
c10.6787 -9.92188 19.3467 -29.8057 19.3467 -44.3828v-0.0917969c0 -24.2656 -15.1201 -46.5889 -38.3379 -56.8682c-2.00879 -0.848633 -3.70312 -3.30664 -3.78223 -5.48535v-7.6123h-46v7.875c-0.0791016 2.21191 -1.80566 4.68457 -3.85547 5.51953
|
||||||
|
c-23.2646 9.93652 -38.3457 32.2295 -38.2578 56.7939c0.115234 13.709 8.07031 32.709 17.7559 42.4111c9.83887 10.0527 29.2207 18.8672 43.2637 19.6768c1.14648 0.0712891 3.01074 0.128906 4.16016 0.128906c14.5635 0 35.04 -8.04883 45.707 -17.9648zM213 24
|
||||||
|
c-0.0849609 -0.00195312 -0.222656 -0.00390625 -0.307617 -0.00390625c-7.5166 0 -13.6514 6.10156 -13.6924 13.6191v10.7002c-0.0263672 3.14062 -2.59766 5.69043 -5.73926 5.69043c-0.0712891 0 -0.188477 -0.00292969 -0.260742 -0.00585938h-147v256.736
|
||||||
|
c0.0625 13.2686 10.8818 24.1387 24.1504 24.2637h148c-6.62305 -4 -12.7422 -8.08691 -18.1309 -13.5869c-4.83105 -5.02637 -11.2715 -14.1709 -14.376 -20.4131h-102.023c-3.31445 0 -5.62012 -3.25293 -5.62012 -6.56738v-205.285
|
||||||
|
c0 -3.31445 2.30566 -6.14746 5.62012 -6.14746h344.759c3.31445 0 5.62012 2.83301 5.62012 6.14746v205.285c0 3.31445 -2.30566 6.56738 -5.62012 6.56738h-101.9c-3.42578 7.05371 -10.8125 17.1729 -16.4863 22.5859
|
||||||
|
c-3.97461 3.76562 -11.1387 8.87891 -15.9922 11.4141h147.853c13.2666 -0.126953 24.085 -10.9971 24.1475 -24.2637v-256.736h-147c-0.0722656 0.00292969 -0.189453 0.00585938 -0.260742 0.00585938c-3.14062 0 -5.71191 -2.54883 -5.73926 -5.68848v-10.7002
|
||||||
|
c-0.0400391 -7.51855 -6.17383 -13.6211 -13.6924 -13.6211c-0.0849609 0 -0.222656 0.00195312 -0.307617 0.00390625h-86zM233 188h46v-29h-46v29zM325 37.6172v4.38281h158v-44.4414c-0.0576172 -13.0059 -10.6611 -23.5615 -23.667 -23.5615
|
||||||
|
c-0.0957031 0 -0.250977 0.00195312 -0.34668 0.00292969h-405.973c-0.0957031 -0.000976562 -0.250977 -0.00292969 -0.34668 -0.00292969c-13.0059 0 -23.6094 10.5557 -23.667 23.5615v44.4414h158v-4.38281c0.0449219 -14.1416 11.5586 -25.6191 25.7002 -25.6191
|
||||||
|
c0.0820312 0 0.216797 0.000976562 0.299805 0.00195312h86c0.0830078 -0.000976562 0.217773 -0.00195312 0.299805 -0.00195312c14.1416 0 25.6553 11.4775 25.7002 25.6191z" />
|
||||||
|
<glyph glyph-name="033-intelligent" unicode=""
|
||||||
|
d="M464 264v-264h16v-24c0 -13.248 -10.752 -24 -24 -24h-432c-13.248 0 -24 10.752 -24 24v24h16v264c0.0263672 22.0537 17.9463 39.9736 40 40h70.9199c15.5898 44.1592 66.25 79.999 113.08 79.999s97.4902 -35.8398 113.08 -79.999h70.9199
|
||||||
|
c22.0537 -0.0263672 39.9736 -17.9463 40 -40zM136.432 273.6v-0.0400391c-0.248047 -2.65137 -0.449219 -6.96484 -0.449219 -9.62793c0 -20.4932 10.5811 -49.959 23.6172 -65.7715c20.7783 -24.3877 38.835 -70.1553 40.3047 -102.16h80.1357
|
||||||
|
c1.20605 31.8564 19.04 77.3418 39.8076 101.528c13.332 15.957 24.1514 45.7832 24.1514 66.5762c0 24.5645 -14.4355 58.25 -32.2227 75.1914c-16.6357 15.8682 -48.7949 28.7471 -71.7842 28.7471c-52.3545 0 -98.749 -42.3105 -103.561 -94.4434zM280 64v16h-80v-16h80z
|
||||||
|
M278.632 48h-77.2637c3.13281 -8.82031 13.2715 -15.9883 22.6318 -16h32c9.36035 0.0117188 19.499 7.17969 22.6318 16zM32 264v-264h416v264c0 13.248 -10.752 24 -24 24h-66.4004c1.3252 -6.55762 2.40039 -17.3096 2.40039 -23.999v-0.000976562
|
||||||
|
c-0.00878906 -23.9883 -12.502 -58.3955 -27.8877 -76.7998c-19.416 -22.5049 -35.5947 -64.8896 -36.1123 -94.6084v-36.5918c-0.0263672 -22.0537 -17.9463 -39.9736 -40 -40h-32c-22.0537 0.0263672 -39.9736 17.9463 -40 40v34.5596
|
||||||
|
c-0.395508 30.5703 -16.8604 74.2236 -36.752 97.4404c-15.0508 18.2549 -27.2646 52.2705 -27.2646 75.9297c0 3.05762 0.229492 8.00977 0.512695 11.0547c0.342773 3.62207 1.22461 9.45312 1.96777 13.0156h-66.4639c-13.248 0 -24 -10.752 -24 -24zM464 -24v8h-448v-8
|
||||||
|
c0 -4.41602 3.58398 -8 8 -8h432c4.41602 0 8 3.58398 8 8zM232 400v32h16v-32h-16zM165.075 377.774l-16.001 27.7119l13.8564 8l16.001 -27.7119zM118.22 325.065l-27.7139 15.9971l7.99805 13.8574l27.7148 -15.998zM381.494 173.068l-27.7129 16.001l8.00098 13.8555
|
||||||
|
l27.7119 -16.001zM72 256v16h32v-16h-32zM376 256v16h32v-16h-32zM98.5137 173.077l-7.99902 13.8574l27.7148 15.9971l7.99902 -13.8564zM361.782 325.078l-8 13.8564l27.7119 16.001l8.00098 -13.8564zM314.93 377.78l-13.8564 8.00098l16.001 27.7119l13.8564 -8z" />
|
||||||
|
<glyph glyph-name="020-24h" unicode=""
|
||||||
|
d="M176.398 2.66016c12.5781 0 22.8125 -10.2344 22.8125 -22.8125s-10.2344 -22.8125 -22.8125 -22.8125s-22.8125 10.2344 -22.8125 22.8125s10.2344 22.8125 22.8125 22.8125zM176.398 -27.7578c4.19141 0 7.60156 3.41016 7.60547 7.60547
|
||||||
|
c0 4.19141 -3.41406 7.60156 -7.60547 7.60156s-7.60156 -3.41016 -7.60156 -7.60156c0 -4.19531 3.41016 -7.60547 7.60156 -7.60547zM176.398 -27.7578zM136.859 396.523c-4.19922 0 -7.60156 3.40234 -7.60156 7.60156s3.40234 7.60547 7.60156 7.60547h79.0781
|
||||||
|
c4.19922 0 7.60547 -3.40625 7.60547 -7.60547s-3.40625 -7.60156 -7.60547 -7.60156h-79.0781zM136.859 396.523zM107.969 396.52c-3.17188 0 -6.10156 2.06641 -7.16016 5.04688c-1.05859 2.98828 -0.125 6.42578 2.33594 8.4375
|
||||||
|
c2.56641 2.09766 6.28125 2.27734 9.03906 0.445312c2.58594 -1.71875 3.88281 -4.96094 3.19531 -7.98828c-0.773438 -3.41797 -3.89453 -5.94141 -7.41016 -5.94141zM107.969 396.52zM463.242 312.684c30.3281 -35.7383 47.0352 -81.2031 47.0352 -128.023
|
||||||
|
s-16.707 -92.2852 -47.0352 -128.023c-28.5859 -33.6797 -67.6055 -56.8984 -110.438 -65.8789v-12.1445c0 -23.4961 -19.1172 -42.6133 -42.6133 -42.6133h-267.59c-23.4922 0 -42.6016 19.1172 -42.6016 42.6133v426.785c0 23.4922 19.1094 42.6016 42.6016 42.6016
|
||||||
|
h267.59c23.4961 0 42.6133 -19.1094 42.6133 -42.6016v-26.8359c42.832 -8.98047 81.8516 -32.1992 110.438 -65.8789zM310.191 -48.793c15.1094 0 27.4023 12.293 27.4023 27.4062v9.57031c-8.41016 -1.08203 -16.9336 -1.63281 -25.4375 -1.63281
|
||||||
|
c-34.3125 0 -67.4375 8.78125 -96.7148 25.2344h-152.074c-18.5938 0 -33.7227 15.125 -33.7227 33.7109v288.414c0 18.5938 15.1289 33.7227 33.7227 33.7227h226.059c18.5938 0 33.7227 -15.1289 33.7227 -33.7227v-69.3398
|
||||||
|
c0 -4.19922 -3.40625 -7.60156 -7.60547 -7.60156s-7.60156 3.40234 -7.60156 7.60156v69.3398c0 10.207 -8.30859 18.5117 -18.5156 18.5117h-226.059c-10.2109 0 -18.5156 -8.30469 -18.5156 -18.5117v-288.414c0 -10.2031 8.30859 -18.5039 18.5156 -18.5039h128.961
|
||||||
|
c-6.0625 4.62891 -11.8945 9.62109 -17.4648 14.9805c-35.25 33.9336 -56.457 78.8789 -60.2031 127.23h-26.1758c-2.71875 0 -5.22656 1.44922 -6.58594 3.80469c-1.35938 2.35156 -1.35938 5.25 0 7.60156l57.6992 99.9414
|
||||||
|
c1.35938 2.35156 3.87109 3.80078 6.58594 3.80078c2.71875 0 5.22656 -1.44922 6.58594 -3.80078l57.6992 -99.9414c1.35938 -2.35156 1.35938 -5.25 0 -7.60156c-1.35547 -2.35547 -3.86719 -3.80469 -6.58203 -3.80469h-24.6758
|
||||||
|
c7.53906 -65.6211 62.2852 -116.246 128.73 -118.309v47.4062c0 4.19922 3.40234 7.60156 7.60156 7.60156s7.60547 -3.40234 7.60547 -7.60156v-47.0234c4.85938 0.398438 9.68359 1.06641 14.4453 1.98828v81.5352c0 4.19922 3.40625 7.60156 7.60547 7.60156
|
||||||
|
s7.60547 -3.40234 7.60547 -7.60156v-77.6406c24.9727 8 47.418 23.4023 63.9531 44.0859c19.1328 23.9375 29.25 52.7812 29.25 83.4141s-10.1133 59.4766 -29.25 83.418c-16.5352 20.6836 -38.9844 36.082 -63.9531 44.082v-63.8086
|
||||||
|
c0 -4.19922 -3.40625 -7.60547 -7.60547 -7.60547s-7.60547 3.40625 -7.60547 7.60547v157.047c0 15.1055 -12.293 27.3945 -27.4023 27.3945h-267.59c-15.1055 0 -27.3945 -12.2891 -27.3945 -27.3945v-426.785c0 -15.1133 12.2891 -27.4062 27.3945 -27.4062h267.59z
|
||||||
|
M451.645 66.4766c28.0039 32.9922 43.4258 74.9648 43.4258 118.184s-15.4219 85.1914 -43.4219 118.184c-25.7031 30.2852 -60.5312 51.418 -98.8438 60.1641v-34.9414c29.6641 -8.42969 56.4141 -26.2031 75.832 -50.4922
|
||||||
|
c21.0117 -26.2852 32.5781 -59.2812 32.5781 -92.9141s-11.5664 -66.6289 -32.5781 -92.9102c-20.6797 -25.875 -49.6836 -44.3516 -81.6602 -52.0234c-11.3281 -2.73047 -23.043 -4.11328 -34.8164 -4.11328c-79.1094 0 -144.473 61.8359 -148.816 140.777
|
||||||
|
c-0.113281 2.08594 0.632812 4.12891 2.07031 5.64453s3.43359 2.375 5.52344 2.375h19.7773l-44.5273 77.1289l-44.5312 -77.1289h20.1719c4.08203 0 7.43359 -3.21875 7.59766 -7.29297c1.92578 -47.1797 21.8086 -91.2852 55.9844 -124.191
|
||||||
|
c34.2773 -32.9961 79.2891 -51.168 126.75 -51.168c10.6445 0 21.3164 0.929688 31.7227 2.75391c41.8086 7.33984 80.0781 29.3438 107.762 61.9648zM451.645 66.4766zM309.34 138.305c3.67969 0 6.90625 -4.22266 6.91016 -9.03516
|
||||||
|
c0 -4.84375 -3.35938 -9.42188 -6.90625 -9.42188h-68.957c-2.01953 0 -4.29297 0.703125 -6.07422 1.88281c-2.03516 1.34766 -3.15625 3.13281 -3.15625 5.01953v18.7891c0 15.9531 16.4336 27.9609 32.3203 39.5742c7.66016 5.59375 15.5742 11.3789 21.3828 17.4609
|
||||||
|
c6.48438 6.78906 9.63672 13.2891 9.63672 19.8633c0 13.8867 -10.7812 20.2109 -20.793 20.2109c-5.61328 0 -10.375 -1.59766 -13.7656 -4.61719c-3.71094 -3.30078 -5.67188 -8.29297 -5.67188 -14.4297c0 -2 -1.06641 -3.97656 -2.92969 -5.42969
|
||||||
|
c-1.43359 -1.11719 -3.99219 -2.44922 -8.04297 -2.44922c-6.34375 0 -9.42578 3.78125 -9.42578 11.5586c0 9.78516 4.25391 18.668 11.9844 25.0117c7.38281 6.05859 17.2773 9.39844 27.8516 9.39844c11.1875 0 21.5703 -3.76172 29.2344 -10.5898
|
||||||
|
c7.96094 -7.09375 12.3438 -17.0664 12.3438 -28.0859c0 -10.7461 -4.16016 -20.5703 -12.7109 -30.0234c-7.45703 -8.23828 -17.2891 -15.1367 -25.9688 -21.2227c-12.9219 -9.0625 -24.0781 -16.8867 -24.0781 -26.2305v-7.23438h56.8164zM309.34 138.305zM316.77 159.289
|
||||||
|
c0 1.4375 0.429688 3.01562 1.17969 4.32422l46.8711 92.3906c2.58984 4.94531 6.76562 5.68359 9.02344 5.68359c4.13672 0 10.3906 -3.21484 10.3906 -8.06641c0 -0.988281 -0.390625 -1.97656 -0.980469 -3.15625l-39.8086 -79.4258h28.1406v26.6016
|
||||||
|
c0 5.09375 5.36719 6.90625 10.3906 6.90625c4.79688 0 10.3945 -1.80859 10.3945 -6.90625v-26.6016h9.36328c2.19922 0 4.04688 -1.06641 5.33594 -3.08594c1.13672 -1.77344 1.76562 -4.16406 1.76562 -6.72656c0 -4.94141 -3.45312 -9.61719 -7.10156 -9.61719h-9.36328
|
||||||
|
v-24.8594c0 -2.11328 -1.14453 -3.89844 -3.30859 -5.16797c-1.87891 -1.10547 -4.46094 -1.73828 -7.08594 -1.73828c-2.73438 0 -5.27344 0.617188 -7.15625 1.73828c-2.11719 1.25781 -3.23438 3.04297 -3.23438 5.16797v24.8594h-47.5234
|
||||||
|
c-4.29297 0 -7.29297 3.16016 -7.29297 7.67969zM316.77 159.289z" />
|
||||||
|
<glyph glyph-name="023-space" unicode=""
|
||||||
|
d="M256 -47.4834c31.8672 0 57.8066 25.9307 57.8066 57.8057h16.5156c0 -40.9756 -33.3389 -74.3223 -74.3223 -74.3223s-74.3223 33.3467 -74.3223 74.3223h16.5156c0 -31.875 25.9395 -57.8057 57.8066 -57.8057zM256 -47.4834zM256 -30.9678
|
||||||
|
c-22.7666 0 -41.29 18.5244 -41.29 41.29h16.5156c0 -13.6572 11.1172 -24.7734 24.7744 -24.7734s24.7744 11.1162 24.7744 24.7734h16.5156c0 -22.7656 -18.5234 -41.29 -41.29 -41.29zM256 -30.9678zM487.226 406.71c13.6572 0 24.7744 -11.1172 24.7744 -24.7744
|
||||||
|
v-214.71c0 -13.6572 -11.1172 -24.7744 -24.7744 -24.7744h-66.0645c-13.6572 0 -24.7744 11.1172 -24.7744 24.7744v59.6172l-49.9189 12.4756c-1.67773 -26.9189 -12.1172 -52.1084 -29.9844 -72.3145l38.6133 -46.3389v-44.2783h-75.4111l-6.08105 -42.5439
|
||||||
|
c-1.24609 -8.70605 -8.81836 -15.2617 -17.6045 -15.2617s-16.3584 6.55566 -17.6045 15.2695l-6.08105 42.5361h-75.4111v44.2783l38.6133 46.3389c-17.8672 20.2061 -28.3066 45.3877 -29.9844 72.3145l-49.9189 -12.4756v-59.6172
|
||||||
|
c0 -13.6572 -11.1172 -24.7744 -24.7744 -24.7744h-66.0645c-13.6572 0 -24.7744 11.1172 -24.7744 24.7744v214.71c0 13.6572 11.1172 24.7744 24.7744 24.7744h66.0645c13.6572 0 24.7744 -11.1172 24.7744 -24.7744v-59.6172l51.8506 -12.9639
|
||||||
|
c4.60059 23.3066 15.9717 44.7344 33.1494 61.9033l2.41895 2.41992h11.6777v16.5156h16.5156v-16.5156h16.5166v26.2939c-9.58887 3.41992 -16.5166 12.5039 -16.5166 23.2539c0 13.6572 11.1172 24.7744 24.7744 24.7744s24.7744 -11.1172 24.7744 -24.7744
|
||||||
|
c0 -10.75 -6.92773 -19.834 -16.5166 -23.2539v-26.2939h16.5166v16.5156h16.5156v-16.5156h11.6777l2.41895 -2.41992c17.1777 -17.1689 28.5488 -38.5967 33.1494 -61.9033l51.8506 12.9639v59.6172c0 13.6572 11.1172 24.7744 24.7744 24.7744h66.0645zM256 431.483
|
||||||
|
c-4.55664 0 -8.25781 -3.70898 -8.25781 -8.25781c0 -4.54785 3.70117 -8.25781 8.25781 -8.25781s8.25781 3.70996 8.25781 8.25781c0 4.54883 -3.70117 8.25781 -8.25781 8.25781zM495.483 381.936c0 4.54785 -3.70117 8.25781 -8.25781 8.25781h-24.7744v-33.0322
|
||||||
|
h33.0322v24.7744zM412.903 291.097v-33.0322h33.0322v33.0322h-33.0322zM412.903 307.613h33.0322v33.0322h-33.0322v-33.0322zM412.903 241.549v-33.0322h33.0322v33.0322h-33.0322zM462.451 241.549v-33.0322h33.0322v33.0322h-33.0322zM462.451 258.064h33.0322v33.0322
|
||||||
|
h-33.0322v-33.0322zM462.451 307.613h33.0322v33.0322h-33.0322v-33.0322zM421.161 390.193c-4.55664 0 -8.25781 -3.70996 -8.25781 -8.25781v-24.7744h33.0322v33.0322h-24.7744zM209.943 357.161c-4.80664 -5.12109 -9.00781 -10.6689 -12.6328 -16.5156h117.379
|
||||||
|
c-3.63281 5.84668 -7.82617 11.3945 -12.6328 16.5156h-92.1133zM99.0967 307.613v33.0322h-33.0322v-33.0322h33.0322zM99.0967 258.064v33.0322h-33.0322v-33.0322h33.0322zM49.5488 307.613v33.0322h-33.0322v-33.0322h33.0322zM49.5488 291.097h-33.0322v-33.0322
|
||||||
|
h33.0322v33.0322zM49.5488 241.549h-33.0322v-33.0322h33.0322v33.0322zM66.0645 241.549v-33.0322h33.0322v33.0322h-33.0322zM99.0967 381.936c0 4.54785 -3.70117 8.25781 -8.25781 8.25781h-24.7744v-33.0322h33.0322v24.7744zM24.7744 390.193
|
||||||
|
c-4.55664 0 -8.25781 -3.70996 -8.25781 -8.25781v-24.7744h33.0322v33.0322h-24.7744zM16.5166 167.226c0 -4.54785 3.70117 -8.25781 8.25781 -8.25781h24.7744v33.0322h-33.0322v-24.7744zM90.8389 158.968c4.55664 0 8.25781 3.70996 8.25781 8.25781v24.7744h-33.0322
|
||||||
|
v-33.0322h24.7744zM115.613 305.294v-61.4268l49.5479 12.3867v29.415c0 2.40332 0.206055 4.77441 0.34668 7.14551zM210.326 158.968l-27.5234 -33.0322h146.415l-27.5322 33.0322h-91.3594zM297.29 175.483v90.8389c0 13.6572 -11.1162 24.7744 -24.7734 24.7744
|
||||||
|
h-33.0332c-13.6572 0 -24.7734 -11.1172 -24.7734 -24.7744v-90.8389h82.5801zM257.246 36.1777l5.74219 40.209h-13.9844l5.74219 -40.209c0.181641 -1.23828 2.32617 -1.23047 2.5 0zM173.419 92.9033h165.162v16.5156h-165.162v-16.5156zM330.322 246.976v38.6934
|
||||||
|
c0 13.3877 -2.50391 26.3799 -7.26562 38.46h-134.105c-4.76953 -12.0801 -7.27344 -25.0801 -7.27344 -38.46v-38.7051c0 -20.3145 5.78223 -39.7178 16.5156 -56.3994v75.7578c0 22.7666 18.5244 41.291 41.29 41.291h33.0332c22.7656 0 41.29 -18.5244 41.29 -41.291
|
||||||
|
v-75.75c10.7334 16.6738 16.5156 36.085 16.5156 56.4033zM346.839 256.254l49.5479 -12.3867v61.4268l-49.8945 -12.4795c0.140625 -2.37891 0.34668 -4.74219 0.34668 -7.14551v-29.415zM412.903 167.226c0 -4.54785 3.70117 -8.25781 8.25781 -8.25781h24.7744v33.0322
|
||||||
|
h-33.0322v-24.7744zM487.226 158.968c4.55664 0 8.25781 3.70996 8.25781 8.25781v24.7744h-33.0322v-33.0322h24.7744zM487.226 158.968zM256 274.581c13.6572 0 24.7744 -11.1172 24.7744 -24.7744s-11.1172 -24.7744 -24.7744 -24.7744
|
||||||
|
s-24.7744 11.1172 -24.7744 24.7744s11.1172 24.7744 24.7744 24.7744zM256 241.549c4.55664 0 8.25781 3.70898 8.25781 8.25781c0 4.54785 -3.70117 8.25781 -8.25781 8.25781s-8.25781 -3.70996 -8.25781 -8.25781c0 -4.54883 3.70117 -8.25781 8.25781 -8.25781z
|
||||||
|
M256 241.549zM231.226 208.517h16.5166v-16.5166h-16.5166v16.5166zM231.226 208.517zM264.258 208.517h16.5166v-16.5166h-16.5166v16.5166zM264.258 208.517z" />
|
||||||
|
<glyph glyph-name="042-bar-chart" unicode=""
|
||||||
|
d="M488.399 -44c5.52246 0 10 -4.47656 10 -10s-4.47754 -10 -10 -10h-464.799c-5.52246 0 -10 4.47656 -10 10s4.47754 10 10 10h23.1162v90.2041c0 14.8223 12.0596 26.8818 26.8818 26.8818h49.0254c14.8223 0 26.8818 -12.0586 26.8818 -26.8818v-90.2041h55.6924
|
||||||
|
v174.175c0 14.8223 12.0586 26.8818 26.8818 26.8818h49.0234c14.8232 0 26.8828 -12.0586 26.8828 -26.8818v-174.175h55.6914v318.464c0 14.8223 12.0596 26.8818 26.8818 26.8818h49.0244c14.8223 0 26.8818 -12.0586 26.8818 -26.8818v-318.464h21.9336zM129.504 -44
|
||||||
|
v90.2041c0 3.79492 -3.08691 6.88184 -6.88184 6.88184h-49.0244c-3.79492 0 -6.88184 -3.08691 -6.88184 -6.88184v-90.2041h62.7881zM287.985 -44v174.175c0 3.79492 -3.08789 6.88184 -6.88281 6.88184h-49.0234c-3.79492 0 -6.88184 -3.08691 -6.88184 -6.88184
|
||||||
|
v-174.175h62.7881zM446.466 -44v318.464c0 3.79492 -3.08691 6.88184 -6.88184 6.88184h-49.0244c-3.79492 0 -6.88184 -3.08691 -6.88184 -6.88184v-318.464h62.7881zM466.442 437.484c0.00683594 -0.162109 0.0234375 -0.321289 0.0234375 -0.484375v-56.9531
|
||||||
|
c0 -5.52246 -4.47656 -10 -10 -10c-5.52246 0 -10 4.47754 -10 10v33.8105l-105.928 -105.928c-3.90625 -3.9043 -10.2383 -3.9043 -14.1436 0l-37.2793 37.2803l-172.698 -172.699c-1.95215 -1.95312 -4.51172 -2.92871 -7.07129 -2.92871
|
||||||
|
c-2.55859 0 -5.11816 0.975586 -7.07031 2.92676c-3.90527 3.90625 -3.90527 10.2383 0 14.1436l179.769 179.77c1.875 1.875 4.41895 2.92871 7.07129 2.92871c2.65137 0 5.19531 -1.05371 7.07031 -2.92871l37.2803 -37.2803l98.8574 98.8584h-37.3574
|
||||||
|
c-5.52246 0 -10 4.47656 -10 10s4.47754 10 10 10h60.5c0.164062 0 0.323242 -0.0166016 0.484375 -0.0244141c2.72852 0.141602 5.50391 -0.819336 7.58789 -2.90332s3.04395 -4.85938 2.9043 -7.58789zM65.6396 144.69c0 5.52246 4.47754 10 10 10
|
||||||
|
c5.52344 0 10 -4.47754 10 -10c0 -5.52344 -4.47656 -10 -10 -10c-5.52246 0 -10 4.47656 -10 10z" />
|
||||||
|
<glyph glyph-name="045-resume" unicode=""
|
||||||
|
d="M414.007 299.25c-5.52148 0 -10 4.47656 -10 10v108.75c0 5.51367 -4.48535 10 -10 10h-364c-5.51367 0 -10 -4.48633 -10 -10v-452c0 -5.51367 4.48633 -10 10 -10h364c5.51465 0 10 4.48633 10 10v73.6719c0 5.52344 4.47852 10 10 10c5.52246 0 10 -4.47656 10 -10
|
||||||
|
v-73.6719c0 -16.542 -13.458 -30 -30 -30h-364c-16.542 0 -30 13.458 -30 30v452c0 16.542 13.458 30 30 30h364c16.542 0 30 -13.458 30 -30v-108.75c0 -5.52344 -4.47754 -10 -10 -10zM212.007 394c50.7295 0 92 -41.2715 92 -92
|
||||||
|
c0 -26.3174 -11.1094 -50.085 -28.8838 -66.8691c-0.333008 -0.354492 -0.6875 -0.692383 -1.07422 -1c-16.3711 -14.9775 -38.1582 -24.1299 -62.043 -24.1299s-45.6719 9.15137 -62.043 24.1299c-0.386719 0.307617 -0.741211 0.644531 -1.07422 1
|
||||||
|
c-17.7715 16.7842 -28.8818 40.5518 -28.8818 66.8691c0 50.7285 41.2715 92 92 92zM212.007 230c16.3291 0 31.3984 5.47168 43.4912 14.668c-8.78906 15.585 -25.1904 25.332 -43.4912 25.332s-34.7021 -9.74707 -43.4912 -25.332
|
||||||
|
c12.0928 -9.19629 27.1621 -14.668 43.4912 -14.668zM196.007 306c0 -8.82227 7.17773 -16 16 -16s16 7.17773 16 16v6.5c0 8.82227 -7.17773 16 -16 16s-16 -7.17773 -16 -16v-6.5zM269.947 259.317c8.8291 11.9521 14.0596 26.7158 14.0596 42.6826
|
||||||
|
c0 39.7012 -32.2988 72 -72 72s-72 -32.2988 -72 -72c0 -15.9668 5.23145 -30.7305 14.0605 -42.6826c7.375 10.9375 17.5957 19.4443 29.4629 24.6963c-4.70996 6.08691 -7.52344 13.7119 -7.52344 21.9863v6.5c0 19.8506 16.1494 36 36 36c19.8516 0 36 -16.1494 36 -36
|
||||||
|
v-6.5c0 -8.27441 -2.8125 -15.8994 -7.52246 -21.9863c11.8662 -5.25195 22.0879 -13.7588 29.4629 -24.6963zM266.007 10c5.52246 0 10 -4.47656 10 -10s-4.47754 -10 -10 -10h-54c-5.52148 0 -10 4.47656 -10 10s4.47852 10 10 10h54zM266.007 66
|
||||||
|
c5.52246 0 10 -4.47656 10 -10s-4.47754 -10 -10 -10h-142c-5.52148 0 -10 4.47656 -10 10s4.47852 10 10 10h142zM266.007 122c5.52246 0 10 -4.47656 10 -10s-4.47754 -10 -10 -10h-142c-5.52148 0 -10 4.47656 -10 10s4.47852 10 10 10h142zM88.3662 175.07
|
||||||
|
c1.86035 -1.86035 2.93066 -4.44043 2.93066 -7.07031s-1.07129 -5.20996 -2.93066 -7.07031c-1.86914 -1.85938 -4.43945 -2.92969 -7.0791 -2.92969c-2.63086 0 -5.2002 1.07031 -7.07031 2.92969c-1.86035 1.86035 -2.92969 4.44043 -2.92969 7.07031
|
||||||
|
s1.07031 5.20996 2.92969 7.07031c1.85938 1.85938 4.43945 2.92969 7.07031 2.92969c2.63965 0 5.21973 -1.07031 7.0791 -2.92969zM88.3662 119.07c1.86035 -1.86035 2.93066 -4.44043 2.93066 -7.07031s-1.07129 -5.20996 -2.93066 -7.07031
|
||||||
|
c-1.86914 -1.85938 -4.43945 -2.92969 -7.0791 -2.92969c-2.63086 0 -5.2002 1.07031 -7.07031 2.92969c-1.86035 1.86035 -2.92969 4.44043 -2.92969 7.07031s1.07031 5.20996 2.92969 7.07031c1.87012 1.85938 4.43945 2.92969 7.07031 2.92969
|
||||||
|
c2.63965 0 5.20996 -1.07031 7.0791 -2.92969zM88.3662 63.0703c1.86035 -1.86035 2.93066 -4.44043 2.93066 -7.07031s-1.07129 -5.20996 -2.93066 -7.07031c-1.85938 -1.85938 -4.43945 -2.92969 -7.0791 -2.92969c-2.63086 0 -5.21094 1.07031 -7.07031 2.92969
|
||||||
|
c-1.86035 1.86035 -2.92969 4.44043 -2.92969 7.07031s1.07031 5.20996 2.92969 7.07031c1.87012 1.85938 4.43945 2.92969 7.07031 2.92969c2.63965 0 5.20996 -1.07031 7.0791 -2.92969zM266.007 178c5.52246 0 10 -4.47656 10 -10s-4.47754 -10 -10 -10h-142
|
||||||
|
c-5.52148 0 -10 4.47656 -10 10s4.47852 10 10 10h142zM491.002 317.68c20.0557 -11.5801 26.9521 -37.3174 15.3721 -57.374l-125.841 -217.963c-0.689453 -1.19434 -1.61914 -2.2334 -2.73047 -3.05176l-64.2842 -47.3438
|
||||||
|
c-1.75488 -1.29297 -3.83887 -1.94824 -5.93066 -1.94824c-1.7207 0 -3.44629 0.444336 -4.99902 1.33984c-3.43945 1.9873 -5.37793 5.82227 -4.9375 9.77051l8.85742 79.3438c0.15332 1.37109 0.588867 2.69629 1.27832 3.89062l125.842 217.963
|
||||||
|
c5.6084 9.71582 14.666 16.665 25.502 19.5693c10.8379 2.90332 22.1562 1.41309 31.8711 -4.19629zM320.063 21.6064l33.5674 24.7217l-28.9414 16.71zM368.213 61.0039l100.985 174.91l-38.1055 22l-100.984 -174.91zM489.054 270.307
|
||||||
|
c2.93848 5.08984 3.71875 11.0186 2.19727 16.6943c-1.52051 5.67578 -5.16113 10.4199 -10.25 13.3584c-5.08789 2.9375 -11.0156 3.71973 -16.6943 2.19727c-5.67578 -1.52051 -10.4199 -5.16016 -13.3574 -10.25l-9.85742 -17.0723l38.1055 -22z" />
|
||||||
|
<glyph glyph-name="012-work" unicode=""
|
||||||
|
d="M469.519 413.48c23.4268 0 42.4814 -19.0527 42.4824 -42.4736v-249.536c0 -23.415 -19.0537 -42.4697 -42.4814 -42.4697h-140.17v-26.377c27 -2.91602 48.1758 -25.583 48.1758 -53.3428v-15.8174c0 -7.14648 -5.79883 -12.9443 -12.9434 -12.9443h-217.163
|
||||||
|
c-7.14551 0 -12.9434 5.79883 -12.9434 12.9443v15.8174c0 27.7607 21.1787 50.4277 48.1758 53.3428v26.377h-140.17c-23.4307 0 -42.4814 19.0547 -42.4814 42.4697v249.536c0 23.4209 19.0508 42.4736 42.4814 42.4736h427.037zM351.638 -0.71875
|
||||||
|
c0 15.4648 -12.5752 28.0361 -28.0371 28.0361h-135.201c-15.4609 0 -28.0371 -12.5713 -28.0371 -28.0361v-2.87305h191.275v2.87305zM477.483 121.471v249.536c0 4.38965 -3.57422 7.95801 -7.96484 7.95801h-427.037c-4.39453 0 -7.96484 -3.56836 -7.96484 -7.95801
|
||||||
|
v-249.536c0 -4.38965 3.57031 -7.9541 7.96484 -7.9541h427.037c4.39062 0 7.96484 3.56445 7.96484 7.9541zM178.338 227.185c4.57422 0 8.27344 -3.69824 8.27344 -8.2666v-48.8926c0 -4.5752 -3.69922 -8.27441 -8.27344 -8.27441h-48.8926
|
||||||
|
c-4.56738 0 -8.2666 3.69922 -8.2666 8.27441v48.8926c0 4.56836 3.69922 8.2666 8.2666 8.2666h48.8926zM281.886 227.185c4.5791 0 8.27734 -3.69824 8.27734 -8.2666v-48.8926c0 -4.5752 -3.69824 -8.27441 -8.27734 -8.27441h-48.8926
|
||||||
|
c-4.56738 0 -8.2666 3.69922 -8.2666 8.27441v48.8926c0 4.56836 3.69922 8.2666 8.2666 8.2666h48.8926zM178.338 330.735c4.57422 0 8.27344 -3.69922 8.27344 -8.26562v-48.8926c0 -4.5752 -3.69922 -8.27832 -8.27344 -8.27832h-48.8926
|
||||||
|
c-4.56738 0 -8.2666 3.70312 -8.2666 8.27832v48.8926c0 4.56641 3.69922 8.26562 8.2666 8.26562h48.8926zM281.886 330.735c4.5791 0 8.27734 -3.69922 8.27734 -8.26562v-48.8926c0 -4.5752 -3.69824 -8.27832 -8.27734 -8.27832h-48.8926
|
||||||
|
c-4.56738 0 -8.2666 3.70312 -8.2666 8.27832v48.8926c0 4.56641 3.69922 8.26562 8.2666 8.26562h48.8926zM385.437 227.185c4.5752 0 8.27344 -3.69824 8.27344 -8.2666v-48.8926c0 -4.5752 -3.69824 -8.27441 -8.27344 -8.27441h-48.8916
|
||||||
|
c-4.56836 0 -8.2666 3.69922 -8.2666 8.27441v48.8926c0 4.56836 3.69824 8.2666 8.2666 8.2666h48.8916z" />
|
||||||
|
<glyph glyph-name="027-online-library" unicode=""
|
||||||
|
d="M507.392 139.796c3.4541 -1.8623 5.2168 -5.82129 4.29199 -9.63379c-0.9375 -3.7832 -4.32129 -6.44531 -8.2168 -6.47852h-14.5752c-7.6416 -6.21289 -11.7627 -15.7754 -11.0254 -25.6006c-0.96582 -10.458 3.8125 -20.625 12.4834 -26.5537
|
||||||
|
c3.44629 -1.87109 5.19629 -5.8252 4.2666 -9.63379c-0.9375 -3.7832 -4.32031 -6.44531 -8.21582 -6.47852h-358.4c-20.6836 -0.0332031 -38.4004 14.7998 -42 35.166c-3.5957 20.3711 7.96289 40.375 27.4082 47.4297c-13.7793 15.0371 -14.7295 37.8086 -2.25391 53.9375
|
||||||
|
h-25.8213c-3.9375 0 -7.36621 2.69531 -8.2959 6.52441c-0.924805 3.8291 0.887695 7.79199 4.3877 9.59668c8.6416 5.94922 13.4004 16.0996 12.4414 26.5449c0.966797 10.4629 -3.8125 20.6299 -12.4824 26.5586c-3.44629 1.87109 -5.19629 5.8252 -4.26758 9.63379
|
||||||
|
c0.9375 3.7832 4.32129 6.44531 8.2168 6.47461h358.4c23.5537 -0.0244141 42.6377 -19.1123 42.667 -42.667c-0.0341797 -9.26172 -3.1084 -18.2539 -8.75488 -25.5996h25.8213c3.99609 0.0458984 7.4873 -2.6875 8.4043 -6.5752
|
||||||
|
c0.912109 -3.8916 -0.992188 -7.89551 -4.5918 -9.6377c-8.5752 -5.9541 -13.2881 -16.0537 -12.3457 -26.4541c-0.970703 -10.4541 3.7959 -20.6162 12.458 -26.5537zM484.013 140.75c-8.19629 16.0879 -8.19629 35.1162 0 51.2002h-287.746v-17.0664h264.533v-17.0674
|
||||||
|
h-264.533v-17.0664h287.746zM162.134 72.4834v51.2002h-8.53418v-51.2002h8.53418zM179.2 191.95h-8.5332v-51.2002h8.5332v51.2002zM409.6 260.217v-51.2002h8.53418v51.2002h-8.53418zM469.333 234.616c0 14.1426 -11.4619 25.6006 -25.5996 25.6006h-8.5332v-51.2002
|
||||||
|
h8.5332c14.1377 0 25.5996 11.4629 25.5996 25.5996zM104.787 260.217c8.19629 -16.083 8.19629 -35.1123 0 -51.2002h287.746v17.0664h-264.533v17.0674h264.533v17.0664h-287.746zM153.6 191.95h-8.5332c-14.1377 0 -25.5996 -11.459 -25.5996 -25.6006
|
||||||
|
c0 -14.1367 11.4619 -25.5996 25.5996 -25.5996h8.5332v51.2002zM102.4 98.083c0 -14.1367 11.4619 -25.5996 25.5996 -25.5996h8.5332v51.2002h-8.5332c-14.1377 0 -25.5996 -11.459 -25.5996 -25.6006zM466.946 72.4834c-8.19629 16.0879 -8.19629 35.1162 0 51.2002
|
||||||
|
h-287.746v-17.0674h264.533v-17.0664h-264.533v-17.0664h287.746zM466.946 72.4834zM358.4 21.2832v17.2129h17.0664v-59.8799c0 -14.1367 -11.4629 -25.5996 -25.6006 -25.5996h-324.267c-14.1367 0 -25.5996 11.4629 -25.5996 25.5996v443.733
|
||||||
|
c0 14.1416 11.4629 25.6006 25.5996 25.6006h324.267c14.1377 0 25.6006 -11.459 25.6006 -25.6006v-128h-17.0664v128c0 4.7168 -3.82129 8.53418 -8.53418 8.53418h-324.267c-4.71191 0 -8.5332 -3.81738 -8.5332 -8.53418v-401.066h341.334zM349.866 -29.917
|
||||||
|
c4.71289 0 8.53418 3.82129 8.53418 8.5332v25.6006h-341.334v-25.6006c0 -4.71191 3.82129 -8.5332 8.5332 -8.5332h324.267zM349.866 -29.917zM179.2 -4.31641h17.0664v-17.0674h-17.0664v17.0674zM179.2 -4.31641zM179.2 354.083h17.0664v-17.0664h-17.0664v17.0664z
|
||||||
|
M179.2 354.083zM213.333 354.083h17.0674v-17.0664h-17.0674v17.0664zM213.333 354.083zM145.066 354.083h17.0674v-17.0664h-17.0674v17.0664zM145.066 354.083z" />
|
||||||
|
<glyph glyph-name="038-computer" unicode=""
|
||||||
|
d="M55.2617 419.238c12.125 0 21.9922 -9.86719 21.9922 -21.9883c0 -12.125 -9.86719 -21.9922 -21.9922 -21.9922s-21.9883 9.86719 -21.9883 21.9922c0 12.1211 9.86328 21.9883 21.9883 21.9883zM55.2617 390.246c3.86328 0 7.00391 3.14062 7.00391 7.00391
|
||||||
|
c0 3.85938 -3.14062 7 -7.00391 7c-3.85938 0 -7.00391 -3.14062 -7.00391 -7c0 -3.86328 3.14453 -7.00391 7.00391 -7.00391zM55.2617 390.246zM111.25 419.238c12.125 0 21.9883 -9.86719 21.9883 -21.9883c0 -12.125 -9.86328 -21.9922 -21.9883 -21.9922
|
||||||
|
s-21.9922 9.86719 -21.9922 21.9922c0 12.1211 9.86719 21.9883 21.9922 21.9883zM111.25 390.246c3.85938 0 7.00391 3.14062 7.00391 7.00391c0 3.85938 -3.14453 7 -7.00391 7c-3.86328 0 -7.00391 -3.14062 -7.00391 -7c0 -3.86328 3.14062 -7.00391 7.00391 -7.00391z
|
||||||
|
M111.25 390.246zM167.234 419.238c12.125 0 21.9922 -9.86719 21.9922 -21.9883c0 -12.125 -9.86719 -21.9922 -21.9922 -21.9922s-21.9883 9.86719 -21.9883 21.9922c0 12.1211 9.86328 21.9883 21.9883 21.9883zM167.234 390.246
|
||||||
|
c3.86328 0 7.00391 3.14062 7.00391 7.00391c0 3.85938 -3.14062 7 -7.00391 7c-3.85938 0 -7.00391 -3.14062 -7.00391 -7c0 -3.86328 3.14453 -7.00391 7.00391 -7.00391zM167.234 390.246zM503.938 300.176c-4.13672 0 -7.49219 3.35547 -7.49219 7.49609v38.3984
|
||||||
|
h-234.234v-250.207h234.234v165.348c0 4.14062 3.35547 7.49609 7.49219 7.49609c4.14062 0 7.49219 -3.35547 7.49219 -7.49609v-208.758c0 -16.4805 -12.1484 -30.1758 -27.9648 -32.5977c-1.63281 -0.253906 -3.30859 -0.382812 -5.01172 -0.382812h-145.809v-26.875
|
||||||
|
h22.625c15.0938 0 27.3711 -12.2773 27.3711 -27.3672v-16.1914c0 -6.88672 -5.60156 -12.4883 -12.4883 -12.4883h-146.621c-4.13672 0 -7.49219 3.35547 -7.49219 7.49609c0 4.13672 3.35547 7.49219 7.49219 7.49219h144.125v13.6914
|
||||||
|
c0 6.82812 -5.55469 12.3828 -12.3828 12.3828h-199.113c-6.82812 0 -12.3828 -5.55469 -12.3828 -12.3828v-13.6914h33.2344c4.13672 0 7.49219 -3.35547 7.49219 -7.49219c0 -4.14062 -3.35547 -7.49609 -7.49219 -7.49609h-35.7344
|
||||||
|
c-6.88672 0 -12.4883 5.60156 -12.4883 12.4883v16.1914c0 15.0898 12.2812 27.3672 27.3711 27.3672h22.625v26.875h-145.805c-1.70312 0 -3.37891 0.128906 -5.01562 0.382812c-15.8125 2.42188 -27.9648 16.1172 -27.9648 32.5977v362.566
|
||||||
|
c0 18.1836 14.7969 32.9805 32.9805 32.9805h446.043c18.1836 0 32.9766 -14.793 32.9766 -32.9766l-0.566406 -107.352c0 -4.14062 -3.35547 -7.49609 -7.49609 -7.49609zM15.5391 346.07v-249.668h231.684v249.668h-231.684zM317.66 -7.40234v26.875h-123.887v-26.875
|
||||||
|
h123.887zM496.445 80.875h-481.457v-28.4219c0 -9.30078 7.09375 -16.9766 16.1562 -17.9023c0.601562 -0.0585938 1.21484 -0.0898438 1.83594 -0.0898438h445.473c0.621094 0 1.23047 0.03125 1.83594 0.0898438c9.0625 0.925781 16.1562 8.60156 16.1562 17.9023v28.4219
|
||||||
|
zM254.719 361.059h241.727v53.9609c0 9.92188 -8.07031 17.9922 -17.9922 17.9922h-444.922c-9.92188 0 -17.9922 -8.07031 -17.9922 -17.9883v-53.9648h239.18zM254.719 361.059zM46.9062 316.207c-4.14062 0 -7.49609 3.35156 -7.49609 7.49219
|
||||||
|
c0 4.13672 3.35547 7.49219 7.49609 7.49219h37.9648c4.13672 0 7.49219 -3.35547 7.49219 -7.49219c0 -4.14062 -3.35547 -7.49219 -7.49219 -7.49219h-37.9648zM46.9062 316.207zM110.848 316.207c-4.14062 0 -7.49219 3.35156 -7.49219 7.49219
|
||||||
|
c0 4.13672 3.35156 7.49219 7.49219 7.49219h17.9844c4.13672 0 7.49219 -3.35547 7.49219 -7.49219c0 -4.14062 -3.35547 -7.49219 -7.49219 -7.49219h-17.9844zM110.848 316.207zM103.852 304.742c4.14062 0 7.49609 -3.35547 7.49609 -7.49609
|
||||||
|
c0 -4.13672 -3.35547 -7.49219 -7.49609 -7.49219h-24.9766c-4.13672 0 -7.49219 3.35547 -7.49219 7.49219c0 4.14062 3.35547 7.49609 7.49219 7.49609h24.9766zM103.852 304.742zM221.746 277.344c4.14062 0 7.49219 -3.35547 7.49219 -7.49219
|
||||||
|
s-3.35156 -7.49219 -7.49219 -7.49219h-24.9766c-4.13672 0 -7.49219 3.35547 -7.49219 7.49219s3.35547 7.49219 7.49219 7.49219h24.9766zM221.746 277.344zM119.34 297.246c0 4.14062 3.35547 7.49609 7.49219 7.49609h59.9453
|
||||||
|
c4.14062 0 7.49609 -3.35547 7.49609 -7.49609c0 -4.13672 -3.35547 -7.49219 -7.49609 -7.49219h-59.9453c-4.13672 0 -7.49219 3.35547 -7.49219 7.49219zM119.34 297.246zM95.3594 269.852c0 4.13672 3.35547 7.49219 7.49609 7.49219h12.9883
|
||||||
|
c4.13672 0 7.49219 -3.35547 7.49219 -7.49219s-3.35547 -7.49219 -7.49219 -7.49219h-12.9883c-4.14062 0 -7.49609 3.35547 -7.49609 7.49219zM95.3594 269.852zM173.789 262.359h-35.9648c-4.14062 0 -7.49609 3.35547 -7.49609 7.49219s3.35547 7.49219 7.49609 7.49219
|
||||||
|
h35.9648c4.14062 0 7.49609 -3.35547 7.49609 -7.49219s-3.35547 -7.49219 -7.49609 -7.49219zM173.789 262.359zM92.3633 172.73c0 -4.13672 -3.35547 -7.49219 -7.49219 -7.49219h-37.9648c-4.14062 0 -7.49609 3.35547 -7.49609 7.49219
|
||||||
|
c0 4.14062 3.35547 7.49219 7.49609 7.49219h37.9648c4.13672 0 7.49219 -3.35156 7.49219 -7.49219zM92.3633 172.73zM110.848 180.223h17.9844c4.13672 0 7.49219 -3.35156 7.49219 -7.49219c0 -4.13672 -3.35547 -7.49219 -7.49219 -7.49219h-17.9844
|
||||||
|
c-4.14062 0 -7.49219 3.35547 -7.49219 7.49219c0 4.14062 3.35156 7.49219 7.49219 7.49219zM110.848 180.223zM111.348 146.281c0 -4.14062 -3.35547 -7.49609 -7.49609 -7.49609h-24.9766c-4.13672 0 -7.49219 3.35547 -7.49219 7.49609
|
||||||
|
c0 4.13672 3.35547 7.49219 7.49219 7.49219h24.9766c4.14062 0 7.49609 -3.35547 7.49609 -7.49219zM111.348 146.281zM115.844 126.375c4.13672 0 7.49219 -3.35156 7.49219 -7.49219c0 -4.13672 -3.35547 -7.49219 -7.49219 -7.49219h-12.9883
|
||||||
|
c-4.14062 0 -7.49609 3.35547 -7.49609 7.49219c0 4.14062 3.35547 7.49219 7.49609 7.49219h12.9883zM115.844 126.375zM221.746 126.375c4.14062 0 7.49219 -3.35156 7.49219 -7.49219c0 -4.13672 -3.35156 -7.49219 -7.49219 -7.49219h-24.9766
|
||||||
|
c-4.13672 0 -7.49219 3.35547 -7.49219 7.49219c0 4.14062 3.35547 7.49219 7.49219 7.49219h24.9766zM221.746 126.375zM194.273 146.281c0 -4.14062 -3.35547 -7.49609 -7.49609 -7.49609h-59.9453c-4.13672 0 -7.49219 3.35547 -7.49219 7.49609
|
||||||
|
c0 4.13672 3.35547 7.49219 7.49219 7.49219h59.9453c4.14062 0 7.49609 -3.35547 7.49609 -7.49219zM194.273 146.281zM173.789 126.375c4.14062 0 7.49609 -3.35156 7.49609 -7.49219c0 -4.13672 -3.35547 -7.49219 -7.49609 -7.49219h-35.9648
|
||||||
|
c-4.14062 0 -7.49609 3.35547 -7.49609 7.49219c0 4.14062 3.35547 7.49219 7.49609 7.49219h35.9648zM173.789 126.375zM46.9062 228.023c-4.14062 0 -7.49609 3.35547 -7.49609 7.49219c0 4.14062 3.35547 7.49219 7.49609 7.49219h20.9805
|
||||||
|
c4.13672 0 7.49219 -3.35156 7.49219 -7.49219c0 -4.13672 -3.35547 -7.49219 -7.49219 -7.49219h-20.9805zM46.9062 228.023zM173.289 235.516c0 -4.13672 -3.35156 -7.49219 -7.49219 -7.49219h-76.9297c-4.13672 0 -7.49219 3.35547 -7.49219 7.49219
|
||||||
|
c0 4.14062 3.35547 7.49219 7.49219 7.49219h76.9297c4.14062 0 7.49219 -3.35156 7.49219 -7.49219zM173.289 235.516zM159.305 209.066c0 -4.14062 -3.35547 -7.49609 -7.49609 -7.49609h-72.9336c-4.13672 0 -7.49219 3.35547 -7.49219 7.49609
|
||||||
|
c0 4.13672 3.35547 7.49219 7.49219 7.49219h72.9336c4.14062 0 7.49609 -3.35547 7.49609 -7.49219zM159.305 209.066zM172.793 201.57c-4.14062 0 -7.49609 3.35547 -7.49609 7.49609c0 4.13672 3.35547 7.49219 7.49609 7.49219h13.9844
|
||||||
|
c4.14062 0 7.49609 -3.35547 7.49609 -7.49219c0 -4.14062 -3.35547 -7.49609 -7.49609 -7.49609h-13.9844zM172.793 201.57zM343.016 158.348c4.14062 0 7.49609 -3.35547 7.49609 -7.49219c0 -4.14062 -3.35547 -7.49219 -7.49609 -7.49219h-47.9531
|
||||||
|
c-4.14062 0 -7.49609 3.35156 -7.49609 7.49219c0 4.13672 3.35547 7.49219 7.49609 7.49219h47.9531zM343.016 158.348zM464.906 158.348c4.14062 0 7.49609 -3.35547 7.49609 -7.49219c0 -4.14062 -3.35547 -7.49219 -7.49609 -7.49219h-94.9141
|
||||||
|
c-4.13672 0 -7.49219 3.35156 -7.49219 7.49219c0 4.13672 3.35547 7.49219 7.49219 7.49219h94.9141zM464.906 158.348zM343.016 129.375c4.14062 0 7.49609 -3.35547 7.49609 -7.49609c0 -4.13672 -3.35547 -7.49219 -7.49609 -7.49219h-47.9531
|
||||||
|
c-4.14062 0 -7.49609 3.35547 -7.49609 7.49219c0 4.14062 3.35547 7.49609 7.49609 7.49609h47.9531zM343.016 129.375zM464.906 129.375c4.14062 0 7.49609 -3.35547 7.49609 -7.49609c0 -4.13672 -3.35547 -7.49219 -7.49609 -7.49219h-94.9141
|
||||||
|
c-4.13672 0 -7.49219 3.35547 -7.49219 7.49219c0 4.14062 3.35547 7.49609 7.49219 7.49609h94.9141zM464.906 129.375zM472.629 311.828v-119.242c0 -10.6758 -8.68359 -19.3633 -19.3594 -19.3633h-146.57c-10.6758 0 -19.3633 8.6875 -19.3633 19.3633v17.75v0.0078125
|
||||||
|
v101.484c0 10.6758 8.6875 19.3633 19.3633 19.3633h146.57c10.6758 0 19.3594 -8.6875 19.3594 -19.3633zM457.645 192.586v14.9062l-37.8477 42.6562l-16.9375 -16.9297l3.4375 -3.87109c2.74609 -3.09766 2.46484 -7.83203 -0.632812 -10.5781
|
||||||
|
c-3.09375 -2.74609 -7.83203 -2.46484 -10.5781 0.632812l-37.8789 42.6875l-54.8828 -54.8555v-14.6484c0 -2.41406 1.96094 -4.375 4.375 -4.375h146.57c2.41016 0 4.375 1.96094 4.375 4.375zM457.645 230.074v81.7539c0 2.41406 -1.96094 4.37891 -4.375 4.37891
|
||||||
|
h-146.57c-2.41406 0 -4.375 -1.96484 -4.375 -4.37891v-83.4023l46.6289 46.6094c2.30078 2.30078 5.49219 3.55469 8.74219 3.46484c3.25391 -0.09375 6.35938 -1.54688 8.51953 -3.98438l26.6797 -30.0625l18.6484 18.6367
|
||||||
|
c2.30078 2.30078 5.47266 3.5625 8.74219 3.46875c3.25391 -0.0976562 6.35938 -1.55078 8.51953 -3.98438zM457.645 230.074z" />
|
||||||
|
<glyph glyph-name="040-graphic-design" unicode=""
|
||||||
|
d="M504.843 375.393c9.53516 -9.53418 9.53516 -25.0479 0 -34.583l-160.88 -160.881l118.039 -118.039c0.765625 -0.764648 1.38477 -1.7168 1.77734 -2.72461l37.1074 -95.4336c1.84082 -4.73438 0.710938 -10.1143 -2.87988 -13.707
|
||||||
|
c-2.44922 -2.45117 -5.73047 -3.75977 -9.07324 -3.75977c-1.55762 0 -3.12793 0.28418 -4.63379 0.868164l-95.4775 37.0693c-1.01172 0.391602 -1.96094 1.01074 -2.72852 1.77832l-80.6836 80.6836c-3.08594 3.08691 -3.08594 8.08887 0 11.1758
|
||||||
|
c3.08594 3.08496 8.08887 3.08496 11.1748 0l75.0957 -75.0967l21.1924 21.1904l-249.291 249.291c-3.08594 3.08691 -3.08594 8.08984 0 11.1768c3.08594 3.08496 8.08887 3.08496 11.1748 0l83.3428 -83.3428c0.0800781 -0.0732422 0.165039 -0.141602 0.243164 -0.219727
|
||||||
|
l47.1826 -47.1826c0.0742188 -0.0742188 0.138672 -0.155273 0.209961 -0.232422l118.315 -118.315l21.1914 21.1904l-117.269 117.269c-0.288086 0.217773 -0.568359 0.449219 -0.832031 0.712891c-0.262695 0.262695 -0.494141 0.544922 -0.712891 0.833008
|
||||||
|
l-88.0811 88.0811c-0.00390625 0.00390625 -0.00683594 0.00585938 -0.0107422 0.00976562s-0.00683594 0.00683594 -0.00976562 0.0107422l-83.5791 83.5791l-21.1914 -21.1914l13.1016 -13.1006c3.08594 -3.08691 3.08594 -8.08887 0 -11.1758
|
||||||
|
c-1.54297 -1.54199 -3.56543 -2.31445 -5.58789 -2.31445c-2.02344 0 -4.04492 0.772461 -5.58789 2.31445l-13.1025 13.1016l-21.1904 -21.1904l171.223 -171.224c0.485352 -0.306641 0.947266 -0.666992 1.37012 -1.08984s0.783203 -0.884766 1.08984 -1.37109
|
||||||
|
l15.8135 -15.8135c3.08691 -3.08691 3.08691 -8.08887 0 -11.1758c-3.08594 -3.08594 -8.08887 -3.08594 -11.1748 0l-11.457 11.4561l-160.857 -160.857c-4.61816 -4.61816 -10.7598 -7.16211 -17.291 -7.16211c-6.53223 0 -12.6729 2.54395 -17.291 7.16211
|
||||||
|
l-65.457 65.458c-9.53418 9.53516 -9.53418 25.0479 0 34.583l160.855 160.858l-145.765 145.766c-10.1377 10.1377 -15.7207 23.6172 -15.7207 37.9541c0 14.3379 5.58301 27.8154 15.7217 37.9541c10.1367 10.1377 23.6162 15.7207 37.9531 15.7217
|
||||||
|
c14.3369 0 27.8154 -5.58301 37.9541 -15.7207l145.768 -145.764l14.4512 14.4512c3.08594 3.08496 8.08887 3.08496 11.1748 0c3.08594 -3.08691 3.08594 -8.08887 0 -11.1758l-14.4502 -14.4512l77.6895 -77.6885l15.5264 15.5254l-18.4971 18.4971
|
||||||
|
c-3.08594 3.08691 -3.08594 8.08887 0 11.1758c3.08594 3.08496 8.08887 3.08496 11.1748 0l18.498 -18.498l18.3525 18.3535l-42.0889 42.0889c-3.08594 3.08691 -3.08594 8.08887 0 11.1758c3.08594 3.08594 8.08984 3.08398 11.1748 0l42.0889 -42.0898l18.3535 18.3535
|
||||||
|
l-18.498 18.4961c-3.08594 3.08789 -3.08594 8.08984 0 11.1768c3.08594 3.08496 8.08887 3.08496 11.1748 0l18.498 -18.498l18.3535 18.3525l-18.498 18.4971c-3.08594 3.08691 -3.08594 8.08887 0 11.1758c3.08594 3.08496 8.08887 3.08496 11.1748 0l18.498 -18.498
|
||||||
|
l18.3525 18.3535l-42.0879 42.0879c-3.08594 3.08691 -3.08594 8.08887 0 11.1758c3.08594 3.08496 8.08887 3.08496 11.1748 0l42.0889 -42.0879l16.0645 16.0645c1.63281 1.63281 2.5332 3.80469 2.5332 6.11426c0 2.31152 -0.900391 4.4834 -2.5332 6.11621
|
||||||
|
l-65.458 65.457c-1.63379 1.63379 -3.80566 2.5332 -6.11621 2.5332c-2.30957 0 -4.48145 -0.899414 -6.11621 -2.5332l-123.241 -123.242c-3.08594 -3.08496 -8.08887 -3.08496 -11.1758 0c-3.08594 3.08691 -3.08594 8.08984 0 11.1768l123.243 123.241
|
||||||
|
c9.53418 9.5332 25.0479 9.53418 34.582 0zM256.882 115.195l-77.6895 77.6895l-160.857 -160.857c-3.37207 -3.37207 -3.37207 -8.85938 0 -12.2314l65.457 -65.458c1.63379 -1.63379 3.80566 -2.53418 6.11621 -2.53418c2.30957 0 4.48145 0.900391 6.11621 2.53418
|
||||||
|
l16.0635 16.0645l-42.0889 42.0879c-3.08594 3.08691 -3.08594 8.08887 0 11.1758c3.08594 3.08496 8.08887 3.08496 11.1748 0l42.0889 -42.0889l18.3535 18.3525l-18.498 18.498c-3.08594 3.08691 -3.08594 8.08887 0 11.1758c3.08594 3.08594 8.08887 3.08594 11.1748 0
|
||||||
|
l18.498 -18.4971l18.3525 18.3525l-18.4971 18.4971c-3.08691 3.08691 -3.08691 8.08887 0 11.1758c3.08594 3.08496 8.08887 3.08496 11.1748 0l18.498 -18.498l18.3525 18.3535l-42.0889 42.0889c-3.08594 3.08691 -3.08594 8.08887 0 11.1758
|
||||||
|
c3.08594 3.08496 8.08887 3.08496 11.1748 0l42.0889 -42.0889l18.3535 18.3525l-18.498 18.498c-3.08594 3.08691 -3.08594 8.08887 0 11.1768c3.08594 3.08496 8.08887 3.08496 11.1748 0l18.498 -18.498zM33.4229 361.002l24.9766 -24.9756l53.5576 53.5576
|
||||||
|
l-24.9756 24.9756c-14.7666 14.7676 -38.792 14.7676 -53.5586 0c-14.7656 -14.7656 -14.7656 -38.792 0 -53.5576zM116.798 331.197l26.7744 26.7734l-20.4395 20.4395l-53.5576 -53.5586l20.4385 -20.4385l26.7744 26.7734
|
||||||
|
c0.00195312 0.00195312 0.00292969 0.00390625 0.00488281 0.00585938c0.000976562 0.00195312 0.00292969 0.00292969 0.00488281 0.00488281zM483.703 -35.6807l-30.2627 77.8301l-47.6016 -47.6016z" />
|
||||||
|
<glyph glyph-name="043-analytics" unicode=""
|
||||||
|
d="M501.333 -42.667c5.8877 0 10.667 -4.77832 10.668 -10.666c0 -5.8877 -4.7793 -10.667 -10.667 -10.667h-490.667c-5.8877 0 -10.667 4.7793 -10.667 10.667s4.7793 10.666 10.667 10.666h490.666zM96 85.333c5.8877 0 10.667 -4.77832 10.667 -10.666v-128
|
||||||
|
c0 -5.8877 -4.7793 -10.667 -10.667 -10.667h-64c-5.8877 0 -10.667 4.7793 -10.667 10.666v128c0 5.8877 4.7793 10.667 10.667 10.667h64zM85.333 -42.667h0.000976562v106.667h-42.667v-106.667h42.666zM224 192c5.8877 0 10.667 -4.7793 10.667 -10.667v-234.667
|
||||||
|
c0 -5.8877 -4.7793 -10.667 -10.667 -10.667h-64c-5.8877 0 -10.667 4.7793 -10.667 10.667v234.667c0 5.8877 4.7793 10.667 10.667 10.667h64zM213.333 -42.667v213.334h-42.667v-213.334h42.667zM352 149.333c5.8877 0 10.667 -4.77832 10.667 -10.667v-192
|
||||||
|
c0 -5.8877 -4.7793 -10.667 -10.667 -10.667h-64c-5.8877 0 -10.667 4.7793 -10.667 10.667v192c0 5.8877 4.7793 10.667 10.667 10.667h64zM341.333 -42.667v170.667h-42.667v-170.667h42.667zM480 277.333c5.8877 0 10.667 -4.77832 10.667 -10.667v-320
|
||||||
|
c0 -5.8877 -4.7793 -10.667 -10.667 -10.667h-64c-5.8877 0 -10.667 4.7793 -10.667 10.667v320c0 5.8877 4.7793 10.667 10.667 10.667h64zM469.333 -42.667v298.667h-42.667v-298.667h42.667zM64 256c23.5312 0 42.667 -19.1357 42.667 -42.667
|
||||||
|
s-19.1357 -42.667 -42.667 -42.667s-42.667 19.1357 -42.667 42.667s19.1357 42.667 42.667 42.667zM64 192c11.7764 0 21.333 9.5791 21.333 21.333s-9.55664 21.333 -21.333 21.333s-21.333 -9.57812 -21.333 -21.333c0 -11.7539 9.55664 -21.333 21.333 -21.333z
|
||||||
|
M192 362.667c23.5312 0 42.667 -19.1357 42.667 -42.667s-19.1357 -42.667 -42.667 -42.667s-42.667 19.1357 -42.667 42.667s19.1357 42.667 42.667 42.667zM192 298.667c11.7764 0 21.333 9.57812 21.333 21.333c0 11.7539 -9.55664 21.333 -21.333 21.333
|
||||||
|
s-21.333 -9.57812 -21.333 -21.333c0 -11.7539 9.55664 -21.333 21.333 -21.333zM320 320c23.5312 0 42.667 -19.1357 42.667 -42.667s-19.1357 -42.667 -42.667 -42.667s-42.667 19.1357 -42.667 42.667s19.1357 42.667 42.667 42.667zM320 256
|
||||||
|
c11.7764 0 21.333 9.5791 21.333 21.333s-9.55664 21.333 -21.333 21.333s-21.333 -9.57812 -21.333 -21.333c0 -11.7539 9.55664 -21.333 21.333 -21.333zM448 448c23.5312 0 42.667 -19.1357 42.667 -42.667s-19.1357 -42.667 -42.667 -42.667
|
||||||
|
s-42.667 19.1357 -42.667 42.667s19.1357 42.667 42.667 42.667zM448 384c11.7764 0 21.333 9.5791 21.333 21.333s-9.55664 21.333 -21.333 21.333s-21.333 -9.57812 -21.333 -21.333c0 -11.7539 9.55664 -21.333 21.333 -21.333zM432.939 390.272
|
||||||
|
c4.15918 -4.16016 4.15918 -10.9238 0 -15.083l-82.7734 -82.7734c-2.09082 -2.09082 -4.82227 -3.11523 -7.53125 -3.11523c-2.73047 0 -5.46094 1.0459 -7.55176 3.11523c-4.16016 4.16016 -4.16016 10.9229 0 15.083l82.7734 82.7734
|
||||||
|
c4.15918 4.15918 10.9229 4.15918 15.083 0zM294.208 301.952c5.6748 -1.62109 8.95996 -7.53125 7.33789 -13.1846c-1.34375 -4.69238 -5.61035 -7.74316 -10.2607 -7.74316c-0.959961 0 -1.94238 0.12793 -2.92285 0.404297l-68.5234 19.541
|
||||||
|
c-5.65332 1.62109 -8.9375 7.50879 -7.31641 13.1846c1.59961 5.6748 7.42383 9.00293 13.1621 7.33887zM175.36 306.709c3.69043 -4.6084 2.92285 -11.3057 -1.68555 -14.9971l-80.4268 -64.1279c-1.96289 -1.53613 -4.30957 -2.30371 -6.63477 -2.30371
|
||||||
|
c-3.11426 0 -6.22949 1.36621 -8.34082 4.01074c-3.69141 4.6084 -2.92383 11.3057 1.68457 14.9971l80.4268 64.1279c4.6084 3.64844 11.3076 2.90137 14.9766 -1.70703z" />
|
||||||
|
<glyph glyph-name="016-data-2" unicode=""
|
||||||
|
d="M98.1895 88.5605c54.2002 0 98.1514 17.5859 98.1709 39.2549v-39.2549c0 -21.6748 -43.9521 -39.2598 -98.1709 -39.2598s-98.1699 17.5498 -98.1699 39.2598v39.2549c0 -21.6729 43.9551 -39.2549 98.1699 -39.2549zM98.1895 29.667
|
||||||
|
c54.2002 0 98.1514 17.5625 98.1709 39.2568v-39.2568c0 -21.6943 -43.9521 -39.2578 -98.1709 -39.2578s-98.1699 17.5469 -98.1699 39.2578v39.2568c0 -21.6943 43.9551 -39.2568 98.1699 -39.2568zM413.829 88.5391c54.2285 0 98.1709 17.5879 98.1709 39.2764v-39.2764
|
||||||
|
c0 -21.6885 -43.9424 -39.2383 -98.1709 -39.2383c-54.2275 0 -98.1699 17.5498 -98.1699 39.2383v39.2764c0 -21.6914 43.9424 -39.2764 98.1699 -39.2764zM413.829 29.6289c54.2285 0 98.1709 17.582 98.1709 39.2734v-39.2734
|
||||||
|
c0 -21.6758 -43.9424 -39.2383 -98.1709 -39.2383c-54.2275 0 -98.1699 17.5469 -98.1699 39.2383v39.2734c0 -21.6914 43.9424 -39.2734 98.1699 -39.2734zM423.746 225.569c49.502 -2.00098 88.2539 -18.5234 88.2539 -38.8379v-39.2793
|
||||||
|
c0 -21.6914 -43.9424 -39.2764 -98.1709 -39.2764c-54.2275 0 -98.1699 17.5654 -98.1699 39.2764v39.2764c0 20.2979 38.7549 36.8174 88.2568 38.8408v90.2383l-295.828 0.0410156v-90.2578c49.4824 -2.02246 88.2529 -18.542 88.2529 -38.8594v-39.2578
|
||||||
|
c0 -21.6904 -43.9551 -39.2568 -98.1699 -39.2568c-54.2188 0 -98.1709 17.5498 -98.1709 39.2568v39.2578c0 20.3145 38.7549 36.8369 88.2539 38.8535v100.174c0 2.63672 1.02734 5.17188 2.89355 7.02344c1.86133 1.84082 4.38965 2.89746 7.02344 2.89746
|
||||||
|
l315.658 -0.0419922c5.46094 0 9.91699 -4.44336 9.91699 -9.91309v-100.155zM186.522 186.731c0 11.2305 -30.3867 27.0635 -78.4346 29.0703v-28.8545c0 -5.47949 -4.44336 -9.91602 -9.91699 -9.91602s-9.91699 4.43359 -9.91699 9.91602v28.835
|
||||||
|
c-48.0674 -2.00391 -78.4355 -17.8398 -78.4355 -29.0508c0 -12.0098 34.4043 -29.4395 88.3525 -29.4395s88.3516 17.4326 88.3516 29.4395zM413.829 157.273c53.958 0 88.3525 17.4297 88.3496 29.458c0 11.2109 -30.3867 27.0283 -78.4326 29.0322v-28.8574
|
||||||
|
c0 -5.47656 -4.45605 -9.91406 -9.91699 -9.91406s-9.91309 4.43457 -9.91309 9.91406v28.8574c-48.0674 -2.02637 -78.4355 -17.8369 -78.4355 -29.0322c0 -12.0283 34.3945 -29.458 88.3486 -29.458zM179.917 357.04v9.91992h-36.5732v16.7295h36.5732v9.91699
|
||||||
|
l29.7471 -18.2822zM338.571 357.04v9.91992h-36.5664v16.7295h36.5664v9.91699l29.748 -18.2822zM49.1455 243.011v36.5635h-9.91699l18.292 29.748l18.2812 -29.748h-9.91406v-36.5635h-16.7422zM380.656 243.011h-13.0752v28.5557h-7.74414l14.293 23.2207
|
||||||
|
l14.252 -23.2207h-7.72559v-28.5557zM321.374 296.966v-13.0527h-107.864v-7.74512l-23.2217 14.29l23.2217 14.2646v-7.75684h107.864zM472.435 272.756l-18.2822 -29.7451l-18.2812 29.7451h9.91309v36.5664h16.7363v-36.5664h9.91406zM131.035 294.787h13.0469v-28.5547
|
||||||
|
h7.75391l-14.2812 -23.2217l-14.2734 23.2217h7.75391v28.5547z" />
|
||||||
|
<glyph glyph-name="001-report" unicode=""
|
||||||
|
d="M49.5488 -14.4512h16.5156v-16.5166h-16.5156v16.5166zM49.5488 -14.4512zM82.5811 -14.4512h16.5156v-16.5166h-16.5156v16.5166zM82.5811 -14.4512zM115.613 -14.4512h16.5156v-16.5166h-16.5156v16.5166zM115.613 -14.4512zM396.387 -14.4512h66.0645v-16.5166
|
||||||
|
h-66.0645v16.5166zM396.387 -14.4512zM495.483 18.5811h16.5166v-41.291c0 -22.7656 -18.5244 -41.29 -41.29 -41.29h-429.42c-22.7656 0 -41.29 18.5244 -41.29 41.29v41.291h16.5166v272.516c0 22.7666 18.5234 41.29 41.29 41.29h140.387
|
||||||
|
c0 63.7549 51.8594 115.613 115.613 115.613s115.612 -51.8584 115.612 -115.613h24.7744c22.7666 0 41.29 -18.5234 41.29 -41.29v-272.516zM454.193 315.871h-26.0967c-0.806641 -5.6416 -1.95508 -11.165 -3.54785 -16.5166h21.3867
|
||||||
|
c9.1084 0 16.5156 -7.40723 16.5156 -16.5156v-264.258h16.5166v272.516c0 13.6572 -11.1172 24.7744 -24.7744 24.7744zM219.508 362.733c-3.08887 -9.56836 -4.79785 -19.7578 -4.79785 -30.3467c0 -54.6445 44.4512 -99.0967 99.0967 -99.0967
|
||||||
|
c8.06055 0 15.8545 1.07324 23.3623 2.89941l-30.0117 90.0205zM352.858 241.343c35.2705 15.1855 60.0449 50.2656 60.0449 91.0439c0 24.3555 -8.87109 46.6494 -23.5039 63.9199l-66.1455 -66.1494zM313.807 431.483c-38.21 0 -71.375 -21.7695 -87.8994 -53.5273
|
||||||
|
l85.9756 -35.8145l65.8506 65.8467c-17.2773 14.625 -39.5723 23.4951 -63.9268 23.4951zM33.0322 291.097v-272.516h16.5166v264.258c0 9.1084 7.40723 16.5156 16.5156 16.5156h137c-1.60059 5.35156 -2.74219 10.875 -3.54785 16.5166h-141.71
|
||||||
|
c-13.6572 0 -24.7744 -11.1172 -24.7744 -24.7744zM495.483 -22.71v24.7744h-49.5479v280.774h-27.8311c-18.6045 -38.9961 -58.2939 -66.0645 -104.298 -66.0645s-85.6934 27.0684 -104.299 66.0645h-143.443v-264.258h127.29l2.41211 -2.41992
|
||||||
|
c9.0918 -9.09277 21.1807 -14.0967 34.04 -14.0967h52.3789c12.8672 0 24.9473 5.00391 34.04 14.0967l2.41992 2.41992h110.773v-16.5166h-104.061c-11.875 -10.6777 -27.0684 -16.5156 -43.165 -16.5156h-52.3789c-16.0967 0 -31.29 5.83789 -43.165 16.5156h-170.133
|
||||||
|
v-24.7744c0 -13.6572 11.1162 -24.7734 24.7734 -24.7734h429.42c13.6572 0 24.7734 11.1162 24.7734 24.7734zM495.483 -22.71zM404.646 101.161c13.6572 0 24.7734 -11.1172 24.7734 -24.7744s-11.1162 -24.7734 -24.7734 -24.7734s-24.7744 11.1162 -24.7744 24.7734
|
||||||
|
c0 2.56934 0.503906 5.00488 1.2373 7.34277l-28.8096 21.6016c-3.93164 -2.625 -8.64941 -4.16992 -13.7178 -4.16992c-4.79102 0 -9.22656 1.42773 -13.0166 3.79004l-46.25 -37.0039c0.882812 -2.54395 1.45996 -5.2334 1.45996 -8.07617
|
||||||
|
c0 -13.6572 -11.1172 -24.7744 -24.7744 -24.7744s-24.7744 11.1172 -24.7744 24.7744c0 2.08887 0.338867 4.09668 0.834961 6.03613l-35.6094 23.7422c-4.13672 -3.10547 -9.21777 -5.00391 -14.7734 -5.00391c-5.55664 0 -10.6377 1.89844 -14.7744 5.00391
|
||||||
|
l-35.6094 -23.7422c0.496094 -1.93945 0.834961 -3.93945 0.834961 -6.03613c0 -13.6572 -11.1172 -24.7744 -24.7744 -24.7744s-24.7734 11.1172 -24.7734 24.7744s11.1162 24.7744 24.7734 24.7744c5.55664 0 10.6377 -1.89941 14.7744 -5.00391l35.6094 23.7412
|
||||||
|
c-0.496094 1.93945 -0.834961 3.93945 -0.834961 6.03613c0 13.6572 11.1172 24.7744 24.7744 24.7744s24.7734 -11.1172 24.7734 -24.7744c0 -2.09668 -0.337891 -4.09668 -0.833984 -6.03613l35.6084 -23.7412c4.1377 3.09668 9.21777 5.00391 14.7744 5.00391
|
||||||
|
c4.79004 0 9.22559 -1.42773 13.0166 -3.79102l46.25 37.0039c-0.883789 2.54492 -1.45996 5.23438 -1.45996 8.07715c0 13.6572 11.1172 24.7744 24.7744 24.7744s24.7734 -11.1172 24.7734 -24.7744c0 -2.56836 -0.503906 -5.00391 -1.2373 -7.34277l28.8105 -21.6006
|
||||||
|
c3.93066 2.625 8.64844 4.16895 13.7178 4.16895zM107.354 51.6133c4.54883 0 8.25879 3.70898 8.25879 8.25781c0 4.54785 -3.70996 8.25781 -8.25879 8.25781c-4.54785 0 -8.25781 -3.70996 -8.25781 -8.25781c0 -4.54883 3.70996 -8.25781 8.25781 -8.25781z
|
||||||
|
M181.678 101.161c4.54785 0 8.25781 3.70996 8.25781 8.25781c0 4.54883 -3.70996 8.25879 -8.25781 8.25879c-4.54883 0 -8.25879 -3.70996 -8.25879 -8.25879c0 -4.54785 3.70996 -8.25781 8.25879 -8.25781zM256 51.6133c4.54883 0 8.25781 3.70898 8.25781 8.25781
|
||||||
|
c0 4.54785 -3.70898 8.25781 -8.25781 8.25781s-8.25781 -3.70996 -8.25781 -8.25781c0 -4.54883 3.70898 -8.25781 8.25781 -8.25781zM338.581 117.678c4.54785 0 8.25781 3.70898 8.25781 8.25781c0 4.54785 -3.70996 8.25781 -8.25781 8.25781
|
||||||
|
c-4.54883 0 -8.25879 -3.70996 -8.25879 -8.25781c0 -4.54883 3.70996 -8.25781 8.25879 -8.25781zM404.646 68.1289c4.54785 0 8.25781 3.70996 8.25781 8.25781c0 4.54883 -3.70996 8.25879 -8.25781 8.25879c-4.54883 0 -8.25879 -3.70996 -8.25879 -8.25879
|
||||||
|
c0 -4.54785 3.70996 -8.25781 8.25879 -8.25781zM404.646 68.1289zM214.71 266.322v-115.612h-132.129v115.612h132.129zM198.193 167.226v82.5811h-99.0967v-82.5811h99.0967zM198.193 167.226zM115.613 233.29h66.0645v-16.5156h-66.0645v16.5156zM115.613 233.29z
|
||||||
|
M115.613 200.258h66.0645v-16.5156h-66.0645v16.5156zM115.613 200.258zM231.226 183.742h16.5166v-16.5166h-16.5166v16.5166zM231.226 183.742zM264.258 183.742h165.161v-16.5166h-165.161v16.5166zM264.258 183.742z" />
|
||||||
|
<glyph glyph-name="031-code" unicode=""
|
||||||
|
d="M201.585 323.172c2.04004 -2.69434 1.50879 -6.53223 -1.18652 -8.57227l-46.8145 -35.3984l46.8145 -35.3984c0.0400391 -0.0292969 0.0800781 -0.0605469 0.120117 -0.0908203c2.6709 -2.07129 3.15625 -5.91406 1.08496 -8.58594
|
||||||
|
c-2.07129 -2.6709 -5.91504 -3.15625 -8.58594 -1.08496l-53.2666 40.2803c-0.449219 0.338867 -0.849609 0.739258 -1.18945 1.18848c-2.03906 2.69629 -1.50684 6.53418 1.18945 8.57227l53.2666 40.2803c2.69531 2.03418 6.53027 1.50195 8.56738 -1.19043z
|
||||||
|
M305.615 284.082c0.449219 -0.338867 0.849609 -0.740234 1.19043 -1.18848c2.03809 -2.69629 1.50586 -6.53418 -1.18945 -8.57227l-53.2676 -40.2803c-0.0400391 -0.0302734 -0.0791016 -0.0615234 -0.120117 -0.0908203
|
||||||
|
c-2.72168 -2.00488 -6.55176 -1.42578 -8.55762 1.2959c-2.00488 2.7207 -1.42578 6.55176 1.2959 8.55664l46.8145 35.3984l-46.8145 35.3984c-2.67285 2.03711 -3.20215 5.84668 -1.18652 8.53516c2.02734 2.70508 5.8623 3.25391 8.56738 1.22754zM232.688 344.998
|
||||||
|
c0.00292969 -0.000976562 0.00585938 -0.000976562 0.00976562 -0.000976562c3.34082 -0.510742 5.63574 -3.63281 5.125 -6.97363l-18.1836 -120.142c-0.506836 -3.34277 -3.62695 -5.64062 -6.96875 -5.13379c-3.34277 0.506836 -5.64062 3.62695 -5.13379 6.96973
|
||||||
|
l18.1846 120.146c0.508789 3.33984 3.62598 5.63672 6.9668 5.13379zM481.859 250.133c0.0390625 0 0.0771484 0 0.115234 0.000976562c16.5039 0.0771484 29.9473 -13.2383 30.0254 -29.7422v-234.275c0 -0.0429688 -0.000976562 -0.0859375 -0.000976562 -0.128906
|
||||||
|
c-0.151367 -16.4941 -13.6455 -29.7432 -30.1396 -29.5918h-115.133c-0.0371094 -0.000976562 -0.0722656 -0.000976562 -0.108398 -0.000976562c-16.5029 -0.0888672 -29.9551 13.2168 -30.0449 29.7217v19.0449c-1.07227 -1.88477 -3.12402 -2.99805 -5.28906 -2.86914
|
||||||
|
h-217.206c-3.37988 0 -6.11914 2.73926 -6.11914 6.11914s2.73926 6.12012 6.11914 6.12012h27.4355l15.7012 56.0947h-151.025c-3.37988 0 -6.18945 2.31641 -6.18945 5.69531v345.507c0.000976562 0.0605469 0.00292969 0.123047 0.00585938 0.185547
|
||||||
|
c0.165039 3.24902 2.93457 5.75 6.18359 5.58496h432.981c3.37891 0 6.53418 -2.39062 6.53418 -5.77051v-171.695h36.1543zM348.812 141.946v-117.216h150.948v166.246h-150.948v-49.0303zM499.761 220.389c0 0.0458984 -0.000976562 0.0917969 -0.00195312 0.137695
|
||||||
|
c-0.146484 9.73926 -8.16113 17.5137 -17.8994 17.3672h-115.133c-0.0449219 0 -0.0888672 0.000976562 -0.132812 0.000976562c-9.74414 0.0761719 -17.7041 -7.76172 -17.7812 -17.5059v-17.1729h150.948v17.1729zM12.2393 415.359v-261.1h324.334v66.1289
|
||||||
|
c0.00195312 0.0332031 0.00195312 0.0683594 0.00195312 0.101562c0.140625 16.5127 13.6396 29.7832 30.1514 29.6426h66.7393v165.227h-421.227zM12.2393 142.021v-59.1553h324.334v59.1553h-324.334zM169.926 70.626l-15.7002 -56.0947h136.909l-15.6992 56.0947h-105.51
|
||||||
|
zM331.284 14.5312c2.26953 -0.125977 4.29297 -1.46777 5.28906 -3.50977v59.6045h-48.4258l15.7012 -56.0947h27.4355zM481.859 -31.3652c0.0507812 -0.000976562 0.102539 -0.00195312 0.154297 -0.00195312c9.72852 -0.0732422 17.6738 7.75391 17.7471 17.4834v26.375
|
||||||
|
h-150.948v-26.375c0.000976562 -0.0478516 0.000976562 -0.0966797 0.00195312 -0.144531c0.158203 -9.7334 8.17773 -17.4961 17.9121 -17.3369h115.133zM403.914 216.475c-3.37988 0 -6.12012 2.74023 -6.12012 6.12012s2.74023 6.11914 6.12012 6.11914h40.7578
|
||||||
|
c3.37988 0 6.12012 -2.73926 6.12012 -6.11914s-2.74023 -6.12012 -6.12012 -6.12012h-40.7578zM424.293 9.04395c10.3047 -0.00976562 18.6553 -8.36035 18.6641 -18.665c0 -10.3086 -8.35547 -18.6641 -18.6641 -18.6641s-18.6641 8.35547 -18.6641 18.6641
|
||||||
|
s8.35547 18.665 18.6641 18.665zM424.293 -16.0381c3.54785 0 6.42578 2.87598 6.42578 6.42578c0 3.54785 -2.87793 6.4248 -6.42578 6.4248s-6.42578 -2.87695 -6.42578 -6.4248c0 -3.54883 2.87793 -6.42578 6.42578 -6.42578zM394.018 162.419
|
||||||
|
c-3.37988 0 -6.11914 2.74023 -6.11914 6.12012s2.73926 6.11914 6.11914 6.11914h93.4082c3.37988 0 6.12012 -2.73926 6.12012 -6.11914s-2.74023 -6.12012 -6.12012 -6.12012h-93.4082zM487.426 145.081c3.37988 0 6.12012 -2.74023 6.12012 -6.12012
|
||||||
|
s-2.74023 -6.11914 -6.12012 -6.11914h-93.4082c-3.37988 0 -6.11914 2.73926 -6.11914 6.11914s2.73926 6.12012 6.11914 6.12012h93.4082zM487.426 114.483c3.37988 0 6.12012 -2.74023 6.12012 -6.12012s-2.74023 -6.11914 -6.12012 -6.11914h-93.4082
|
||||||
|
c-3.37988 0 -6.11914 2.73926 -6.11914 6.11914s2.73926 6.12012 6.11914 6.12012h93.4082zM487.426 83.8857c3.37988 0 6.12012 -2.74023 6.12012 -6.12012s-2.74023 -6.11914 -6.12012 -6.11914h-93.4082c-3.37988 0 -6.11914 2.73926 -6.11914 6.11914
|
||||||
|
s2.73926 6.12012 6.11914 6.12012h93.4082zM487.426 53.2881c3.37988 0 6.12012 -2.74023 6.12012 -6.12012s-2.74023 -6.11914 -6.12012 -6.11914h-93.4082c-3.37988 0 -6.11914 2.73926 -6.11914 6.11914s2.73926 6.12012 6.11914 6.12012h93.4082zM374.813 174.658
|
||||||
|
c3.37988 0 6.11914 -2.73926 6.11914 -6.11914s-2.73926 -6.12012 -6.11914 -6.12012h-13.6533c-3.37988 0 -6.12012 2.74023 -6.12012 6.12012s2.74023 6.11914 6.12012 6.11914h13.6533zM374.813 145.081c3.37988 0 6.11914 -2.74023 6.11914 -6.12012
|
||||||
|
s-2.73926 -6.11914 -6.11914 -6.11914h-13.6533c-3.37988 0 -6.12012 2.73926 -6.12012 6.11914s2.74023 6.12012 6.12012 6.12012h13.6533zM374.813 114.483c3.37988 0 6.11914 -2.74023 6.11914 -6.12012s-2.73926 -6.11914 -6.11914 -6.11914h-13.6533
|
||||||
|
c-3.37988 0 -6.12012 2.73926 -6.12012 6.11914s2.74023 6.12012 6.12012 6.12012h13.6533zM374.813 83.8857c3.37988 0 6.11914 -2.74023 6.11914 -6.12012s-2.73926 -6.11914 -6.11914 -6.11914h-13.6533c-3.37988 0 -6.12012 2.73926 -6.12012 6.11914
|
||||||
|
s2.74023 6.12012 6.12012 6.12012h13.6533zM374.813 53.2881c3.37988 0 6.11914 -2.74023 6.11914 -6.12012s-2.73926 -6.11914 -6.11914 -6.11914h-13.6533c-3.37988 0 -6.12012 2.73926 -6.12012 6.11914s2.74023 6.12012 6.12012 6.12012h13.6533z" />
|
||||||
|
<glyph glyph-name="037-content-writing" unicode=""
|
||||||
|
d="M505.021 443.468c5.02539 -3.78906 7.98047 -9.71387 7.98047 -16.0078v-168.329c0 -11.0684 -8.9707 -20.0391 -20.0391 -20.0391s-20.0391 8.9707 -20.0391 20.0391v144.177c-23.0488 -2.50098 -48.3994 -0.888672 -78.29 1.01367
|
||||||
|
c-22.8564 1.45215 -48.7627 3.09961 -78.0156 3.09961c-22.1016 0 -40.0781 -17.9805 -40.0781 -40.0781v-266.02c0 -1.68359 -0.230469 -3.30762 -0.62207 -4.86914c-0.755859 -6.29785 -4.47754 -12.1367 -10.5127 -15.3311
|
||||||
|
c-2.98633 -1.58496 -6.19629 -2.33203 -9.3584 -2.33203c-7.18555 0 -14.1289 3.87402 -17.7256 10.665c-1.37012 2.58691 -4.41895 5.35449 -8.87305 5.35449h-149.292c-14.5947 0 -28.2773 3.94141 -40.0781 10.7822v-10.6299
|
||||||
|
c-0.0273438 -10.7754 4.12891 -20.8652 11.7031 -28.458c7.57324 -7.59277 17.6514 -11.7734 28.375 -11.7734h145.284c11.0684 0 20.0391 -8.96973 20.0391 -20.0391c0 -11.0684 -8.9707 -20.0391 -20.0391 -20.0391h-145.284c-21.4482 0 -41.6045 8.36426 -56.751 23.5498
|
||||||
|
c-15.1465 15.1865 -23.46 35.3623 -23.4053 56.8105v332.446c0 6.29395 2.95508 12.2188 7.98438 16.0078c5.02539 3.78516 11.5381 4.99023 17.585 3.25195c23.2139 -6.66895 52.7988 -4.78613 90.2549 -2.40234c23.4521 1.49121 50.0352 3.18164 80.5596 3.18164
|
||||||
|
c23.9258 0 45.417 -10.5479 60.1172 -27.2207c14.7002 16.6729 36.1953 27.2207 60.1172 27.2207c30.5283 0 57.1074 -1.69043 80.5596 -3.18164c37.4561 -2.37988 67.041 -4.2627 90.2549 2.40234c6.04688 1.73828 12.5596 0.533203 17.5889 -3.25195zM80.1562 134.889
|
||||||
|
h149.292c2.37207 0 4.71191 -0.168945 7.01367 -0.493164v232.947c0 22.0977 -17.9805 40.0781 -40.0781 40.0781c-29.2529 0 -55.1592 -1.64746 -78.0195 -3.09961c-29.8906 -1.90234 -55.2373 -3.51465 -78.2861 -1.01367v-228.341
|
||||||
|
c0 -22.0977 17.9805 -40.0781 40.0781 -40.0781zM202.396 334.278c0 -11.0693 -8.9707 -20.04 -20.0391 -20.04h-87.1709c-11.0684 0 -20.0391 8.9707 -20.0391 20.04c0 11.0684 8.9707 20.0391 20.0391 20.0391h87.1709c11.0684 0 20.0391 -8.9707 20.0391 -20.0391z
|
||||||
|
M172.337 254.121c0 -11.0684 -8.9707 -20.0391 -20.0391 -20.0391h-57.1123c-11.0684 0 -20.0391 8.9707 -20.0391 20.0391s8.9707 20.0391 20.0391 20.0391h57.1123c11.0684 0 20.0391 -8.9707 20.0391 -20.0391zM410.392 192.442
|
||||||
|
c23.4248 23.4248 61.5654 23.4248 85.0059 -0.015625c23.4365 -23.4404 23.4365 -61.5811 0 -85.0215l-109.789 -109.577c-2.44629 -2.44238 -5.47949 -4.20801 -8.80566 -5.13184l-80.8848 -22.4023c-1.76562 -0.493164 -3.56543 -0.732422 -5.34668 -0.732422
|
||||||
|
c-5.33105 0 -10.5244 2.12891 -14.3486 6.04688c-5.09961 5.22949 -6.9502 12.8262 -4.8291 19.8203l23.9609 78.877c0.958984 3.1582 2.68457 6.03125 5.02148 8.36328zM361.021 29.918l73.7969 73.6553l-28.3447 28.3447l-74.2354 -74.0703l-11.9053 -39.2021z
|
||||||
|
M467.068 135.762c7.80078 7.7998 7.80078 20.5127 -0.015625 28.3242c-7.8125 7.81641 -20.5244 7.81641 -28.3369 0l-3.87012 -3.85938l28.3398 -28.3398zM467.068 135.762z" />
|
||||||
|
<glyph glyph-name="028-info" unicode=""
|
||||||
|
d="M260.852 448c26.6133 0 48.2656 -21.6523 48.2656 -48.2656v-415.469c0 -26.6133 -21.6523 -48.2656 -48.2656 -48.2656h-212.586c-26.6133 0 -48.2656 21.6523 -48.2656 48.2656v415.469c0 26.6133 21.6523 48.2656 48.2656 48.2656h212.586zM278.477 -15.7344v30.0977
|
||||||
|
h-247.84v-30.0977c0 -9.72266 7.90625 -17.6289 17.6289 -17.6289h212.586c9.72266 0 17.625 7.90625 17.625 17.6289zM30.6367 399.734v-30.0977h247.84v30.0977c0 9.72266 -7.90234 17.6289 -17.625 17.6289h-212.586c-9.72266 0 -17.6289 -7.90625 -17.6289 -17.6289z
|
||||||
|
M278.477 339h-247.84v-294h247.84v294zM278.477 339zM175.066 408.539c20.1992 0 20.3164 -30.6367 0 -30.6367h-41.0156c-20.2812 0 -20.2305 30.6367 0 30.6367h41.0156zM175.066 408.539zM134.051 -24.5391c-20.2148 0 -20.3086 30.6367 0 30.6367h41.0156
|
||||||
|
c20.2812 0 20.2305 -30.6367 0 -30.6367h-41.0156zM134.051 -24.5391zM100.809 102.375c-89.1758 54.2344 -50.5938 192.141 53.75 192.141c57.2109 0 103.574 -46.3633 103.574 -103.578c0 -64.9258 -57.1562 -101.461 -86.2539 -101.461
|
||||||
|
c-17.4961 0 -32.6406 14.2852 -32.6406 32.8438v54.207h-6.21875c-20.1992 0 -20.3164 30.6367 0 30.6367h21.5391c8.45703 0 15.3164 -6.85156 15.3164 -15.3164v-69.5273c0 -1.41797 1.30469 -2.46484 2.51562 -2.13672c32.4453 8.14062 55.1055 37.2383 55.1055 70.7539
|
||||||
|
c0 40.1992 -32.5742 72.9375 -72.9375 72.9375c-73.6328 0 -100.504 -97.2109 -37.8281 -135.316c17.3008 -10.5469 1.375 -36.6914 -15.9219 -26.1836zM100.809 102.375zM169.875 228.684c0 -20.2422 -30.6367 -20.2656 -30.6367 0v9.81641
|
||||||
|
c0 20.2383 30.6367 20.2656 30.6367 0v-9.81641zM169.875 228.684z" />
|
||||||
|
<glyph glyph-name="030-mobile-app" unicode=""
|
||||||
|
d="M504 184c0 -53.5117 -37.7441 -98.3203 -88 -109.344v-90.6562c0 -22.0557 -17.9443 -40 -40 -40h-208c-22.0557 0 -40 17.9443 -40 40v120h-46.248l-4.83203 19.3203l-17.0723 -10.248l-42.7754 42.7676l10.2559 17.0879l-19.3281 4.82422v60.4961l19.3203 4.82422
|
||||||
|
l-10.248 17.0879l42.7842 42.7598l17.0713 -10.248l4.82422 19.3281h46.248v88c0 22.0557 17.9443 40 40 40h208c22.0557 0 40 -17.9443 40 -40v-106.656c50.2559 -11.0234 88 -55.832 88 -109.344zM488 184c0 52.9355 -43.0645 96 -96 96s-96 -43.0645 -96 -96
|
||||||
|
c0 -15.5918 3.81641 -30.2803 10.4404 -43.3037c4.43945 12.2158 14.6553 21.8232 27.8555 25.1279l33.7041 8.43164v1.91211c-9.96777 7.51172 -16 19.3281 -16 31.832v14.3438c0 21.4883 16.0078 39.7285 36.4482 41.4961
|
||||||
|
c11.168 0.984375 22.3359 -2.80762 30.5762 -10.3516c8.24805 -7.56836 12.9756 -18.3203 12.9756 -29.4961v-16c0 -12.5039 -6.03223 -24.3203 -16 -31.832v-1.91211l33.7041 -8.43164c13.2002 -3.30469 23.416 -12.9121 27.8555 -25.1279
|
||||||
|
c6.62402 13.0312 10.4404 27.7197 10.4404 43.3115zM368 293.344v34.6562h-192v-272h192v18.6562c-50.2559 11.0234 -88 55.832 -88 109.344c0 5.44824 0.519531 10.7598 1.28027 16h-89.2803v112h160v-23.5117c5.16797 1.9834 10.4961 3.64746 16 4.85547zM284.72 216
|
||||||
|
c8.24023 27.5762 26.8486 50.6641 51.2803 64.8477v15.1523h-128v-80h76.7197zM168 424c-13.2324 0 -24 -10.7676 -24 -24v-24h256v24c0 13.2324 -10.7676 24 -24 24h-208zM128 171.424v73.1523c-5.04785 2.22363 -10.4961 3.42383 -16 3.42383
|
||||||
|
c-22.0557 0 -40 -17.9443 -40 -40s17.9443 -40 40 -40c5.50391 0 10.9521 1.2002 16 3.42383zM94.248 120h33.752v34.4404c-5.19238 -1.56055 -10.5684 -2.44043 -16 -2.44043c-30.8799 0 -56 25.1279 -56 56s25.1201 56 56 56c5.43164 0 10.8076 -0.879883 16 -2.44043
|
||||||
|
v34.4404h-33.752l-4.89648 -19.6162l-9.75977 -3.96777l-17.2637 10.3682l-25.1045 -25.1123l10.3682 -17.2715l-4.02344 -9.76074l-19.5684 -4.8877v-35.5039l19.5918 -4.8877l4 -9.76074l-10.3682 -17.2715l25.1045 -25.1123l17.2637 10.3682l9.13574 -3.71191
|
||||||
|
l1.62402 -4.28027zM376 -40c13.2324 0 24 10.7676 24 24v24h-256v-24c0 -13.2324 10.7676 -24 24 -24h208zM400 24v48.4082c-2.65625 -0.192383 -5.2959 -0.408203 -8 -0.408203s-5.34375 0.21582 -8 0.408203v-32.4082h-224v304h224v-48.4082
|
||||||
|
c2.65625 0.192383 5.2959 0.408203 8 0.408203s5.34375 -0.21582 8 -0.408203v64.4082h-256v-336h256zM392 88c28.6797 0 54.3916 12.7119 72 32.7119v6.30371c0 11.0322 -7.48047 20.6084 -18.1758 23.2881l-45.8242 11.4482v23.2881l3.97559 2.31152
|
||||||
|
c7.52832 4.38477 12.0244 12.1045 12.0244 20.6484v16c0 6.71191 -2.83984 13.1602 -7.78418 17.6963c-5.01562 4.59961 -11.5195 6.75977 -18.3838 6.20801c-12.2402 -1.06445 -21.832 -12.2881 -21.832 -25.5605v-14.3438c0 -8.54395 4.49609 -16.2637 12.0244 -20.6484
|
||||||
|
l3.97559 -2.31152v-23.2881l-45.8242 -11.4482c-10.6953 -2.67969 -18.1758 -12.2559 -18.1758 -23.2881v-6.30371c17.6084 -20 43.3203 -32.7119 72 -32.7119zM304 408h16v-16h-16v16zM224 408h64v-16h-64v16zM240 -8h64v-16h-64v16zM352 -8h16v-16h-16v16zM176 -8h16v-16
|
||||||
|
h-16v16zM192 184h72v-16h-72v16zM192 152h72v-16h-72v16zM192 120h72v-16h-72v16zM192 88h72v-16h-72v16zM456 296c-13.2324 0 -24 10.7676 -24 24c0 10.416 6.71191 19.2158 16 22.5283v65.4717h16v-65.4717c9.28809 -3.3125 16 -12.1123 16 -22.5283
|
||||||
|
c0 -13.2324 -10.7676 -24 -24 -24zM456 328c-4.4082 0 -8 -3.58398 -8 -8s3.5918 -8 8 -8s8 3.58398 8 8s-3.5918 8 -8 8zM448 440h16v-16h-16v16zM88 88c13.2324 0 24 -10.7676 24 -24c0 -10.416 -6.71191 -19.2158 -16 -22.5283v-65.4717h-16v65.4717
|
||||||
|
c-9.28809 3.3125 -16 12.1123 -16 22.5283c0 13.2324 10.7676 24 24 24zM88 56c4.4082 0 8 3.58398 8 8s-3.5918 8 -8 8s-8 -3.58398 -8 -8s3.5918 -8 8 -8zM80 -40h16v-16h-16v16z" />
|
||||||
|
<glyph glyph-name="036-web" unicode=""
|
||||||
|
d="M369.28 92.7998l24 -41.5996l-17.9287 -10.3604c0.358398 -2.43066 0.648438 -6.39844 0.648438 -8.85547c0 -2.45801 -0.290039 -6.4248 -0.648438 -8.85645l17.9287 -10.3516l-24 -41.6006l-17.9521 10.4004c-3.8877 -3.04199 -10.7549 -7.02051 -15.3281 -8.87988
|
||||||
|
v-20.6963h-48v20.6963c-4.57324 1.85938 -11.4404 5.83789 -15.3281 8.87988l-1.07227 -0.616211c-4.04004 -19.8564 -47.2393 -28.96 -87.5996 -28.96c-42.4004 0 -88 10.0156 -88 32v144c0 21.9844 45.5996 32 88 32s88 -10.0156 88 -32v-45.1924l0.671875 -0.383789
|
||||||
|
c3.8877 3.04199 10.7549 7.02051 15.3281 8.87988v20.6963h48v-20.6963c4.57422 -1.86523 11.4414 -5.85449 15.3281 -8.90332zM254.72 92.7998l1.28027 -0.751953v16.4883c-0.112305 -0.0556641 -0.248047 -0.0957031 -0.360352 -0.152344
|
||||||
|
c-1.93066 -0.954102 -3.99121 -1.84766 -6.18359 -2.67969c-0.583984 -0.223633 -1.22363 -0.423828 -1.83203 -0.648438c-1.69629 -0.607422 -3.44043 -1.19141 -5.25586 -1.73535c-0.864258 -0.255859 -1.73633 -0.496094 -2.62402 -0.736328
|
||||||
|
c-1.7334 -0.479492 -3.5127 -0.930664 -5.33594 -1.35156c-0.87207 -0.208008 -1.73633 -0.416016 -2.62402 -0.600586c-2.27734 -0.485352 -4.6084 -0.932617 -6.99219 -1.34375l-1.34375 -0.248047c-2.85352 -0.458984 -5.76074 -0.870117 -8.7207 -1.23242
|
||||||
|
l-2.55957 -0.271484c-2.16797 -0.240234 -4.34375 -0.456055 -6.55176 -0.631836c-1.03223 -0.0878906 -2.06445 -0.167969 -3.10449 -0.240234c-2.15137 -0.144531 -4.31152 -0.272461 -6.47949 -0.368164l-2.83984 -0.12793
|
||||||
|
c-3.07227 -0.103516 -6.13672 -0.167969 -9.19238 -0.167969s-6.12012 0.0644531 -9.19238 0.167969l-2.83984 0.12793c-2.16797 0.0957031 -4.32812 0.223633 -6.47949 0.368164c-1.04004 0.0722656 -2.07227 0.152344 -3.10449 0.240234
|
||||||
|
c-2.20801 0.175781 -4.38379 0.391602 -6.55176 0.631836l-2.55957 0.271484c-2.96582 0.357422 -5.87207 0.768555 -8.7207 1.23242l-1.34375 0.248047c-2.37891 0.405273 -4.70996 0.853516 -6.99219 1.34375c-0.887695 0.18457 -1.75195 0.392578 -2.62402 0.600586
|
||||||
|
c-1.82324 0.420898 -3.60254 0.87207 -5.33594 1.35156c-0.887695 0.240234 -1.75977 0.480469 -2.62402 0.736328c-1.81543 0.543945 -3.55957 1.12793 -5.25586 1.73535c-0.608398 0.224609 -1.24805 0.424805 -1.83203 0.648438
|
||||||
|
c-2.19727 0.836914 -4.25879 1.73047 -6.18359 2.67969c-0.112305 0.0566406 -0.248047 0.0966797 -0.360352 0.152344v-28.5361c1.2002 -4.32031 25.1924 -16 72 -16c1.10742 -0.0244141 2.9043 -0.0439453 4.01172 -0.0439453c15.4902 0 40.0674 3.72949 54.8604 8.32422z
|
||||||
|
M184 144c-46.5684 0 -70.5361 -11.5596 -72.0479 -15.9678c1.16797 -3.80859 19.6562 -13.1602 55.4961 -15.4482c5.13574 -0.328125 10.6318 -0.511719 16.4795 -0.511719c2.87988 0 5.73633 0.0478516 8.48047 0.12793
|
||||||
|
c0.799805 0.0322266 1.59961 0.120117 2.39941 0.120117c1.87207 0.0712891 3.74414 0.143555 5.52832 0.255859c1.12012 0.0722656 2.13574 0.175781 3.2002 0.255859c1.41602 0.112305 2.86426 0.208008 4.22363 0.335938
|
||||||
|
c1.12012 0.112305 2.16797 0.248047 3.25586 0.368164c1.23242 0.135742 2.5127 0.271484 3.63281 0.416016c1.11914 0.143555 2.15137 0.311523 3.19922 0.47168c1.04883 0.160156 2.05664 0.295898 3.14453 0.472656c1.08789 0.175781 2.10352 0.383789 3.14355 0.575195
|
||||||
|
c0.896484 0.167969 1.82422 0.320312 2.68066 0.496094c1.05566 0.21582 2.03125 0.448242 3.03125 0.680664c0.744141 0.167969 1.52832 0.327148 2.24023 0.503906c1.00781 0.248047 1.93652 0.503906 2.87988 0.759766
|
||||||
|
c0.624023 0.167969 1.28809 0.328125 1.88867 0.503906c0.935547 0.248047 1.7832 0.52832 2.65527 0.799805c0.543945 0.167969 1.10449 0.328125 1.60059 0.496094c0.855469 0.280273 1.59961 0.568359 2.39941 0.856445
|
||||||
|
c0.432617 0.15918 0.904297 0.319336 1.3125 0.479492c0.735352 0.288086 1.38379 0.576172 2.04785 0.856445l1.12793 0.479492c0.616211 0.248047 1.14355 0.520508 1.68848 0.799805c0.311523 0.160156 0.671875 0.320312 0.967773 0.480469
|
||||||
|
c0.527344 0.288086 0.90332 0.543945 1.32812 0.799805c0.271484 0.160156 0.567383 0.320312 0.799805 0.47168c0.375977 0.248047 0.78418 0.560547 0.983398 0.712891c0.200195 0.151367 0.352539 0.239258 0.608398 0.455078
|
||||||
|
c0.255859 0.216797 0.488281 0.464844 0.631836 0.616211c0.144531 0.152344 0.320312 0.304688 0.44043 0.448242c0.0947266 0.129883 0.231445 0.352539 0.303711 0.496094c0.0664062 0.105469 0.160156 0.285156 0.208008 0.400391
|
||||||
|
c-1.14355 3.11133 -12.8076 9.4873 -35.0156 13.1758l-0.640625 0.0878906c-1.82324 0.255859 -3.6875 0.543945 -5.65527 0.799805c-0.696289 0.0957031 -1.53613 0.167969 -2.29688 0.263672c-1.49512 0.176758 -2.95117 0.360352 -4.55176 0.512695
|
||||||
|
c-1.08008 0.103516 -2.31934 0.183594 -3.47949 0.279297c-1.30469 0.104492 -2.56836 0.224609 -3.91992 0.3125c-1.64844 0.103516 -3.38477 0.167969 -5.10449 0.240234c-0.952148 0.0400391 -1.84766 0.135742 -2.81543 0.135742
|
||||||
|
c-2.74414 0.0800781 -5.56836 0.12793 -8.48047 0.12793zM112 60.584v-28.584v0c1.2002 -4.32031 25.1924 -16 72 -16c1.75586 -0.0683594 4.60742 -0.124023 6.36523 -0.124023c16.5566 0 42.5557 4.76855 58.0352 10.6436
|
||||||
|
c-0.167969 1.83203 -0.400391 3.68066 -0.400391 5.48047c0.00292969 2.45703 0.292969 6.4248 0.648438 8.85645l-17.9287 10.3516l0.751953 1.30371c-12.5459 -2.49316 -33.1084 -4.5166 -45.8994 -4.5166c-0.43457 0 -1.13867 0.00195312 -1.57227 0.00488281
|
||||||
|
c-26.8643 0 -54.9844 4 -72 12.584zM112 -16c1.2002 -4.32031 25.1924 -16 72 -16c34.2158 0 56.1836 6.24023 66.0322 11.3281l-15.0244 26.04c-13.4053 -2.96777 -35.4268 -5.37598 -49.1572 -5.37598c-0.510742 0 -1.33984 0.00390625 -1.85059 0.0078125
|
||||||
|
c-26.832 0 -54.9678 4 -72 12.5361v-28.5361zM358.648 43.1123l-1.36816 5.79199l14.1279 8.16797l-8 13.8555l-14.1523 -8.16797l-4.33594 4.08008c-4.57031 4.33203 -13.1719 9.3252 -19.2002 11.1445l-5.71973 1.69531v16.3203h-16v-16.3203l-5.71973 -1.69531
|
||||||
|
c-6.02832 -1.81934 -14.6299 -6.8125 -19.2002 -11.1445l-4.33594 -4.08008l-14.1523 8.16797l-8 -13.8555l14.1445 -8.16797l-1.36816 -5.79199c-0.746094 -3.02148 -1.35254 -8 -1.35254 -11.1123s0.606445 -8.09082 1.35254 -11.1123l1.36816 -5.79199l-14.1445 -8.16797
|
||||||
|
l8 -13.8555l14.1523 8.16797l4.33594 -4.08008c4.57031 -4.33203 13.1719 -9.3252 19.2002 -11.1445l5.71973 -1.69531v-16.3203h16v16.3203l5.73633 1.69531c6.02832 1.81934 14.6299 6.8125 19.1992 11.1445l4.33691 4.08008l14.1514 -8.16797l8 13.8555l-14.1436 8.16797
|
||||||
|
l1.36816 5.79199c0.746094 3.02148 1.35156 8 1.35156 11.1123s-0.605469 8.09082 -1.35156 11.1123zM312 64c17.6641 0 32 -14.3359 32 -32s-14.3359 -32 -32 -32s-32 14.3359 -32 32s14.3359 32 32 32zM312 16c8.83203 0 16 7.16797 16 16s-7.16797 16 -16 16
|
||||||
|
s-16 -7.16797 -16 -16s7.16797 -16 16 -16zM288 432v-160h-96v160h96zM272 416h-64v-96h64v96zM240 288h32v16h-64v-16h32zM248 296c0 -4.41602 -3.58398 -8 -8 -8s-8 3.58398 -8 8c0.0214844 1.82031 1.06152 4.36523 2.32031 5.67969
|
||||||
|
c0.313477 0.28418 0.847656 0.713867 1.19141 0.959961c0.374023 0.250977 1.02246 0.573242 1.44824 0.720703c0.37793 0.192383 1.02246 0.407227 1.44043 0.479492c0.43457 0.0869141 1.14648 0.157227 1.58984 0.157227c1.83105 0 4.37988 -1.03809 5.68945 -2.31738
|
||||||
|
c1.25586 -1.31641 2.29492 -3.86035 2.32031 -5.67969zM88 256v-32h144v32h16v-32h144v32h16v-48h-160v-32h-16v32h-160v48h16zM48 288v16h-48v128h160v-128h-48v-16h16v-16h-96v16h16zM96 288v16h-32v-16h32zM16 416v-64h128v64h-128zM16 320h128v16h-128v-16zM320 272v160
|
||||||
|
h160v-160h-160zM464 288v80h-128v-80h128zM336 416v-32h128v32h-128zM356.4 406.64c0.379883 -0.229492 0.953125 -0.65918 1.2793 -0.959961c1.25586 -1.31641 2.29492 -3.86035 2.32031 -5.67969v-0.0576172c0 -1.81836 -1.04297 -4.33691 -2.32812 -5.62207
|
||||||
|
c-0.649414 -0.587891 -1.83301 -1.33984 -2.63965 -1.68066c-0.801758 -0.353516 -2.16406 -0.639648 -3.04004 -0.639648s-2.23828 0.286133 -3.04004 0.639648c-0.808594 0.338867 -1.99121 1.0918 -2.64062 1.68066c-1.28027 1.28027 -2.31934 3.78906 -2.31934 5.60059
|
||||||
|
c0 0.897461 0.286133 2.29492 0.639648 3.11914c0.323242 0.818359 1.07617 2.00098 1.67969 2.63965c1.29102 1.27832 3.81348 2.31641 5.62988 2.31641c0.4375 0 1.1416 -0.0703125 1.57031 -0.15625c0.444336 -0.0625 1.12891 -0.277344 1.52832 -0.479492
|
||||||
|
c0.40918 -0.134766 1.01855 -0.457031 1.36035 -0.720703zM381.68 405.68c0.588867 -0.648438 1.3418 -1.83105 1.68066 -2.63965c0.353516 -0.801758 0.639648 -2.16406 0.639648 -3.04004s-0.286133 -2.23828 -0.639648 -3.04004
|
||||||
|
c-0.34082 -0.807617 -1.09277 -1.99023 -1.68066 -2.63965c-0.649414 -0.587891 -1.83203 -1.33984 -2.63965 -1.68066c-0.824219 -0.352539 -2.22168 -0.639648 -3.11914 -0.639648c-1.81152 0 -4.32031 1.03906 -5.60059 2.32031
|
||||||
|
c-0.587891 0.649414 -1.33984 1.83203 -1.68066 2.63965c-0.354492 0.750977 -0.641602 2.0332 -0.641602 2.86328c0 0.0488281 0.000976562 0.12793 0.00195312 0.176758c0.0107422 0.874023 0.296875 2.23633 0.639648 3.04004
|
||||||
|
c0.323242 0.818359 1.07617 2.00098 1.68066 2.63965c1.32812 1.22559 3.87207 2.2207 5.67969 2.2207s4.35156 -0.995117 5.67969 -2.2207zM405.68 405.68c0.620117 -0.628906 1.37305 -1.81152 1.68066 -2.63965c0.353516 -0.801758 0.639648 -2.16406 0.639648 -3.04004
|
||||||
|
s-0.286133 -2.23828 -0.639648 -3.04004c-0.34082 -0.807617 -1.09277 -1.99023 -1.68066 -2.63965c-1.31152 -1.26758 -3.85645 -2.30664 -5.67969 -2.32031c-0.874023 0.0107422 -2.23633 0.296875 -3.04004 0.639648
|
||||||
|
c-0.808594 0.338867 -1.99121 1.0918 -2.63965 1.68066c-0.587891 0.649414 -1.33984 1.83203 -1.68066 2.63965c-0.352539 0.801758 -0.639648 2.16406 -0.639648 3.04004s0.287109 2.23828 0.639648 3.04004c0.307617 0.828125 1.06055 2.01074 1.68066 2.63965
|
||||||
|
c0.313477 0.28418 0.847656 0.713867 1.19141 0.959961c0.374023 0.250977 1.02246 0.573242 1.44824 0.720703c0.37793 0.192383 1.02246 0.407227 1.44043 0.479492c0.429688 0.0917969 1.13672 0.166016 1.57617 0.166016
|
||||||
|
c0.882812 0 2.25586 -0.289062 3.06348 -0.645508c0.807617 -0.34082 1.99023 -1.09277 2.63965 -1.68066z" />
|
||||||
|
<glyph glyph-name="029-interaction" unicode=""
|
||||||
|
d="M144 320c-30.877 0.0351562 -55.9648 25.123 -56 56c0 30.9121 25.0879 56 56 56s56 -25.0879 56 -56s-25.0879 -56 -56 -56zM144 416c-22.0537 -0.0263672 -39.9736 -17.9463 -40 -40c0 -22.0801 17.9199 -40 40 -40s40 17.9199 40 40s-17.9199 40 -40 40z
|
||||||
|
M82.5117 338.024l4.24805 -5.60059c11.8916 -15.7129 37.5352 -28.4648 57.2402 -28.4648s45.3486 12.752 57.2402 28.4648l4.24805 5.60059l6.07129 -3.46484c20.0713 -11.4336 36.3955 -39.4609 36.4404 -62.5596v-48c0 -13.248 -10.752 -24 -24 -24h-160
|
||||||
|
c-13.248 0 -24 10.752 -24 24v48c0.0449219 23.0986 16.3691 51.126 36.4404 62.5596zM144 288h-0.251953c-21.5107 0 -50.6152 13.0059 -64.9639 29.0322c-12.5449 -9.26367 -22.7529 -29.4375 -22.7842 -45.0322v-48c0 -4.41602 3.58398 -8 8 -8h160
|
||||||
|
c4.41602 0 8 3.58398 8 8v48c-0.03125 15.5947 -10.2393 35.7686 -22.7842 45.0322c-14.3486 -16.0264 -43.4531 -29.0322 -64.9639 -29.0322h-0.251953zM240 8v120c0.0351562 30.877 25.123 55.9648 56 56h120c30.877 -0.0351562 55.9648 -25.123 56 -56v-120
|
||||||
|
c-0.0351562 -30.877 -25.123 -55.9648 -56 -56h-120c-30.877 0.0351562 -55.9648 25.123 -56 56zM456 8v96h-200v-96c0.0263672 -22.0537 17.9463 -39.9736 40 -40h120c22.0537 0.0263672 39.9736 17.9463 40 40zM256 128v-8h200v8
|
||||||
|
c-0.0263672 22.0537 -17.9463 39.9736 -40 40h-120c-22.0537 -0.0263672 -39.9736 -17.9463 -40 -40zM293.68 149.68c0.620117 -0.628906 1.37305 -1.81152 1.68066 -2.63965c0.353516 -0.801758 0.639648 -2.16406 0.639648 -3.04004
|
||||||
|
s-0.286133 -2.23828 -0.639648 -3.04004c-0.323242 -0.818359 -1.07617 -2.00098 -1.68066 -2.63965c-1.29102 -1.28125 -3.81445 -2.32031 -5.63379 -2.32031c-4.41504 0 -8 3.58398 -8 8s3.58496 8 8 8c1.81934 0 4.34277 -1.03906 5.63379 -2.32031zM318.4 151.84
|
||||||
|
c0.420898 0.0800781 1.11035 0.144531 1.53906 0.144531c1.83984 0 4.41113 -1.03223 5.74023 -2.30469c1.30664 -1.29492 2.36719 -3.83984 2.36719 -5.67969c0 -4.41602 -3.58398 -8 -8 -8h-0.046875c-0.444336 0.0146484 -1.16113 0.0859375 -1.59961 0.160156
|
||||||
|
c-0.417969 0.0722656 -1.0625 0.287109 -1.44043 0.479492c-0.425781 0.147461 -1.07422 0.469727 -1.44824 0.720703l-1.19141 0.959961c-1.28125 1.30566 -2.32031 3.85059 -2.32031 5.67969s1.03906 4.37402 2.32031 5.67969
|
||||||
|
c0.313477 0.28418 0.847656 0.713867 1.19141 0.959961c0.374023 0.250977 1.02246 0.573242 1.44824 0.720703c0.37793 0.192383 1.02246 0.407227 1.44043 0.479492zM348.96 151.36c0.821289 0.344727 2.20996 0.625 3.10156 0.625
|
||||||
|
c1.81152 0 4.3291 -1.0332 5.61816 -2.30566c1.30664 -1.29492 2.36719 -3.83984 2.36719 -5.67969c0 -4.41602 -3.58398 -8 -8 -8h-0.046875c-0.874023 0.0107422 -2.23633 0.296875 -3.04004 0.639648c-0.818359 0.323242 -2.00098 1.07617 -2.63965 1.68066
|
||||||
|
c-1.28125 1.30566 -2.32031 3.85059 -2.32031 5.67969s1.03906 4.37402 2.32031 5.67969c0.638672 0.604492 1.82129 1.35742 2.63965 1.68066zM362.936 233.04l-1.70312 22.96l19 -16.3682c-13.8281 57.5264 -73.0684 104.283 -132.232 104.368v16
|
||||||
|
c68.3467 -0.107422 135.009 -54.5225 148.8 -121.464l18.5361 21.4639l1.7041 -22.9355l-25.04 -29.0645zM101.064 150.96l1.70312 -22.96l-19 16.3682c13.8281 -57.5264 73.0684 -104.283 132.232 -104.368v-16c-68.3467 0.107422 -135.009 54.5225 -148.8 121.464
|
||||||
|
l-18.5361 -21.4639l-1.7041 22.9355l25.04 29.0645z" />
|
||||||
|
<glyph glyph-name="022-business-and-finance" unicode=""
|
||||||
|
d="M17.1035 345.614c-9.4209 0.0117188 -17.0527 7.64355 -17.0645 17.0645v68.2568c0.0117188 9.4209 7.64355 17.0527 17.0645 17.0645h290.096c9.41699 -0.0117188 17.0527 -7.64355 17.0645 -17.0645v-25.5977h9.74902c4.70996 0 8.5293 -3.82031 8.5293 -8.53027
|
||||||
|
c0 -4.71484 -3.81934 -8.53418 -8.5293 -8.53418h-9.74902v-25.5947c-0.0117188 -9.4209 -7.64746 -17.0527 -17.0645 -17.0645h-196.24v-43.7832l12.3262 8.22168c3.9209 2.55859 9.1709 1.48438 11.7676 -2.41016c2.59766 -3.89355 1.57031 -9.15527 -2.2998 -11.7871
|
||||||
|
l-25.5986 -17.0645c-0.589844 -0.28125 -1.18359 -0.558594 -1.77734 -0.839844c-1.88965 -0.792969 -4.01855 -0.792969 -5.90918 0c-0.292969 0.117188 -0.578125 0.253906 -0.851562 0.402344c-0.316406 0.125 -0.625 0.269531 -0.925781 0.433594l-25.5938 17.0645
|
||||||
|
c-3.875 2.63184 -4.89844 7.89355 -2.30469 11.791c2.59766 3.89453 7.85059 4.96875 11.7676 2.40625l12.3311 -8.21777v43.7832h-76.7871zM17.1035 376.11v-13.4316h76.7871v33.7578c-26.6807 -1.66797 -52.7744 -8.57715 -76.7871 -20.3262zM154.898 389.059
|
||||||
|
c-14.2871 4.2959 -29.043 6.83496 -43.9395 7.56934v-33.9492h93.8506v17.6074c-16.9072 1.06641 -33.6514 4.00684 -49.9111 8.77246zM221.874 362.679h85.3408l-0.0078125 37.7959c-11.9668 -2.63184 -23.7471 -6.05762 -35.2607 -10.252
|
||||||
|
c-15.9316 -6.45312 -32.8906 -10.0029 -50.0723 -10.4795v-17.0645zM307.199 430.936h-290.096v-36.0498c26.8281 12.1348 55.875 18.5947 85.3213 18.9854c19.2666 0.0351562 38.4365 -2.77246 56.8828 -8.33398c20.3027 -6.01953 41.3936 -8.96387 62.5664 -8.72949
|
||||||
|
c15.291 0.472656 30.3711 3.70996 44.5098 9.54883c13.2959 4.87109 26.9385 8.72559 40.8154 11.542v13.0371zM307.199 430.936zM469.312 294.418c22.1104 0.0234375 40.5615 -16.873 42.4824 -38.8975c1.92578 -22.0283 -13.3223 -41.8613 -35.1006 -45.6738
|
||||||
|
c-1.34375 -4.8584 -3.76562 -9.35059 -7.08887 -13.1387c-3.06641 -3.58203 -8.45215 -4 -12.0342 -0.9375c-3.58105 3.06543 -3.99902 8.45215 -0.936523 12.0332c0.75293 0.878906 1.43262 1.8125 2.03809 2.80078c-15.7559 4.0459 -27.8359 16.6973 -31.1641 32.6211
|
||||||
|
h-11.0879c-33.7148 -0.0546875 -65.3828 -16.1777 -85.2549 -43.4092c-22.7354 -31.2695 -51.3799 -47.9424 -85.0908 -50.0244l8.49902 -12.7529c2.5625 -3.91699 1.48828 -9.16992 -2.41016 -11.7676c-3.89355 -2.59766 -9.15527 -1.57031 -11.7871 2.30469
|
||||||
|
l-17.0645 25.5938c-1.91016 2.86719 -1.91016 6.60156 0 9.46777l17.0645 25.5947c2.63184 3.87012 7.89355 4.89746 11.7871 2.30078c3.89844 -2.59766 4.97266 -7.84668 2.41016 -11.7646l-7.9209 -11.8887c28.0039 2.17871 51.2393 16.1924 70.7139 42.9668
|
||||||
|
c23.0869 31.6445 59.8828 50.3838 99.0537 50.4424h11.0918c4.08203 19.8496 21.5371 34.1016 41.7998 34.1289zM469.312 226.161c14.1309 0.015625 25.583 11.4668 25.5986 25.5986c0 14.1348 -11.4639 25.5938 -25.5986 25.5938
|
||||||
|
c-14.1387 0 -25.5986 -11.459 -25.5986 -25.5938c0 -14.1396 11.46 -25.5986 25.5986 -25.5986zM469.312 226.161zM469.312 362.679c-4.71387 0 -8.53418 3.82031 -8.53418 8.53027v8.53418c0.0078125 1.43359 -0.351562 2.84375 -1.03906 4.09668
|
||||||
|
c-2.16797 4.12891 -0.621094 9.22949 3.46875 11.46c4.09277 2.23047 9.2168 0.765625 11.5137 -3.29297c2.04297 -3.76465 3.11719 -7.97949 3.12109 -12.2637v-8.53418c0 -4.70996 -3.82031 -8.53027 -8.53027 -8.53027zM469.312 362.679zM385.205 388.273h-17.0645
|
||||||
|
c-4.70996 0 -8.53027 3.81934 -8.53027 8.53418c0 4.70996 3.82031 8.53027 8.53027 8.53027h17.0645c4.71387 0 8.53418 -3.82031 8.53418 -8.53027c0 -4.71484 -3.82031 -8.53418 -8.53418 -8.53418zM385.205 388.273zM436.397 405.338
|
||||||
|
c4.71484 0 8.53418 -3.82031 8.53418 -8.53027c0 -4.71484 -3.81934 -8.53418 -8.53418 -8.53418h-17.0645c-4.70996 0 -8.5293 3.81934 -8.5293 8.53418c0 4.70996 3.81934 8.53027 8.5293 8.53027h17.0645zM436.397 405.338zM436.616 341.814
|
||||||
|
c2.61328 3.9209 7.90918 4.97949 11.8311 2.36719l12.3301 -8.22168v1.12012c0 4.71484 3.82031 8.53418 8.53418 8.53418c4.70996 0 8.53027 -3.81934 8.53027 -8.53418v-1.12012l12.334 8.22168c3.91797 2.55762 9.1709 1.4834 11.7686 -2.41016
|
||||||
|
c2.59277 -3.89844 1.56934 -9.15527 -2.30469 -11.7881l-25.5947 -17.0674c-0.105469 -0.0664062 -0.226562 -0.0898438 -0.332031 -0.152344c-0.28125 -0.171875 -0.570312 -0.328125 -0.867188 -0.464844c-0.1875 -0.0859375 -0.375 -0.144531 -0.56543 -0.214844
|
||||||
|
l-0.0703125 -0.0273438c-0.21875 -0.0742188 -0.425781 -0.183594 -0.652344 -0.246094c-0.703125 -0.195312 -1.42969 -0.300781 -2.16016 -0.316406l-0.078125 -0.0117188h-0.015625l-0.0820312 0.0117188c-0.730469 0.015625 -1.45312 0.121094 -2.15625 0.316406
|
||||||
|
c-0.230469 0.0625 -0.4375 0.167969 -0.65625 0.246094l-0.0664062 0.0273438c-0.191406 0.0703125 -0.378906 0.128906 -0.566406 0.210938c-0.296875 0.140625 -0.585938 0.296875 -0.867188 0.46875c-0.105469 0.0625 -0.225586 0.0859375 -0.331055 0.152344
|
||||||
|
l-25.5947 17.0674c-1.88672 1.25391 -3.19531 3.20312 -3.63672 5.42578c-0.445312 2.21777 0.0117188 4.52246 1.26953 6.40527zM436.616 341.814zM359.825 119.976c2.61328 3.9209 7.90918 4.97949 11.8311 2.36621l20.8643 -13.9082l20.8643 13.9082
|
||||||
|
c3.91797 2.5625 9.1709 1.48438 11.7686 -2.40918c2.59668 -3.89453 1.56934 -9.15527 -2.30078 -11.7881l-25.5986 -17.0645c-2.86621 -1.91309 -6.60059 -1.91309 -9.4668 0l-25.5947 17.0645c-1.88672 1.25391 -3.19141 3.20703 -3.63672 5.42578
|
||||||
|
c-0.445312 2.21777 0.0117188 4.52246 1.26953 6.40527zM359.825 119.976zM30.0352 85.5107c-0.0585938 0.0585938 -0.0742188 0.136719 -0.136719 0.195312c-33.9014 34.0234 -39.6045 87.04 -13.7051 127.492c25.8994 40.4473 76.4355 57.4609 121.523 40.9082
|
||||||
|
s72.6123 -62.2227 66.1826 -109.821c-6.42871 -47.5996 -45.0801 -84.333 -92.9404 -88.3369v-68.6904c0 -4.70996 3.81934 -8.53027 8.5293 -8.53027h112.041l-8.21777 12.3301c-1.72266 2.53516 -1.95703 5.80469 -0.605469 8.55762
|
||||||
|
c1.35156 2.75391 4.07715 4.57031 7.13965 4.75781c3.05859 0.1875 5.9873 -1.28125 7.66309 -3.85156l17.0645 -25.5938c0.160156 -0.296875 0.304688 -0.601562 0.425781 -0.914062c0.15625 -0.28125 0.292969 -0.574219 0.414062 -0.875
|
||||||
|
c0.363281 -0.925781 0.5625 -1.91016 0.585938 -2.90625l0.0078125 -0.0390625l-0.0078125 -0.0351562c-0.0234375 -1 -0.222656 -1.98438 -0.585938 -2.90918c-0.28125 -0.597656 -0.5625 -1.19141 -0.839844 -1.78906l-17.0645 -25.5947
|
||||||
|
c-1.67969 -2.57031 -4.60449 -4.03809 -7.66699 -3.85059c-3.0625 0.191406 -5.78418 2.00684 -7.13574 4.76074s-1.12109 6.01855 0.601562 8.55371l8.22168 12.334h-112.041c-14.1309 0.015625 -25.582 11.4639 -25.5977 25.5947v68.6904
|
||||||
|
c-24.0283 1.98438 -46.584 12.4121 -63.6602 29.4336c-0.0585938 0.0585938 -0.140625 0.0742188 -0.195312 0.128906zM102.425 72.583c43.7949 0.0546875 80.4541 33.2188 84.8916 76.7871h-81.3574l-57.4922 -57.4893c15.2051 -12.4941 34.2764 -19.3135 53.958 -19.2979z
|
||||||
|
M187.316 166.435c-4.11719 40.3457 -36.0156 72.2441 -76.3574 76.3574v-76.3574h76.3574zM93.8906 242.792c-31.2656 -3.11719 -58.2822 -23.1846 -70.3037 -52.2158c-12.0225 -29.0322 -7.09668 -62.3203 12.8145 -86.6299l57.4893 57.4883v81.3574zM93.8906 242.792z
|
||||||
|
M503.439 -46.8711c4.71484 0 8.53418 -3.81934 8.53418 -8.5293c0 -4.71484 -3.81934 -8.53418 -8.53418 -8.53418h-221.839c-4.70996 0 -8.53027 3.81934 -8.53027 8.53418v119.449c0 4.70996 3.82031 8.53418 8.53027 8.53418
|
||||||
|
c4.71484 0 8.53418 -3.82422 8.53418 -8.53418v-107.807c9.21387 6.72559 16.8418 23.5439 24.7939 41.1709c15.1348 33.4834 33.9648 75.1699 77.5918 75.1699s62.457 -41.6865 77.5918 -75.1699c10.2793 -22.7822 19.9971 -44.2842 33.3271 -44.2842zM330.478 -9.61719
|
||||||
|
c-5.30762 -13.0576 -11.9316 -25.5361 -19.7666 -37.2539h73.2793v8.53418c0 4.71094 3.82031 8.53027 8.53027 8.53027c4.71387 0 8.53418 -3.81934 8.53418 -8.53027v-8.53418h73.2754c-7.83496 11.7178 -14.459 24.1963 -19.7666 37.2539
|
||||||
|
c-13.1387 29.0703 -26.7236 58.9531 -53.5088 64.2295v-7.62793c0 -4.71387 -3.82031 -8.53418 -8.53418 -8.53418c-4.70996 0 -8.53027 3.82031 -8.53027 8.53418v7.62793c-26.7861 -5.27637 -40.374 -35.1592 -53.5127 -64.2295zM330.478 -9.61719zM392.521 -12.7422
|
||||||
|
c-4.70996 0 -8.53027 3.81934 -8.53027 8.53418v17.0645c0 4.70996 3.82031 8.53027 8.53027 8.53027c4.71387 0 8.53418 -3.82031 8.53418 -8.53027v-17.0645c0 -4.71484 -3.82031 -8.53418 -8.53418 -8.53418zM392.521 -12.7422zM423.032 161.993
|
||||||
|
c-3.53125 0.00390625 -6.69824 2.17578 -7.96387 5.47266c-1.26562 3.29199 -0.375 7.03027 2.24609 9.39258c4.47168 3.98828 9.15039 7.7373 14.0137 11.2334c3.81152 2.77246 9.15137 1.9375 11.9238 -1.875c2.77734 -3.81152 1.9375 -9.14746 -1.87402 -11.9238
|
||||||
|
c-4.38281 -3.14062 -8.59668 -6.51172 -12.6279 -10.0967c-1.56641 -1.42188 -3.60449 -2.20312 -5.71777 -2.20312zM423.032 161.993zM396.211 119.351c-2.65918 0 -5.1709 1.23828 -6.78809 3.35449c-1.61621 2.11328 -2.15137 4.86328 -1.45312 7.42871
|
||||||
|
c1.63672 6.01953 3.85938 11.8623 6.63281 17.4473c1.31543 2.80859 4.0459 4.68262 7.13965 4.89746c3.09277 0.214844 6.05762 -1.26465 7.74512 -3.8623c1.69043 -2.60156 1.83496 -5.90918 0.382812 -8.64746c-2.27344 -4.59277 -4.09375 -9.39355 -5.43359 -14.334
|
||||||
|
c-1.01562 -3.71094 -4.38184 -6.28027 -8.22559 -6.28418zM396.211 119.351z" />
|
||||||
|
<glyph glyph-name="025-privacy" unicode=""
|
||||||
|
d="M194.207 6.62109v8.82715h75.5469c1.67676 -6.06445 3.71582 -11.9697 6.20703 -17.6553h-72.9268c-4.87012 0 -8.82715 3.95703 -8.82715 8.82812zM194.207 6.62109zM273.655 123.314l11.2373 -2.81055c-12.6338 -20.2842 -20.0654 -44.1377 -20.0654 -69.7451
|
||||||
|
c0 -6.00488 0.539062 -11.8662 1.31543 -17.6553h-98.418v51.8789c0 12.1729 8.25391 22.7422 20.0557 25.6904l50.5645 12.6289v18.8145c5.53418 -1.96094 11.457 -3.09082 17.6553 -3.09082s12.1211 1.12109 17.6553 3.09082v-18.8018zM273.655 123.314zM397.241 183.173
|
||||||
|
c-40.5986 0 -76.9395 -18.3975 -101.245 -47.2549l-4.68555 1.17285v15.5381c10.8057 9.71191 17.6553 23.7373 17.6553 39.3711v17.6553c0 29.2109 -23.7549 52.9658 -52.9658 52.9658s-52.9658 -23.7549 -52.9658 -52.9658v-17.6553
|
||||||
|
c0 -15.6426 6.84961 -29.668 17.6553 -39.3711v-15.5293l-37.1807 -9.29395c-19.6855 -4.92676 -33.4395 -22.5303 -33.4395 -42.8232v-51.8789h-79.4482v247.172h370.758v-104.827c-13.8311 4.90918 -28.6465 7.72461 -44.1377 7.72461zM397.241 183.173zM476.689 156.436
|
||||||
|
c-5.57715 4.21094 -11.4395 8.04688 -17.6553 11.3486v112.491c0 9.7373 -7.91797 17.6553 -17.6553 17.6553h-370.758c-9.7373 0 -17.6553 -7.91797 -17.6553 -17.6553v-247.172h-17.6553v256c0 14.5986 11.8838 26.4824 26.4824 26.4824h388.414
|
||||||
|
c14.5986 0 26.4824 -11.8838 26.4824 -26.4824v-132.668zM476.689 156.436zM291.311 209.655v-17.6553c0 -19.4746 -15.8359 -35.3105 -35.3105 -35.3105s-35.3105 15.8359 -35.3105 35.3105v17.6553c0 19.4736 15.8359 35.3105 35.3105 35.3105
|
||||||
|
s35.3105 -15.8369 35.3105 -35.3105zM291.311 209.655zM397.241 165.518c63.2764 0 114.759 -51.4834 114.759 -114.759c0 -63.2764 -51.4824 -114.759 -114.759 -114.759c-63.2754 0 -114.759 51.4824 -114.759 114.759c0 63.2754 51.4834 114.759 114.759 114.759z
|
||||||
|
M459.034 -37.5176v105.932h-88.2754v35.3105c0 14.5986 11.8838 26.4824 26.4824 26.4824c14.5996 0 26.4834 -11.8838 26.4834 -26.4824v-17.6553h17.6543v17.6553c0 24.3359 -19.8018 44.1377 -44.1377 44.1377s-44.1377 -19.8018 -44.1377 -44.1377v-35.3105h-17.6553
|
||||||
|
v-105.932h123.586zM459.034 -37.5176zM203.034 -19.8623h82.3887c3.97363 -6.2666 8.46484 -12.1553 13.4004 -17.6553h-237.03c-14.5986 0 -26.4824 11.8838 -26.4824 26.4834v26.4824h141.241v-8.82715c0 -14.5996 11.8838 -26.4834 26.4824 -26.4834zM203.034 -19.8623z
|
||||||
|
M353.104 -19.8623v70.6211h88.2754v-70.6211h-88.2754zM388.414 33.1035v-17.6553h17.6553v17.6553h-17.6553zM388.414 33.1035zM485.518 448c14.5986 0 26.4824 -11.8838 26.4824 -26.4824v-35.3105c0 -14.5996 -11.8838 -26.4824 -26.4824 -26.4824h-88.2764
|
||||||
|
l-52.9658 -26.4834v88.2764c0 14.5986 11.8838 26.4824 26.4834 26.4824h114.759zM397.241 395.034v17.6553h-17.6553v-17.6553h17.6553zM476.689 395.034v17.6553h-61.793v-17.6553h61.793zM476.689 395.034zM256 430.345c-23.5693 0 -45.7461 -9.18066 -62.418 -25.8574
|
||||||
|
l-12.4824 12.4824c20.0127 20.0127 46.6162 31.0303 74.9004 31.0303s54.8877 -11.0176 74.9004 -31.0303l-12.4824 -12.4824c-16.6719 16.6768 -38.8486 25.8574 -62.418 25.8574zM256 430.345zM305.939 392.009l-12.4824 -12.4834
|
||||||
|
c-10.0127 10 -23.3145 15.5088 -37.457 15.5088s-27.4443 -5.50879 -37.4482 -15.5166l-12.4785 12.4785c13.3271 13.3486 31.0518 20.6934 49.9268 20.6934c18.8662 0 36.5996 -7.34473 49.9395 -20.6807zM305.939 392.009zM167.725 333.241l-52.9658 26.4834h-88.2764
|
||||||
|
c-14.5986 0 -26.4824 11.8828 -26.4824 26.4824v35.3105c0 14.5986 11.8838 26.4824 26.4824 26.4824h114.759c14.5996 0 26.4834 -11.8838 26.4834 -26.4824v-88.2764zM114.759 412.689v-17.6553h17.6553v17.6553h-17.6553zM97.1035 395.034v17.6553h-61.793v-17.6553
|
||||||
|
h61.793zM97.1035 395.034zM231.034 367.034c13.3496 13.3447 36.582 13.3447 49.9316 0l-12.4834 -12.4824c-6.67188 6.67285 -18.293 6.67285 -24.9648 0zM231.034 367.034z" />
|
||||||
|
<glyph glyph-name="026-alert" unicode=""
|
||||||
|
d="M248.896 171.998c0 4.87598 3.95312 8.8291 8.8291 8.8291s8.82812 -3.95312 8.82812 -8.8291s-3.95215 -8.8291 -8.82812 -8.8291s-8.8291 3.95312 -8.8291 8.8291zM378.06 448c13.876 0 25.167 -11.29 25.168 -25.167v-0.682617v-41.5156v-352.258v-66.5283v-0.682617
|
||||||
|
c0 -13.877 -11.29 -25.167 -25.167 -25.167h-0.682617h-242.755h-0.682617c-13.876 0 -25.167 11.29 -25.167 25.167v0.682617v66.5283v352.258v41.5156v0.682617c0 13.877 11.291 25.167 25.167 25.167h0.682617h242.754h0.682617zM134.623 -48.9492v-0.000976562h242.755
|
||||||
|
c5.9541 0 10.7988 4.84473 10.7988 10.7988v59.0029h-91.3525c-4.15723 0 -7.52539 3.36914 -7.52539 7.52539c0 4.15527 3.36816 7.52539 7.52539 7.52539h91.3525v337.207h-197.657c-4.15723 0 -7.52539 3.36914 -7.52539 7.52539s3.36816 7.52539 7.52539 7.52539
|
||||||
|
h197.657v33.9902c0 5.9541 -4.84473 10.7988 -10.7988 10.7988h-242.755c-5.9541 0 -10.7988 -4.84473 -10.7988 -10.7988v-33.9902h36.5928c4.15723 0 7.52539 -3.36914 7.52539 -7.52539s-3.36816 -7.52539 -7.52539 -7.52539h-36.5928v-337.206h142.897
|
||||||
|
c4.15723 0 7.52539 -3.37012 7.52539 -7.52539c0 -4.15625 -3.36816 -7.52539 -7.52539 -7.52539h-142.897v-59.0029c0 -5.9541 4.84473 -10.7988 10.7988 -10.7988zM207.08 401.917c-4.15625 0 -7.52539 3.36914 -7.52539 7.52539
|
||||||
|
c0 4.15527 3.36914 7.52539 7.52539 7.52539h46.6318c4.15723 0 7.52539 -3.37012 7.52539 -7.52539c0 -4.15625 -3.36816 -7.52539 -7.52539 -7.52539h-46.6318zM288.726 401.917c-4.15625 0 -7.52539 3.36914 -7.52539 7.52539c0 4.15527 3.36914 7.52539 7.52539 7.52539
|
||||||
|
h16.1953c4.15625 0 7.52539 -3.37012 7.52539 -7.52539c0 -4.15625 -3.36914 -7.52539 -7.52539 -7.52539h-16.1953zM256.001 13.793c15.5479 0 28.1982 -12.6494 28.1982 -28.1982c0 -15.5498 -12.6494 -28.1992 -28.1982 -28.1992
|
||||||
|
c-15.5498 0 -28.1992 12.6494 -28.1992 28.1992c0 15.5488 12.6504 28.1982 28.1992 28.1982zM256.001 -27.5527c7.24902 0 13.1475 5.89746 13.1475 13.1484c0 7.25 -5.89746 13.1475 -13.1475 13.1475c-7.25098 0 -13.1484 -5.89746 -13.1484 -13.1475
|
||||||
|
c0 -7.25098 5.89746 -13.1484 13.1484 -13.1484zM361.55 131.752c-1.34473 -2.32715 -3.82812 -3.7627 -6.5166 -3.7627h-194.615c-2.68848 0 -5.17188 1.43457 -6.5166 3.7627c-0.672852 1.16406 -1.00879 2.46387 -1.00879 3.7627
|
||||||
|
c0 1.2998 0.335938 2.59863 1.00879 3.7627l97.3066 168.542c1.34473 2.3291 3.82812 3.7627 6.51758 3.7627c2.68848 0 5.17188 -1.43359 6.5166 -3.7627l97.3076 -168.542c0.671875 -1.16406 1.00781 -2.46289 1.00781 -3.7627
|
||||||
|
c0 -1.29883 -0.335938 -2.59863 -1.00781 -3.7627zM173.451 143.04h168.547l-84.2734 145.966zM250.199 246.9c0 4.15625 3.36816 7.52539 7.52539 7.52539c4.15625 0 7.52539 -3.36914 7.52539 -7.52539v-51.4434c0 -4.15625 -3.36914 -7.52539 -7.52539 -7.52539
|
||||||
|
c-4.15723 0 -7.52539 3.36914 -7.52539 7.52539v51.4434z" />
|
||||||
|
<glyph glyph-name="044-ui" unicode=""
|
||||||
|
d="M373.399 391.07c1.86035 -1.86035 2.93066 -4.44043 2.93066 -7.07031s-1.07129 -5.20996 -2.93066 -7.07031c-1.85938 -1.85938 -4.43945 -2.92969 -7.06934 -2.92969c-2.64062 0 -5.20996 1.07031 -7.07031 2.92969
|
||||||
|
c-1.87012 1.86035 -2.92969 4.44043 -2.92969 7.07031s1.05957 5.20996 2.92969 7.07031c1.86035 1.85938 4.42969 2.92969 7.07031 2.92969c2.62988 0 5.20996 -1.07031 7.06934 -2.92969zM348.369 346c5.52148 0 10 -4.47656 10 -10v-64c0 -5.52344 -4.47852 -10 -10 -10
|
||||||
|
h-64c-5.52246 0 -10 4.47656 -10 10v64c0 5.52344 4.47754 10 10 10h64zM338.369 282v44h-44v-44h44zM348.369 234c5.52148 0 10 -4.47656 10 -10v-64c0 -5.52344 -4.47754 -10 -10 -10h-64c-5.52246 0 -10 4.47656 -10 10v64c0 5.52344 4.47754 10 10 10h64zM338.369 170
|
||||||
|
v44h-44v-44h44zM316.369 122c5.52148 0 10 -4.47656 10 -10s-4.47852 -10 -10 -10h-22v-54c0 -5.52344 -4.47852 -10 -10 -10c-5.52246 0 -10 4.47656 -10 10v64c0 5.52344 4.47754 10 10 10h32zM236.333 346c5.52246 0 10 -4.47656 10 -10v-64
|
||||||
|
c0 -5.52344 -4.47754 -10 -10 -10h-64c-5.52246 0 -10 4.47656 -10 10s4.47754 10 10 10h54v54c0 5.52344 4.47754 10 10 10zM236.333 234c5.52246 0 10 -4.47656 10 -10v-64c0 -5.52344 -4.47754 -10 -10 -10h-64c-5.52246 0 -10 4.47656 -10 10v64
|
||||||
|
c0 5.52344 4.47754 10 10 10h64zM226.333 170v44h-44v-44h44zM236.333 122c5.52246 0 10 -4.47656 10 -10v-64c0 -5.52344 -4.47754 -10 -10 -10h-64c-5.52246 0 -10 4.47656 -10 10v64c0 5.52344 4.47754 10 10 10h64zM226.333 58v44h-44v-44h44zM262.799 -21.2002
|
||||||
|
c1.86133 -1.85938 2.92969 -4.42969 2.92969 -7.06934c0 -2.63086 -1.06934 -5.2002 -2.92969 -7.07031c-1.85938 -1.86035 -4.43945 -2.92969 -7.07031 -2.92969c-2.62988 0 -5.20996 1.06934 -7.06836 2.92969c-1.86133 1.87012 -2.93164 4.43945 -2.93164 7.07031
|
||||||
|
c0 2.63965 1.07129 5.20996 2.93164 7.06934c1.85938 1.87012 4.43848 2.93066 7.06836 2.93066c2.63086 0 5.21094 -1.06055 7.07031 -2.93066zM391.994 448c16.542 0 30 -13.458 30 -30v-226c0 -5.52344 -4.47852 -10 -10 -10c-5.52246 0 -10 4.47656 -10 10v226
|
||||||
|
c0 5.51367 -4.48633 10 -10 10h-271.988c-5.51367 0 -10 -4.48633 -10 -10v-3.9873h11.9941c13.041 0 24.1602 -8.36621 28.2842 -20.0127h169.716c5.52246 0 10 -4.47656 10 -10s-4.47754 -10 -10 -10h-168v-81.9873c0 -16.542 -13.458 -30 -30 -30h-92
|
||||||
|
c-16.542 0 -30 13.458 -30 30v92c0 16.542 13.458 30 30 30h60.0059v3.9873c0 16.542 13.458 30 30 30h271.988zM132 292.013v56.8447l-42.4277 -42.4287c-3.90723 -3.9043 -10.2373 -3.9043 -14.1436 0l-22.1787 22.1797l-31.6787 -31.6797
|
||||||
|
c-0.489258 -0.488281 -1.0166 -0.916992 -1.57129 -1.28223v-3.63379c0 -5.51367 4.48633 -10 10 -10h92c5.51367 0 10 4.48633 10 10zM122 394.013h-92c-5.51367 0 -10 -4.48535 -10 -10v-60.3701l26.1777 26.1787c3.90723 3.9043 10.2373 3.9043 14.1436 0
|
||||||
|
l22.1787 -22.1797l49.5 49.5v6.87109c0 5.51465 -4.48633 10 -10 10zM482 158c16.542 0 30 -13.458 30 -30v-108c0 -16.542 -13.458 -30 -30 -30h-60.0059v-24c0 -16.542 -13.458 -30 -30 -30h-271.988c-16.542 0 -30 13.458 -30 30v258c0 5.52344 4.47852 10 10 10
|
||||||
|
c5.52246 0 10 -4.47656 10 -10v-214h211.343c5.52246 0 10 -4.47656 10 -10s-4.47754 -10 -10 -10h-211.343v-24c0 -5.51367 4.48633 -10 10 -10h271.988c5.51367 0 10 4.48633 10 10v24h-27.9941c-16.542 0 -30 13.458 -30 30v108c0 16.542 13.458 30 30 30h108zM492 20
|
||||||
|
v108c0 5.51367 -4.48633 10 -10 10h-108c-5.51367 0 -10 -4.48633 -10 -10v-108c0 -5.51367 4.48633 -10 10 -10h108c5.51367 0 10 4.48633 10 10zM458.063 346c5.52148 0 10 -4.47656 10 -10v-79.6475c0 -5.52246 -4.47852 -10 -10 -10c-5.52344 0 -10 4.47754 -10 10
|
||||||
|
v79.6475c0 5.52344 4.47754 10 10 10zM465.13 225.36c1.87012 -1.86035 2.92969 -4.44043 2.92969 -7.07031s-1.05957 -5.20996 -2.92969 -7.07031c-1.86035 -1.85938 -4.43945 -2.92969 -7.07031 -2.92969c-2.62988 0 -5.20996 1.07031 -7.06836 2.92969
|
||||||
|
c-1.86133 1.86035 -2.93164 4.44043 -2.93164 7.07031s1.07129 5.20996 2.93164 7.07031c1.8584 1.85938 4.43848 2.92969 7.06836 2.92969c2.63086 0 5.20996 -1.07031 7.07031 -2.92969zM54 217.018c5.52246 0 10 -4.47656 10 -10v-68.8652
|
||||||
|
c0 -5.52344 -4.47754 -10 -10 -10s-10 4.47656 -10 10v68.8652c0 5.52344 4.47754 10 10 10zM459.181 92.8271c6.8125 -3.92871 10.8799 -10.9697 10.8789 -18.834c-0.000976562 -7.86523 -4.06934 -14.9062 -10.8838 -18.834l-35.1035 -20.2354
|
||||||
|
c-3.39941 -1.95996 -7.12793 -2.93945 -10.8574 -2.93945c-3.73633 0 -7.47168 0.983398 -10.877 2.9502c-6.80176 3.93164 -10.8643 10.9697 -10.8643 18.8252v40.4824c0 7.85742 4.0625 14.8945 10.8662 18.8262c6.80273 3.92969 14.9287 3.93262 21.7373 0.00683594z
|
||||||
|
M449.188 72.4854c0.578125 0.333984 0.871094 0.841797 0.871094 1.50781c0 0.666992 -0.292969 1.1748 -0.870117 1.50781l-35.1045 20.248c-0.289062 0.166992 -0.579102 0.25 -0.870117 0.25s-0.582031 -0.0830078 -0.871094 -0.25
|
||||||
|
c-0.577148 -0.333984 -0.870117 -0.84082 -0.870117 -1.50781v-40.4824c0 -0.666992 0.292969 -1.17383 0.870117 -1.50781c0.577148 -0.332031 1.16309 -0.333008 1.74023 -0.000976562z" />
|
||||||
|
<glyph glyph-name="005-process" unicode=""
|
||||||
|
d="M17.0664 388.267v-435.2h281.601v-17.0664h-290.134c-5.12012 0 -8.5332 3.41309 -8.5332 8.5332v443.733h17.0664zM51.2002 430.934v-443.733h281.6v-17.0664h-290.133c-5.12012 0 -8.5332 3.41309 -8.5332 8.5332v460.8c0 5.12012 3.41309 8.5332 8.5332 8.5332h281.6
|
||||||
|
v0c0.853516 0 1.70703 -0.853516 2.56055 -0.853516h0.852539c0.853516 -0.853516 1.70703 -0.853516 2.56055 -1.70605l76.7998 -76.8008c0.853516 -0.852539 0.853516 -1.70605 1.70703 -2.55957v-0.853516c0.852539 -0.853516 0.852539 -1.70703 0.852539 -2.55957v0
|
||||||
|
v-34.1338h-17.0664v25.6006h-68.2666c-5.12012 0 -8.5332 3.41309 -8.5332 8.5332v68.2666h-264.533zM380.587 371.2l-47.7871 47.7861v-47.7861h47.7871zM196.267 200.533v17.0664h17.0664v-17.0664h-17.0664zM162.134 200.533v17.0664h17.0664v-17.0664h-17.0664z
|
||||||
|
M128 200.533v17.0664h17.0664v-17.0664h-17.0664zM93.8662 200.533v17.0664h17.0674v-17.0664h-17.0674zM230.4 200.533v17.0664h17.0664v-17.0664h-17.0664zM76.7998 388.267v17.0664h17.0664v-17.0664h-17.0664zM110.934 388.267v17.0664h17.0664v-17.0664h-17.0664z
|
||||||
|
M110.934 354.134v17.0664h17.0664v-17.0664h-17.0664zM76.7998 354.134v17.0664h17.0664v-17.0664h-17.0664zM145.066 388.267v17.0664h68.2666v-17.0664h-68.2666zM145.066 354.134v17.0664h68.2666v-17.0664h-68.2666zM76.7998 294.4v17.0664h221.867v-17.0664h-221.867z
|
||||||
|
M76.7998 251.733v17.0664h290.134v-17.0664h-290.134zM76.7998 149.333v17.0674h290.134v-17.0674h-290.134zM76.7998 106.667v17.0664h290.134v-17.0664h-290.134zM76.7998 64v17.0664h187.733v-17.0664h-187.733zM281.6 64v17.0664h17.0674v-17.0664h-17.0674zM315.733 64
|
||||||
|
v17.0664h17.0664v-17.0664h-17.0664zM349.866 64v17.0664h17.0674v-17.0664h-17.0674zM477.866 166.4c18.7734 0 34.1338 -15.3604 34.1338 -34.1338s-15.3604 -34.1328 -34.1338 -34.1328c-16.2129 0 -29.8662 11.0928 -33.2793 25.5996h-34.9873v-86.1865
|
||||||
|
c14.5068 -4.2666 25.6006 -17.0664 25.6006 -33.2803c0 -18.7734 -15.3604 -34.1328 -34.1338 -34.1328s-34.1328 15.3594 -34.1328 34.1328c0 16.2139 11.0928 29.8672 25.5996 33.2803v162.986h-128v17.0664h187.733v128.854
|
||||||
|
c-14.5068 4.2666 -25.5996 17.0664 -25.5996 33.2803c0 18.7734 15.3594 34.1328 34.1328 34.1328s34.1338 -15.3594 34.1338 -34.1328c0 -16.2139 -11.0938 -29.8672 -25.6006 -33.2803v-137.387c0 -5.12012 -3.41309 -8.5332 -8.5332 -8.5332h-51.2002v-59.7334h34.9873
|
||||||
|
c4.2666 14.5068 17.0664 25.6006 33.2793 25.6006zM443.733 379.733c0 -9.38672 7.67969 -17.0664 17.0664 -17.0664s17.0664 7.67969 17.0664 17.0664s-7.67969 17.0664 -17.0664 17.0664s-17.0664 -7.67969 -17.0664 -17.0664zM418.134 4.2666
|
||||||
|
c0 9.38672 -7.68066 17.0664 -17.0674 17.0664s-17.0664 -7.67969 -17.0664 -17.0664s7.67969 -17.0664 17.0664 -17.0664s17.0674 7.67969 17.0674 17.0664zM477.866 115.2c9.38672 0 17.0674 7.67969 17.0674 17.0664s-7.68066 17.0664 -17.0674 17.0664
|
||||||
|
c-9.38574 0 -17.0664 -7.67969 -17.0664 -17.0664s7.68066 -17.0664 17.0664 -17.0664zM76.7998 21.333v17.0674h102.4v-17.0674h-102.4z" />
|
||||||
|
<glyph glyph-name="041-analysis" unicode=""
|
||||||
|
d="M213.446 413.767c98.8877 -0.107422 179.024 -80.2451 179.133 -179.132c0 -98.9326 -80.2002 -179.133 -179.133 -179.133c-98.9316 0 -179.132 80.2002 -179.132 179.133c0 98.9316 80.2002 179.132 179.132 179.132zM213.446 396.706
|
||||||
|
c-76.3096 -0.111328 -142.236 -53.3691 -158.387 -127.951h31.6465c3.87695 15.0635 17.4668 25.584 33.0205 25.5645c18.8066 -0.0234375 34.0332 -15.2881 34.0098 -34.0947c-0.0302734 -6.07227 -1.70117 -12.0234 -4.83691 -17.2217l38.7949 -38.7949
|
||||||
|
c10.5762 6.44824 23.8682 6.44824 34.4443 0l55.8555 55.8545c-3.13574 5.19922 -4.80664 11.1504 -4.83691 17.2227c0 18.8438 15.2764 34.1201 34.1201 34.1201c6.06641 -0.0410156 12.0078 -1.72168 17.1973 -4.8623l21.3252 21.3252
|
||||||
|
c-30.2871 43.1172 -79.6631 68.7969 -132.354 68.8379zM324.338 277.285c0 9.42285 -7.6377 17.0596 -17.0605 17.0596c-9.42188 0 -17.0596 -7.63672 -17.0596 -17.0596s7.6377 -17.0605 17.0596 -17.0605c9.42285 0 17.0605 7.6377 17.0605 17.0605zM221.977 174.924
|
||||||
|
c0 9.42285 -7.6377 17.0605 -17.0605 17.0605c-9.42188 0 -17.0596 -7.6377 -17.0596 -17.0605s7.6377 -17.0605 17.0596 -17.0605c9.42285 0 17.0605 7.6377 17.0605 17.0605zM136.676 260.225c0 9.42285 -7.6377 17.0605 -17.0605 17.0605
|
||||||
|
c-9.42188 0 -17.0596 -7.6377 -17.0596 -17.0605s7.6377 -17.0596 17.0596 -17.0596c9.42285 0 17.0605 7.63672 17.0605 17.0596zM292.194 92.9219c78.1855 43.4121 106.376 141.986 62.9629 220.174l-18.5957 -18.5869
|
||||||
|
c3.13574 -5.19922 4.80664 -11.1504 4.83691 -17.2227c0 -18.8438 -15.2764 -34.1201 -34.1211 -34.1201c-6.07227 0.0292969 -12.0225 1.7002 -17.2217 4.83594l-55.8555 -55.8545c3.13574 -5.19922 4.80664 -11.1504 4.83691 -17.2227
|
||||||
|
c0 -18.8438 -15.2764 -34.1201 -34.1211 -34.1201c-18.8438 0 -34.1201 15.2764 -34.1201 34.1201c0.0302734 6.07227 1.70117 12.0234 4.83691 17.2227l-38.7949 38.7949c-5.19922 -3.13574 -11.1504 -4.80664 -17.2227 -4.83691
|
||||||
|
c-15.5107 0.0585938 -29.0312 10.5723 -32.9092 25.5898h-34.4189c-0.611328 -5.73926 -0.916992 -11.5088 -0.912109 -17.2812c0.0605469 -89.4492 72.623 -161.911 162.071 -161.851c27.5547 -0.0244141 54.6592 6.9834 78.748 20.3584zM426.699 362.586
|
||||||
|
c-6.06934 0.0341797 -12.0176 1.70801 -17.2139 4.84473l-17.0605 -17.0596c45.6992 -70.3916 45.6992 -161.083 0 -231.473l25.7441 -25.7441l12.0615 -12.0615l68.667 -68.667c17.4648 -17.4648 17.4648 -45.7783 0 -63.2422
|
||||||
|
c-17.4639 -17.4648 -45.7773 -17.4648 -63.2422 0l-68.667 68.667l-12.0615 12.0615l-25.7441 25.7441c-93.3115 -60.4307 -217.394 -39.0381 -285.084 49.1494c-71.7119 93.4268 -54.1074 227.299 39.3193 299.011c93.4268 71.7109 227.299 54.1074 299.01 -39.3193
|
||||||
|
l14.9873 14.9873c-3.13574 5.19922 -4.80664 11.1494 -4.83594 17.2217c0 18.8447 15.2754 34.1211 34.1201 34.1211c15.5107 -0.0585938 29.0312 -10.5713 32.9092 -25.5908h52.3916v-17.0596h-52.3916c-3.87793 -15.0195 -17.3984 -25.5322 -32.9092 -25.5908z
|
||||||
|
M426.699 413.767c-9.42188 0 -17.0605 -7.6377 -17.0605 -17.0605c0 -9.42188 7.6377 -17.0596 17.0605 -17.0596c9.42188 0 17.0596 7.6377 17.0596 17.0596c0 9.42285 -7.6377 17.0605 -17.0596 17.0605zM486.836 0.364258l-68.667 68.667l-39.1191 -39.1191
|
||||||
|
l68.667 -68.667c0.147461 -0.150391 0.294922 -0.298828 0.445312 -0.445312c10.9248 -10.6797 28.4395 -10.4795 39.1191 0.445312s10.4795 28.4395 -0.445312 39.1191zM406.107 81.0928l-23.6113 23.6113c-0.920898 -1.20312 -1.93652 -2.3291 -2.875 -3.50586
|
||||||
|
c-1.02832 -1.29102 -2.07812 -2.56738 -3.14746 -3.83008c-1.56934 -1.86816 -3.15625 -3.71094 -4.78516 -5.51855c-0.853516 -0.930664 -1.70605 -1.81738 -2.55957 -2.73047c-3.27539 -3.49707 -6.66113 -6.88379 -10.1592 -10.1592
|
||||||
|
c-0.912109 -0.852539 -1.7998 -1.70605 -2.72949 -2.55859c-1.80859 -1.62988 -3.65039 -3.21582 -5.51855 -4.78516c-1.27148 -1.06641 -2.64453 -2.20117 -3.83008 -3.14844c-1.18555 -0.946289 -2.31152 -1.96191 -3.51465 -2.88281l23.6113 -23.6113zM373.027 120.715
|
||||||
|
c48.8145 68.3281 48.8145 160.125 0 228.453c-63.085 88.3047 -185.811 108.747 -274.114 45.6621c-88.3037 -63.0859 -108.747 -185.812 -45.6621 -274.115c63.0859 -88.3037 185.812 -108.747 274.115 -45.6611c3.75293 2.68652 7.42969 5.45898 10.9697 8.38477
|
||||||
|
c1.03223 0.861328 2.03027 1.79102 3.04492 2.64453c3.04883 2.61035 5.99316 5.30566 8.83691 8.08594c1.25098 1.21191 2.48242 2.44336 3.69434 3.69434c2.78027 2.85352 5.47559 5.7998 8.08594 8.83691c0.878906 1.01465 1.79102 2.0127 2.64453 3.04492
|
||||||
|
c2.92578 3.54004 5.69824 7.2168 8.38477 10.9697z" />
|
||||||
|
<glyph glyph-name="047-online-shop" unicode=""
|
||||||
|
d="M265.64 448c28.6562 0 51.9727 -23.3164 51.9727 -51.9766v-408.05c0 -28.6602 -23.3164 -51.9727 -51.9727 -51.9727h-213.663c-28.6602 0 -51.9766 23.3164 -51.9766 51.9727v408.05c0 28.6602 23.3164 51.9766 51.9766 51.9766h213.663zM51.9766 428
|
||||||
|
c-17.6328 0 -31.9766 -14.3438 -31.9766 -31.9727v-2.39062h93.582c5.52344 0 10 -4.48047 10 -10c0 -5.52344 -4.47656 -10 -10 -10h-93.582v-33.9531h277.612v33.9492h-93.5811c-5.52344 0 -10 4.47656 -10 10s4.47656 10 10 10h93.5811v2.39062
|
||||||
|
c0 17.6328 -14.3438 31.9766 -31.9727 31.9766h-213.663zM203.141 37.376v83.2539h-88.668v-83.2539h88.668zM213.141 140.63c5.52344 0 10 -4.47656 10 -10v-93.2539h74.4717v179.628c-7.72656 -5.50391 -17.1523 -8.74219 -27.2969 -8.74219
|
||||||
|
c-15.082 0 -28.5303 7.10938 -37.1709 18.1562c-8.64062 -11.0469 -22.0898 -18.1562 -37.168 -18.1562s-28.5273 7.10938 -37.1719 18.1562c-8.63672 -11.0469 -22.0859 -18.1562 -37.168 -18.1562c-15.0781 0 -28.5273 7.10938 -37.168 18.1562
|
||||||
|
c-8.64062 -11.0469 -22.0898 -18.1562 -37.168 -18.1562c-10.1484 0 -19.5742 3.23828 -27.3008 8.73828v-179.624h74.4727v93.2539c0 5.52344 4.48047 10 10 10h108.668zM297.612 255.492h0.00390625v64.1953h-277.612v-64.2578
|
||||||
|
c0.09375 -14.9531 12.3398 -27.168 27.2969 -27.168c14.9805 0 27.168 12.1875 27.168 27.168v24.793c0 5.52344 4.48047 10 10 10c5.52344 0 10 -4.47656 10 -10v-24.793c0 -14.9805 12.1914 -27.168 27.1719 -27.168s27.168 12.1875 27.168 27.168v24.793
|
||||||
|
c0 5.52344 4.47656 10 10 10s10 -4.47656 10 -10v-24.793c0 -14.9805 12.1875 -27.168 27.168 -27.168c14.9844 0 27.1719 12.1875 27.1719 27.168v24.793c0 5.52344 4.47656 10 10 10s10 -4.47656 10 -10v-24.793c0 -14.9805 12.1865 -27.168 27.167 -27.168
|
||||||
|
c14.9609 0 27.2031 12.2148 27.2969 27.2305zM297.612 -12.0225v29.3984h-277.612v-29.3984c0 -17.6328 14.3438 -31.9766 31.9766 -31.9766h213.663c17.6289 0 31.9727 14.3438 31.9727 31.9766zM297.612 -12.0225zM158.629 373.641
|
||||||
|
c-4.17578 0 -7.99219 2.68359 -9.40625 6.60547c-1.41797 3.93359 -0.179688 8.47266 3.0625 11.1211c3.32812 2.72266 8.13672 2.98828 11.7539 0.671875c3.48047 -2.23047 5.25781 -6.55859 4.34375 -10.5898c-1.02344 -4.51172 -5.125 -7.80859 -9.75391 -7.80859z
|
||||||
|
M158.629 373.641zM168.801 -23.3115h-19.9883c-5.52344 0 -10 4.47656 -10 10s4.47656 10 10 10h19.9883c5.52344 0 10 -4.47656 10 -10s-4.47656 -10 -10 -10zM168.801 -23.3115z" />
|
||||||
|
<glyph glyph-name="015-algorithm" unicode=""
|
||||||
|
d="M252.468 345.602l56.582 -56.585c0.367188 -0.292969 0.757812 -0.550781 1.16797 -0.773438c-24.3047 -20 -57.6445 -24.9922 -86.7422 -12.9961s-49.2305 39.0381 -52.3789 70.3545h81.3711zM252.468 345.602zM162.132 123.735h-145.065
|
||||||
|
c-9.41406 0.0273438 -17.0391 7.65234 -17.0664 17.0664v85.332c0.0273438 9.41406 7.65234 17.0391 17.0664 17.0664h59.7344v93.8662c0.0429688 14.1211 11.4805 25.5586 25.6016 25.6016h68.6904c-0.253906 -2.81641 -0.425781 -5.63281 -0.425781 -8.53516
|
||||||
|
s0.171875 -5.71875 0.425781 -8.53125h-68.6904c-4.70703 -0.015625 -8.51953 -3.82812 -8.53516 -8.53516v-93.8662h68.2646c9.41406 -0.0273438 17.0391 -7.65234 17.0664 -17.0664v-85.332c-0.0273438 -9.41406 -7.65234 -17.0391 -17.0664 -17.0664zM42.668 209.067
|
||||||
|
c-4.71484 0 -8.53516 -3.82031 -8.53516 -8.53125c0 -4.71484 3.82031 -8.53516 8.53516 -8.53516h93.8672c4.70996 0 8.53027 3.82031 8.53027 8.53516c0 4.71094 -3.82031 8.53125 -8.53027 8.53125h-93.8672zM42.668 174.935
|
||||||
|
c-4.71484 0 -8.53516 -3.82031 -8.53516 -8.53516c0 -4.71094 3.82031 -8.53125 8.53516 -8.53125h42.668c4.71094 0 8.53125 3.82031 8.53125 8.53125c0 4.71484 -3.82031 8.53516 -8.53125 8.53516h-42.668zM42.668 174.935zM196.269 192.001h17.0664
|
||||||
|
c4.71094 0 8.53125 -3.82031 8.53125 -8.53516c0 -4.71094 -3.82031 -8.53125 -8.53125 -8.53125h-17.0664c-4.71484 0 -8.53516 3.82031 -8.53516 8.53125c0 4.71484 3.82031 8.53516 8.53516 8.53516zM196.269 192.001zM290.132 183.466
|
||||||
|
c0.015625 4.71094 3.82812 8.52344 8.53516 8.53516h17.0664c4.71094 0 8.53516 -3.82031 8.53516 -8.53516c0 -4.71094 -3.82422 -8.53125 -8.53516 -8.53125h-17.0664c-4.70703 0.0117188 -8.51953 3.82422 -8.53516 8.53125zM290.132 183.466zM247.468 192.001h17.0664
|
||||||
|
c4.71094 0 8.53125 -3.82031 8.53125 -8.53516c0 -4.71094 -3.82031 -8.53125 -8.53125 -8.53125h-17.0664c-4.71484 0 -8.53516 3.82031 -8.53516 8.53125c0 4.71484 3.82031 8.53516 8.53516 8.53516zM247.468 192.001zM17.0664 379.734
|
||||||
|
c-9.41406 0.0273438 -17.0391 7.65234 -17.0664 17.0664v34.1328c0.0273438 9.41406 7.65234 17.0391 17.0664 17.0664h85.3359c9.41406 -0.0273438 17.0391 -7.65234 17.0664 -17.0664v-8.53516h27.0615c6.79297 0.0195312 13.3125 -2.68359 18.1055 -7.5l17.75 -17.75
|
||||||
|
c2.22656 3.85156 4.75391 7.52344 7.55469 10.9805l45.4609 -45.4609h-64.3047c0.667969 6.02344 1.98828 11.9609 3.92969 17.7031l-22.4609 22.4609c-1.59766 1.60547 -3.76953 2.50391 -6.03516 2.5h-27.0615v-8.53125
|
||||||
|
c-0.0273438 -9.41406 -7.65234 -17.0391 -17.0664 -17.0664h-85.3359zM17.0664 379.734zM494.932 448c9.41406 -0.0273438 17.0391 -7.65234 17.0664 -17.0664v-34.1328c-0.0273438 -9.41406 -7.65234 -17.0391 -17.0664 -17.0664h-85.3311
|
||||||
|
c-9.41406 0.0273438 -17.0391 7.65234 -17.0664 17.0664v8.53125h-44.1289c-2.26562 0.00390625 -4.44141 -0.894531 -6.03906 -2.5l-10.2578 -10.2578c4.76953 -9.36328 7.75391 -19.5352 8.79688 -29.9922c0.152344 0.0078125 0.277344 0.0859375 0.429688 0.0859375
|
||||||
|
h76.7959c14.1328 -0.015625 25.5859 -11.4688 25.6016 -25.6016v-73.5576l66.1328 -74.4102c2.81641 -3.22656 2.81641 -8.03516 0 -11.2617l-66.1328 -74.4102v-73.5576c-0.015625 -14.1328 -11.4688 -25.5859 -25.6016 -25.6016h-85.8428
|
||||||
|
c-4.52734 -40.5 -39.9062 -70.4141 -80.5977 -68.1484c-40.6914 2.26953 -72.5273 35.9258 -72.5273 76.6836c0 40.7529 31.8359 74.4131 72.5273 76.6787c40.6914 2.26953 76.0703 -27.6445 80.5977 -68.1475h85.8428c4.71484 0.00390625 8.53125 3.82422 8.53516 8.53516
|
||||||
|
v73.5576l-63.5732 71.5078h-13.2266c-4.71094 0 -8.53125 3.82031 -8.53125 8.53125c0 4.71484 3.82031 8.53516 8.53125 8.53516h13.2266l63.5732 71.5039v73.5576c-0.00390625 4.71094 -3.82031 8.53125 -8.53516 8.53516h-76.7959
|
||||||
|
c-0.160156 0 -0.289062 0.078125 -0.445312 0.0859375c-1.64453 -16.8047 -8.25781 -32.7383 -19 -45.7646c-0.222656 0.410156 -0.484375 0.800781 -0.773438 1.16797l-59.0859 59.0811l-60.0234 60.0273c17.6523 14.4453 40.3594 21.2148 63.043 18.7891
|
||||||
|
c22.6797 -2.42578 43.4414 -13.8438 57.6406 -31.6953l7.60938 7.60938c4.79297 4.82031 11.3086 7.51953 18.1055 7.5h44.1289v8.53516c0.0273438 9.41406 7.65234 17.0391 17.0664 17.0664h85.3311zM494.932 448z" />
|
||||||
|
<glyph glyph-name="003-call" unicode=""
|
||||||
|
d="M453.232 387.729c79.6914 -79.6904 79.6914 -209.361 -0.00390625 -289.053c-15.2559 -15.2598 -32.5361 -27.8428 -51.4951 -37.5264l12.5488 -12.5518c17.1543 -17.1543 17.1543 -45.0723 0 -62.2305l-29.6445 -29.6406
|
||||||
|
c-14.8135 -14.8135 -33.2324 -22.2305 -55.0605 -22.2305c-16.5439 0 -35.0449 4.25879 -55.4287 12.7832c-9.0332 3.78027 -22.5127 13.0488 -41.2051 28.3438c-0.254883 0.211914 -0.500977 0.43457 -0.740234 0.669922l-63.334 63.334
|
||||||
|
c-3.91406 3.91406 -3.91406 10.2588 0 14.1729c3.91406 3.91309 10.2578 3.91309 14.1719 0l62.9824 -62.9785c21.9297 -17.918 31.875 -23.3857 35.8594 -25.0527c39.5967 -16.5605 68.5752 -14.8809 88.583 5.13086l10.7705 10.7705l-94.6572 94.6582l-14.7002 -14.7012
|
||||||
|
c-8.43457 -8.43848 -21.7891 -9.17383 -31.0605 -1.71387c-14.2002 11.4248 -36.6152 32.1406 -59.9688 55.4131c-23.2959 23.373 -44.0078 45.792 -55.4326 59.9883c-7.46387 9.27539 -6.72852 22.6299 1.70996 31.0684l14.7012 14.6963l-94.6582 94.6572
|
||||||
|
l-10.7705 -10.7705c-20.0117 -20.0078 -21.6875 -48.9863 -5.13086 -88.583c1.58496 -3.79297 5.8623 -11.3818 17.2168 -26.0312l20.25 -22.2471l50.5684 -50.5635c3.90918 -3.91406 3.90918 -10.2578 0 -14.1719c-3.91797 -3.91406 -10.2627 -3.91406 -14.1768 0
|
||||||
|
l-50.7314 50.7314c-0.109375 0.109375 -0.219727 0.223633 -0.325195 0.34082l-20.6729 22.708c-0.172852 0.196289 -0.34082 0.395508 -0.500977 0.598633c-10.4893 13.5117 -17.0684 23.6172 -20.1133 30.9004c-19.7734 47.2764 -16.5957 84.4502 9.44336 110.489
|
||||||
|
l29.6445 29.6406c17.1582 17.1582 45.0723 17.1582 62.2305 0l12.5479 -12.5488c9.6875 18.9668 22.2744 36.2471 37.5303 51.499c79.6914 79.6914 209.358 79.6914 289.053 0zM99.9297 334.61c-9.34277 9.33887 -24.5439 9.34277 -33.8867 0l-4.7002 -4.7002
|
||||||
|
l94.6572 -94.6572l4.7002 4.7002c9.34277 9.34277 9.34277 24.54 0 33.8828zM400.109 0.540039c9.34277 9.34277 9.34277 24.5439 0 33.8867l-60.7705 60.7705c-9.34277 9.34277 -24.5439 9.34668 -33.8867 0l-4.69629 -4.69629l94.6572 -94.6572zM386.752 76.1289
|
||||||
|
c19.4082 9.06055 36.9814 21.3936 52.3086 36.7207c71.8789 71.874 71.8789 188.829 0 260.708s-188.83 71.8789 -260.708 0c-15.3232 -15.3193 -27.6602 -32.9004 -36.7168 -52.3096l33.2373 -33.2402c17.1582 -17.1543 17.1582 -45.0723 0 -62.2305l-33.5693 -33.5703
|
||||||
|
c-1.19043 -1.18555 -1.30371 -3.04492 -0.274414 -4.32812c11.0059 -13.6758 31.1934 -35.5029 53.9922 -58.3838c22.8574 -22.7754 44.6846 -42.959 58.3604 -53.9688c1.2832 -1.0293 3.14258 -0.916016 4.32812 0.274414l33.5703 33.5693
|
||||||
|
c17.1582 17.1582 45.0762 17.1543 62.2305 0zM386.752 76.1289zM143.957 68.6924c-4.19531 0 -8.00781 2.70508 -9.42871 6.64648c-1.39355 3.87402 -0.199219 8.35156 2.94727 11.0137c3.28809 2.78223 8.10938 3.12695 11.7686 0.864258
|
||||||
|
c3.51172 -2.17188 5.33496 -6.42188 4.5332 -10.4648c-0.916016 -4.63086 -5.1084 -8.05957 -9.82031 -8.05957zM143.957 68.6924zM359.647 221.201h-50.9434c-5.53418 0 -10.0195 4.48535 -10.0195 10.0195v73.8672c0 5.53418 4.48535 10.0195 10.0195 10.0195
|
||||||
|
s10.0234 -4.48535 10.0234 -10.0195v-63.8477h40.9199c5.53418 0 10.0195 -4.48438 10.0195 -10.0195c0 -5.53418 -4.48535 -10.0195 -10.0195 -10.0195zM359.647 221.201zM412.376 129.511c-2.56348 0 -5.13184 0.978516 -7.08398 2.93555
|
||||||
|
c-3.91406 3.91406 -3.91406 10.2578 0 14.1719c25.7529 25.7539 39.9365 60.0547 39.9365 96.5869c0 36.5283 -14.1836 70.8301 -39.9365 96.584c-38.6934 38.6924 -96.5957 50.5322 -147.511 30.1562c-5.13965 -2.05469 -10.9707 0.446289 -13.0293 5.58105
|
||||||
|
c-2.05566 5.13867 0.445312 10.9707 5.58496 13.0293c58.3711 23.3545 124.755 9.77344 169.123 -34.5947c29.542 -29.542 45.8086 -68.873 45.8086 -110.76c0 -41.8818 -16.2666 -81.2168 -45.8086 -110.755c-1.95312 -1.95703 -4.52051 -2.93555 -7.08398 -2.93555z
|
||||||
|
M412.376 129.511z" />
|
||||||
|
<glyph glyph-name="034-content" unicode=""
|
||||||
|
d="M153.921 173.829h111.165v-17.1025h-111.165v17.1025zM153.921 173.829zM153.921 216.585h94.0625v-17.1025h-94.0625v17.1025zM153.921 216.585zM487.415 404.71c14.167 0 25.6543 -11.4863 25.6543 -25.6533v-256.535c0 -14.167 -11.4873 -25.6533 -25.6543 -25.6533
|
||||||
|
h-188.125v-51.3066h76.9609c4.72168 0 8.55078 -3.8291 8.55078 -8.55078v-42.7559h17.1025v-17.1025h-290.739v17.1025h17.1025v42.7559c0 4.72168 3.82812 8.55078 8.55078 8.55078h76.96v51.3066h-188.125c-14.167 0 -25.6533 11.4863 -25.6533 25.6533v256.535
|
||||||
|
c0 14.167 11.4863 25.6533 25.6533 25.6533h94.0625v34.2041c0 4.72266 3.8291 8.55176 8.55176 8.55176h256.534c4.72266 0 8.55078 -3.8291 8.55078 -8.55176v-34.2041h94.0625zM487.415 387.607h-94.0625v-23.9873c14.4971 7.19824 32.0508 3.25293 42.0713 -9.45312
|
||||||
|
c10.0205 -12.71 9.7666 -30.7012 -0.614258 -43.1191l-41.457 -49.3984v-96.3721h102.614v213.779c0 4.72168 -3.8291 8.55078 -8.55176 8.55078zM328.271 210.693l76.96 91.7031l-26.2002 21.9834l-76.96 -91.7031zM296.092 215.369l-3.21484 -20.2588l19.3857 6.68945z
|
||||||
|
M421.708 322.046c6.0752 7.23633 5.13086 18.0254 -2.10449 24.0957c-7.23145 6.0752 -18.0215 5.13184 -24.0967 -2.10449l-5.49805 -6.54688l26.2002 -21.9873zM136.818 430.363v-290.739h239.433v101.641l-40.3809 -48.1455
|
||||||
|
c-0.993164 -1.18164 -2.2959 -2.06738 -3.76172 -2.56348l-47.1318 -16.2471c-2.83887 -0.980469 -5.97852 -0.400391 -8.2793 1.52441c-2.30078 1.92871 -3.42383 4.91895 -2.95605 7.87891l7.83301 49.248c0.242188 1.52832 0.901367 2.96094 1.89551 4.14648
|
||||||
|
l92.7812 110.585v82.6719h-239.433zM25.6533 387.607c-4.72266 0 -8.55078 -3.8291 -8.55078 -8.55078v-213.779h102.613v222.33h-94.0625zM367.699 -5.74512v34.2041h-222.33v-34.2041h222.33zM282.188 45.5615v51.3066h-51.3066v-51.3066h51.3066zM487.415 113.971
|
||||||
|
c4.72266 0 8.55176 3.8291 8.55176 8.55078v25.6543h-102.614v-17.1025c0 -4.72266 -3.82812 -8.55176 -8.55078 -8.55176h-256.534c-4.72266 0 -8.55176 3.8291 -8.55176 8.55176v17.1025h-102.613v-25.6543c0 -4.72168 3.82812 -8.55078 8.55078 -8.55078h461.762z
|
||||||
|
M487.415 113.971zM461.762 139.624h17.1025v-17.1025h-17.1025v17.1025zM461.762 139.624zM153.921 413.261h34.2041v-17.1025h-34.2041v17.1025zM153.921 413.261zM205.228 413.261h145.369v-17.1025h-145.369v17.1025zM205.228 413.261zM153.921 370.505h196.676v-17.1016
|
||||||
|
h-196.676v17.1016zM153.921 370.505zM153.921 327.749h17.1025v-17.1016h-17.1025v17.1016zM153.921 327.749zM188.125 327.749h17.1025v-17.1016h-17.1025v17.1016zM188.125 327.749zM222.33 327.749h94.0625v-17.1016h-94.0625v17.1016zM222.33 327.749zM153.921 284.994
|
||||||
|
h51.3066v-17.1025h-51.3066v17.1025zM153.921 284.994zM222.33 284.994h59.8574v-17.1025h-59.8574v17.1025zM222.33 284.994z" />
|
||||||
|
<glyph glyph-name="046-taxi" unicode=""
|
||||||
|
d="M264.773 448c26.2852 0 47.668 -21.3867 47.668 -47.6719v-416.656c0 -26.2852 -21.3828 -47.6719 -47.6719 -47.6719h-217.098c-26.2852 0 -47.6719 21.3867 -47.6719 47.6719v416.656c0 26.2852 21.3867 47.6719 47.6719 47.6719h217.102zM264.773 -33.7656
|
||||||
|
c9.61328 0 17.4336 7.82422 17.4336 17.4375v48.082h-251.973v-48.082c0 -9.61328 7.82422 -17.4375 17.4375 -17.4375h217.102zM47.6719 417.766c-9.61328 0 -17.4375 -7.82422 -17.4375 -17.4375v-48.082h251.973v48.082c0 9.61328 -7.82031 17.4375 -17.4375 17.4375
|
||||||
|
h-217.098zM282.207 322.012h-251.973v-260.023h251.973v260.023zM282.207 322.012zM181.422 13.6055c8.34766 0 15.1172 -6.76953 15.1172 -15.1172c0 -8.35156 -6.76953 -15.1172 -15.1172 -15.1172h-50.3984c-8.35156 0 -15.1211 6.76562 -15.1211 15.1172
|
||||||
|
c0 8.34766 6.76953 15.1172 15.1211 15.1172h50.3984zM181.422 13.6055zM60.4727 112.809c-8.35156 0 -15.1172 6.76953 -15.1172 15.1172v52.4297c0 8.34766 6.76562 15.1172 15.1172 15.1172h2.60547l13.0547 30.918c6.21484 14.7188 20.168 24.2734 35.6484 24.5039
|
||||||
|
v8.91016c0 17.4414 14.1914 31.6328 31.6328 31.6328h25.6094c17.4453 0 31.6367 -14.1914 31.6367 -31.6328v-8.91016c15.4805 -0.226562 29.4297 -9.78516 35.6484 -24.5039l13.0547 -30.918h2.60547c8.35156 0 15.1211 -6.76953 15.1211 -15.1172v-52.4297
|
||||||
|
c0 -8.34766 -6.76953 -15.1172 -15.1211 -15.1172h-5.19141v-13.1328c0 -8.34766 -6.76953 -15.1172 -15.1172 -15.1172s-15.1172 6.76953 -15.1172 15.1172v13.1328h-120.645v-13.1328c0 -8.34766 -6.76562 -15.1172 -15.1172 -15.1172
|
||||||
|
c-8.34766 0 -15.1172 6.76953 -15.1172 15.1172v13.1328h-5.19141zM142.016 259.805v-8.89062h28.4102v8.89062c0 0.769531 -0.625 1.39844 -1.39844 1.39844h-25.6094c-0.773438 0 -1.40234 -0.628906 -1.40234 -1.39844zM103.988 214.629l-8.08984 -19.1562h120.645
|
||||||
|
l-8.08984 19.1562c-1.55078 3.67578 -4.83203 6.05078 -8.35156 6.05078h-87.7578c-3.52344 0 -6.80078 -2.375 -8.35547 -6.05078zM127.105 143.043h58.2305v22.1953h-58.2305v-22.1953zM75.5898 143.043h21.2812v22.1953h-21.2812v-22.1953zM215.57 165.238v-22.1953
|
||||||
|
h21.2812v22.1953h-21.2812zM215.57 165.238z" />
|
||||||
|
<glyph glyph-name="008-system" unicode=""
|
||||||
|
d="M482.134 -4.26562c16.4648 0 29.8682 -13.3984 29.8682 -29.8682c0 -16.4648 -13.4033 -29.8682 -29.8682 -29.8682c-16.4697 0 -29.8682 13.4033 -29.8682 29.8682c0 3.39844 0.693359 6.61621 1.74805 9.66309l-100.547 102.056
|
||||||
|
c-23.9648 -21.8262 -54.8047 -36.1523 -88.9307 -39.1406v-45.708c10.0537 -4.80957 17.0654 -15 17.0654 -26.8701c0 -16.4648 -13.3984 -29.8682 -29.8682 -29.8682c-16.4648 0 -29.8633 13.4033 -29.8633 29.8682c0 15.0049 11.1621 27.3438 25.6006 29.4385v42.6465
|
||||||
|
c-35.5322 0.849609 -68.0957 13.8135 -93.6182 35.0684l-95.3125 -99.2627c0.698242 -2.5293 1.19141 -5.1416 1.19141 -7.89062c0 -16.4648 -13.3984 -29.8682 -29.8633 -29.8682c-16.4697 0 -29.8682 13.4033 -29.8682 29.8682c0 16.4697 13.3984 29.8682 29.8682 29.8682
|
||||||
|
c7.34863 0 13.999 -2.77344 19.209 -7.19238l92.2803 96.1035c0.00976562 0.0390625 0.00976562 0.078125 0.0244141 0.117188c-24.8438 25.8887 -40.5469 60.4785 -42.1973 98.7061h-39.8828c-2.08984 -14.4385 -14.4287 -25.6006 -29.4336 -25.6006
|
||||||
|
c-16.4697 0 -29.8682 13.3984 -29.8682 29.8633c0 16.4697 13.3984 29.8682 29.8682 29.8682c11.8701 0 22.0557 -7.01172 26.8701 -17.0654h42.6416c2.47559 36.0693 17.5049 68.667 40.8105 93.5205l-96.3818 97.832
|
||||||
|
c-4.17969 -2.23633 -8.88184 -3.61816 -13.9404 -3.61816c-16.4697 0 -29.8682 13.3984 -29.8682 29.8633c0 16.4697 13.3984 29.8682 29.8682 29.8682c16.4648 0 29.8633 -13.3984 29.8633 -29.8682c0 -5.18555 -1.44531 -9.99512 -3.78418 -14.2529l96.5527 -98.0029
|
||||||
|
c25.7275 21.9434 58.7891 35.4248 94.9658 36.2939v46.5283c-14.4336 2.08984 -25.6006 14.4287 -25.6006 29.4336c0 16.4697 13.4033 29.8682 29.8682 29.8682s29.8682 -13.3984 29.8682 -29.8682c0 -11.8701 -7.01172 -22.0557 -17.0703 -26.8701v-49.585
|
||||||
|
c33.4033 -2.9248 63.6572 -16.7041 87.4023 -37.7441l101.665 105.869c-0.78125 2.66113 -1.33301 5.41992 -1.33301 8.33008c0 16.4697 13.3984 29.8682 29.8682 29.8682c16.4648 0 29.8682 -13.3984 29.8682 -29.8682c0 -16.4648 -13.4033 -29.8633 -29.8682 -29.8633
|
||||||
|
c-7.20215 0 -13.7305 2.66602 -18.8965 6.93359l-99.1846 -103.291c22.1924 -24.5752 36.46 -56.3281 38.8623 -91.377h43.8135c4.81445 10.0537 15.0049 17.0703 26.8701 17.0703c16.4697 0 29.8682 -13.4033 29.8682 -29.8682
|
||||||
|
c0 -16.4697 -13.3984 -29.8682 -29.8682 -29.8682c-15.0049 0 -27.3438 11.1621 -29.4336 25.6006h-41.0547c-1.54297 -35.8398 -15.4541 -68.4521 -37.666 -93.7256l98.7012 -100.19c5.01953 3.82324 11.2061 6.18164 17.9883 6.18164zM264.531 115.49v-55.2393
|
||||||
|
c11.5625 6.90918 22.7441 23.96 30.7764 48.3936c-9.91699 3.42773 -20.21 5.80078 -30.7764 6.8457zM264.531 132.619c12.1729 -1.06445 24.0332 -3.68652 35.459 -7.55859c4.07715 17.0654 6.61621 36.792 7.06055 58.4082h-42.5195v-50.8496zM264.531 200.534h42.4316
|
||||||
|
c-0.65918 20.0928 -3.14453 38.4814 -6.97266 54.5166c-11.4209 -3.86719 -23.2812 -6.48438 -35.459 -7.54883v-46.9678zM264.531 264.621c10.5713 1.04492 20.8643 3.42773 30.7812 6.85059c-8.03223 24.4385 -19.2188 41.4893 -30.7812 48.3984v-55.249zM289.702 319.616
|
||||||
|
c8.48145 -10.5615 15.7715 -24.7119 21.4453 -41.6113c9.0918 4.50684 17.6465 10.1123 25.6055 16.6406c-13.7012 11.2354 -29.6533 19.7852 -47.0508 24.9707zM247.466 322.395c-13.6377 -4.26758 -27.3926 -23.2178 -36.6992 -52.2754
|
||||||
|
c11.7676 -3.66699 24.0918 -5.66406 36.6992 -6.00098v58.2764zM194.795 276.345c5.98633 18.3691 13.8721 33.6133 23.1055 44.6387c-19.4824 -4.95117 -37.3389 -14.0039 -52.4268 -26.3916c9.01367 -7.40723 18.8867 -13.457 29.3213 -18.2471zM247.466 247.053
|
||||||
|
c-14.1553 0.336914 -28.0078 2.51465 -41.2402 6.58203c-3.64258 -15.708 -6.02051 -33.5791 -6.66504 -53.1006h47.9053v46.5186zM247.466 183.469h-47.9932c0.43457 -21.0205 2.86621 -40.2197 6.74805 -56.9531c13.2178 4.0625 27.0801 6.21582 41.2451 6.55273v50.4004z
|
||||||
|
M247.466 115.998c-12.6172 -0.336914 -24.9463 -2.30469 -36.709 -5.97168c9.30664 -29.0723 23.0664 -48.0322 36.709 -52.3047v58.2764zM217.9 59.1328c-9.2334 11.0303 -17.124 26.2793 -23.1104 44.6582c-10.4395 -4.7998 -20.3418 -10.8154 -29.3604 -18.2324
|
||||||
|
c15.0977 -12.4072 32.9688 -21.4697 52.4707 -26.4258zM311.152 102.131c-5.67383 -16.9043 -12.9688 -31.0645 -21.4551 -41.626c17.3926 5.18066 33.3447 13.7305 47.0459 24.9609c-7.9541 6.52344 -16.499 12.1582 -25.5908 16.665zM349.233 97.2383
|
||||||
|
c21.5381 22.7441 35.1953 52.9004 36.8164 86.2305h-61.9336c-0.458984 -23.5107 -3.28613 -45.5029 -8.10547 -64.8291c11.8799 -5.60547 23.0225 -12.7881 33.2227 -21.4014zM473.599 200.534c-7.05566 0 -12.7979 -5.74219 -12.7979 -12.8027
|
||||||
|
c0 -7.05566 5.74219 -12.7979 12.7979 -12.7979c7.06055 0 12.8027 5.74219 12.8027 12.7979c0 7.06055 -5.74219 12.8027 -12.8027 12.8027zM324.023 200.534h61.8262c-2.45605 31.792 -15.918 60.4834 -36.6162 82.3438
|
||||||
|
c-10.2002 -8.61328 -21.3428 -15.7861 -33.2275 -21.3867c4.55566 -18.2666 7.33398 -38.9062 8.01758 -60.957zM482.134 430.935c-7.06055 0 -12.8027 -5.74219 -12.8027 -12.8027c0 -7.05566 5.74219 -12.7979 12.8027 -12.7979s12.7979 5.74219 12.7979 12.7979
|
||||||
|
c0 7.06055 -5.7373 12.8027 -12.7979 12.8027zM238.936 418.132c0 -7.05566 5.7373 -12.7979 12.7979 -12.7979s12.7979 5.74219 12.7979 12.7979c0 7.06055 -5.7373 12.8027 -12.7979 12.8027s-12.7979 -5.74219 -12.7979 -12.8027zM17.0654 418.132
|
||||||
|
c0 -7.05566 5.74219 -12.7979 12.8027 -12.7979c7.05566 0 12.7979 5.74219 12.7979 12.7979c0 7.06055 -5.74219 12.8027 -12.7979 12.8027c-7.06055 0 -12.8027 -5.74219 -12.8027 -12.8027zM153.032 282.844c-20.6787 -21.8555 -34.1309 -50.5322 -36.582 -82.3096
|
||||||
|
h66.0498c0.664062 21.3525 3.31055 41.3428 7.61719 59.1699c-13.3154 5.83008 -25.7861 13.584 -37.085 23.1396zM29.8682 174.934c7.05566 0 12.7979 5.74219 12.7979 12.7979c0 7.06055 -5.74219 12.8027 -12.7979 12.8027
|
||||||
|
c-7.06055 0 -12.8027 -5.74219 -12.8027 -12.8027c0 -7.05566 5.74219 -12.7979 12.8027 -12.7979zM182.412 183.469h-66.1621c1.61621 -33.3008 15.2539 -63.4326 36.7578 -86.167c11.3037 9.56543 23.7842 17.3096 37.1045 23.1396
|
||||||
|
c-4.56055 18.8965 -7.25586 40.2295 -7.7002 63.0273zM29.8682 -46.9316c7.05566 0 12.7979 5.7373 12.7979 12.7979c0 2.39746 -0.703125 4.61426 -1.85547 6.5332c0 0.00488281 0 0.00976562 -0.00488281 0.0146484c-2.23633 3.72559 -6.28418 6.25488 -10.9375 6.25488
|
||||||
|
c-7.06055 0 -12.8027 -5.74219 -12.8027 -12.8027s5.74219 -12.7979 12.8027 -12.7979zM251.733 -46.9316c7.06055 0 12.7979 5.7373 12.7979 12.7979s-5.7373 12.8027 -12.7979 12.8027s-12.7979 -5.74219 -12.7979 -12.8027s5.7373 -12.7979 12.7979 -12.7979z
|
||||||
|
M482.134 -46.9316c7.06055 0 12.7979 5.7373 12.7979 12.7979s-5.7373 12.8027 -12.7979 12.8027s-12.8027 -5.74219 -12.8027 -12.8027s5.74219 -12.7979 12.8027 -12.7979zM482.134 -46.9316z" />
|
||||||
|
<glyph glyph-name="024-information" unicode=""
|
||||||
|
d="M59.4971 408.076c0 22.0459 87.9746 39.9238 196.497 39.9238s196.509 -17.8779 196.509 -39.9238v-100.478v-11.667c0 -6.44336 -0.151367 -11.668 -0.336914 -11.668s-15.2539 -14.8945 -40.04 -21.5c-35.8486 -9.56543 -92.4092 -15.7305 -156.132 -15.7305
|
||||||
|
s-120.283 6.17578 -156.12 15.7305c-24.7744 6.60547 -39.8545 21.5 -40.04 21.5s-0.336914 5.22461 -0.336914 11.668v11.667v100.478zM99.874 204.718c35.8486 -9.55469 92.3975 -15.7188 156.12 -15.7305c63.7227 0 120.283 6.17578 156.12 15.7305
|
||||||
|
c24.7744 6.60547 39.8545 21.5 40.04 21.5c0.186523 0 0.336914 -20.792 0.336914 -46.4365v-7.60352c0 -25.6455 -0.150391 -46.4375 -0.336914 -46.4375c-0.185547 0 -15.2539 -14.8945 -40.04 -21.5c-35.8369 -9.56543 -92.3975 -15.7305 -156.12 -15.7305
|
||||||
|
s-120.283 6.17578 -156.12 15.7305c-24.7744 6.60547 -39.8545 21.5 -40.04 21.5s-0.336914 20.792 -0.336914 46.4375v7.60352c0 25.6445 0.151367 46.4365 0.336914 46.4365s15.2539 -14.8945 40.04 -21.5zM99.874 52.208
|
||||||
|
c35.8486 -9.55469 92.3975 -15.7188 156.12 -15.7305c63.7227 0 120.283 6.17578 156.12 15.7305c24.7744 6.60547 39.8545 21.5 40.04 21.5c0.186523 0 0.336914 -20.792 0.336914 -46.4365v-7.60449c0 -25.6445 -0.150391 -46.4365 -0.336914 -46.4365
|
||||||
|
c-0.185547 0 -15.2539 -14.8945 -40.04 -21.5c-35.8369 -9.56641 -92.3975 -15.7305 -156.12 -15.7305s-120.283 6.17578 -156.12 15.7305c-24.7744 6.60547 -39.8545 21.5 -40.04 21.5s-0.336914 20.792 -0.336914 46.4365v7.60449
|
||||||
|
c0 25.6445 0.151367 46.4365 0.336914 46.4365s15.2539 -14.8945 40.04 -21.5z" />
|
||||||
|
<glyph glyph-name="014-chart" unicode=""
|
||||||
|
d="M464 360c22.0557 0 40 -17.9443 40 -40v-256c0 -22.0557 -17.9443 -40 -40 -40h-128v-32h8c22.0557 0 40 -17.9443 40 -40v-8h-256v8c0 22.0557 17.9443 40 40 40h8v32h-128c-22.0557 0 -40 17.9443 -40 40v256c0 22.0557 17.9443 40 40 40h24v80h368v-80h24zM440 120
|
||||||
|
h-368v192h-16v-240h268l24 32h108v208h-16v-192zM88 360v-224h336v224h-336zM424 424h-336v-48h336v48zM366.632 -40c-3.30371 9.31152 -12.2002 16 -22.6318 16h-176c-10.4316 0 -19.3281 -6.68848 -22.6318 -16h221.264zM320 -8v32h-128v-32h128zM488 64v256
|
||||||
|
c0 13.2324 -10.7676 24 -24 24h-24v-16h16c8.82422 0 16 -7.17578 16 -16v-208c0 -8.82422 -7.17578 -16 -16 -16h-100l-19.2002 -25.5918c-2.99219 -4.00781 -7.78418 -6.4082 -12.7998 -6.4082h-268c-8.82422 0 -16 7.17578 -16 16v240c0 8.82422 7.17578 16 16 16h16v16
|
||||||
|
h-24c-13.2324 0 -24 -10.7676 -24 -24v-256c0 -13.2324 10.7676 -24 24 -24h416c13.2324 0 24 10.7676 24 24zM456 72h16v-16h-16v16zM392 72h48v-16h-48v16zM360 72h16v-16h-16v16zM104 408h16v-16h-16v16zM136 408h16v-16h-16v16zM168 408h16v-16h-16v16zM360 168v176h48
|
||||||
|
v-192h-304v64h48v-48h16v80h48v-80h16v112h48v-112h16v144h48v-144h16zM136 168v32h-16v-32h16zM312 296v-128h16v128h-16zM248 264v-96h16v96h-16zM184 232v-64h16v64h-16zM376 328v-160h16v160h-16zM104 344h16v-16h-16v16zM136 344h16v-16h-16v16zM168 344h16v-16h-16v16
|
||||||
|
zM72 104h16v-16h-16v16zM104 104h16v-16h-16v16zM136 104h16v-16h-16v16z" />
|
||||||
|
<glyph glyph-name="004-tourism" unicode=""
|
||||||
|
d="M92.0664 302.934c-3.56738 0.0078125 -6.75293 2.2334 -7.9873 5.58008l-34.5859 93.8672c-0.963867 2.61523 -0.59082 5.53613 1.00098 7.82422c1.59082 2.28809 4.19922 3.65527 6.98633 3.66113h166.187c3.57324 0 6.76855 -2.22754 8.00488 -5.58008l34.585 -93.8672
|
||||||
|
c0.96582 -2.61719 0.589844 -5.54199 -1.00488 -7.83105c-1.5957 -2.28906 -4.20898 -3.6543 -6.99902 -3.6543h-166.187zM217.72 396.8h-147.994l28.2881 -76.7998h147.994zM108.433 356.634c-2.1416 -2.21875 -5.31445 -3.1084 -8.29785 -2.32715
|
||||||
|
c-2.98438 0.78125 -5.31348 3.11133 -6.09473 6.09473s0.108398 6.15625 2.32715 8.29883l17.0664 17.0664c2.14258 2.21777 5.31543 3.10742 8.29883 2.32715c2.9834 -0.78125 5.31348 -3.11133 6.09473 -6.09473c0.780273 -2.9834 -0.109375 -6.15625 -2.32715 -8.29883z
|
||||||
|
M113.434 331.033c-3.33105 3.33301 -3.33105 8.73438 0 12.0664l42.667 42.667c2.14258 2.21777 5.31445 3.10742 8.29883 2.32715c2.9834 -0.78125 5.31348 -3.11133 6.09375 -6.09473c0.78125 -2.9834 -0.108398 -6.15625 -2.32715 -8.29883l-42.666 -42.667
|
||||||
|
c-3.33301 -3.33105 -8.73438 -3.33105 -12.0664 0zM230.4 200.533c0 -9.42578 -7.6416 -17.0664 -17.0674 -17.0664h-51.1992c-9.42578 0 -17.0674 7.64062 -17.0674 17.0664v17.0664c0 9.42578 7.6416 17.0674 17.0674 17.0674h51.1992
|
||||||
|
c9.42578 0 17.0674 -7.6416 17.0674 -17.0674v-17.0664zM162.134 200.533h51.1992v17.0664h-51.1992v-17.0664zM358.4 243.2c54.0459 0.0986328 103.063 -31.6924 125.015 -81.0801c21.9502 -49.3887 12.7021 -107.076 -23.5869 -147.128
|
||||||
|
c-36.2891 -40.0508 -92.7881 -54.9268 -144.095 -37.9385v-32.5205c0 -4.71289 -3.82031 -8.5332 -8.5332 -8.5332h-238.934c-1.12207 0.00390625 -2.23242 0.226562 -3.26855 0.657227c-1.03711 0.428711 -1.97949 1.05762 -2.77344 1.85156l-46.1904 46.1914
|
||||||
|
c-4.82129 4.79004 -7.52246 11.3115 -7.50098 18.1074v315.384c0.00683594 7.25781 -1.26074 14.4619 -3.74609 21.2812c-3.17285 8.69531 -4.79297 17.8809 -4.78711 27.1367v72.8574c0 0.110352 0.0595703 0.205078 0.0595703 0.306641
|
||||||
|
c0.0283203 0.994141 0.227539 1.97559 0.588867 2.90137c0.0517578 0.136719 0.136719 0.205078 0.205078 0.367188c0.1875 0.452148 0.416016 0.886719 0.682617 1.29688c0.229492 0.302734 0.480469 0.587891 0.750977 0.853516
|
||||||
|
c0.136719 0.145508 0.272461 0.248047 0.383789 0.383789c0.686523 0.650391 1.47656 1.18164 2.33789 1.57031c0.179688 0.12793 0.358398 0.179688 0.546875 0.255859c0.948242 0.375977 1.95703 0.578125 2.97754 0.597656h238.934
|
||||||
|
c3.57324 -0.000976562 6.76758 -2.22852 8.00391 -5.58105l59.7334 -162.133c0.303711 -0.858398 0.461914 -1.76074 0.469727 -2.6709c0.0244141 -0.0927734 0.0449219 -0.1875 0.0595703 -0.282227v-41.0537c13.7617 4.57031 28.166 6.90723 42.667 6.9209z
|
||||||
|
M241.493 430.934h-220.715l53.4619 -145.067h220.688zM25.5996 2.80762c-0.000976562 -2.26562 0.898438 -4.43945 2.50098 -6.04199l31.6328 -31.6328v310.673l-42.667 115.814v-25.0107c-0.00683594 -7.25879 1.26074 -14.4629 3.74609 -21.2822
|
||||||
|
c3.17285 -8.69531 4.79395 -17.8799 4.78711 -27.1357v-315.384zM298.667 -46.9336v31.0186c-46.9717 22.7715 -76.8008 70.3818 -76.8008 122.582s29.8291 99.8096 76.8008 122.581v39.5518h-221.867v-315.733h221.867zM358.4 -12.7998
|
||||||
|
c65.9502 0.0703125 119.396 53.5156 119.466 119.467c0 65.9795 -53.4863 119.467 -119.466 119.467c-65.9805 0 -119.467 -53.4873 -119.467 -119.467s53.4863 -119.467 119.467 -119.467zM102.4 251.733c4.71289 0 8.5332 -3.82031 8.5332 -8.5332v-17.0664
|
||||||
|
c0 -4.71289 -3.82031 -8.53418 -8.5332 -8.53418s-8.53418 3.82129 -8.53418 8.53418v17.0664c0 4.71289 3.82129 8.5332 8.53418 8.5332zM102.4 200.533c4.71289 0 8.5332 -3.82031 8.5332 -8.5332v-213.333c0 -4.71289 -3.82031 -8.5332 -8.5332 -8.5332
|
||||||
|
s-8.53418 3.82031 -8.53418 8.5332v213.333c0 4.71289 3.82129 8.5332 8.53418 8.5332zM384 64c9.42578 0 17.0664 -7.64062 17.0664 -17.0664v-17.0674c0 -9.4248 -7.64062 -17.0664 -17.0664 -17.0664h-51.2002c-9.42578 0 -17.0664 7.6416 -17.0664 17.0664v17.0674
|
||||||
|
c0 9.42578 7.64062 17.0664 17.0664 17.0664v25.5996c-9.42578 0 -17.0664 7.6416 -17.0664 17.0674v17.0664c0 9.42578 7.64062 17.0664 17.0664 17.0664h34.1338c9.42578 0 17.0664 -7.64062 17.0664 -17.0664v-59.7334zM384 29.8662v17.0674h-8.5332
|
||||||
|
c-4.71289 0 -8.5332 3.82031 -8.5332 8.5332v68.2666h-34.1338v-17.0664h8.5332c4.71289 0 8.5332 -3.82129 8.5332 -8.5332v-42.667c0 -4.71289 -3.82031 -8.5332 -8.5332 -8.5332h-8.5332v-17.0674h51.2002zM358.4 149.333c-14.1387 0 -25.6006 11.4619 -25.6006 25.6006
|
||||||
|
s11.4619 25.5996 25.6006 25.5996c14.1377 0 25.5996 -11.4609 25.5996 -25.5996s-11.4619 -25.6006 -25.5996 -25.6006zM358.4 183.467c-4.71289 0 -8.53418 -3.82031 -8.53418 -8.5332s3.82129 -8.5332 8.53418 -8.5332s8.5332 3.82031 8.5332 8.5332
|
||||||
|
s-3.82031 8.5332 -8.5332 8.5332z" />
|
||||||
|
<glyph glyph-name="039-computer-1" unicode=""
|
||||||
|
d="M316 102c5.51953 0 10 -4.48047 10 -10s-4.48047 -10 -10 -10s-10 4.48047 -10 10s4.48047 10 10 10zM316 102zM462 448c27.5703 0 50 -22.4297 50 -50v-306c0 -27.5703 -22.4297 -50 -50 -50h-156v-46h10c27.5703 0 50 -22.4297 50 -50c0 -5.52344 -4.47656 -10 -10 -10
|
||||||
|
h-200c-5.52344 0 -10 4.47656 -10 10c0 13.3516 5.20312 25.9023 14.6484 35.3516c9.44922 9.44531 22 14.6484 35.3516 14.6484h10v46h-156c-27.5703 0 -50 22.4297 -50 50v306c0 27.5703 22.4297 50 50 50h412zM50 428c-16.543 0 -30 -13.457 -30 -30v-256h46v150
|
||||||
|
c0 1.55078 0.367188 3.01953 0.992188 4.31641c0.0234375 0.0507812 0.0390625 0.105469 0.0625 0.15625l40 80c1.69531 3.38672 5.15625 5.52734 8.94531 5.52734s7.25 -2.14062 8.94531 -5.52734l40 -80c0.0234375 -0.0507812 0.0390625 -0.105469 0.0664062 -0.15625
|
||||||
|
c0.613281 -1.28516 0.988281 -2.73047 0.988281 -4.31641v-150h50.0547c0.109375 10.25 0.394531 20.4531 0.84375 30.4492c1.89844 41.8789 6.26562 70.1367 8.42969 82.1016c-18.6797 15.7656 -22.8945 42.4805 -11.0039 63.1055l34.6758 60.0352
|
||||||
|
c1.78516 3.09375 5.08594 5 8.66016 5c3.57031 0 6.87109 -1.90625 8.66016 -5l34.6602 -60.0312c12.6133 -21.875 6.98047 -50.0312 -13.6523 -65.2227c2.07422 -12 6.0625 -39.2812 7.8125 -80.0078c0.429688 -9.89062 0.699219 -20.0859 0.804688 -30.4297h50.0547v230
|
||||||
|
c0 5.52344 4.47656 10 10 10h80c5.52344 0 10 -4.47656 10 -10v-230h46v256c0 16.543 -13.457 30 -30 30h-412zM366 142h60v20h-10c-5.52344 0 -10 4.47656 -10 10s4.47656 10 10 10h10v40h-10c-5.52344 0 -10 4.47656 -10 10s4.47656 10 10 10h10v30h-10
|
||||||
|
c-5.52344 0 -10 4.47656 -10 10s4.47656 10 10 10h10v30h-10c-5.52344 0 -10 4.47656 -10 10s4.47656 10 10 10h10v20h-60v-220zM257.66 242.691c-4.67578 0 -9.28906 0.648438 -13.7188 1.91016c-1.97266 -12.2969 -4.82812 -33.6719 -6.51953 -62.6016h37.2227
|
||||||
|
c-1.61328 28.9492 -4.33984 49.9961 -6.19531 61.8906c-3.53906 -0.78125 -7.15625 -1.19922 -10.7891 -1.19922zM257.66 262.691c23 0 37.5352 24.9609 25.9961 44.9727l-25.9961 45.0273l-26.0117 -45.0312c-11.582 -20.0938 3.15625 -44.9688 26.0117 -44.9688z
|
||||||
|
M236.504 162c-0.222656 -6.61328 -0.375 -13.2969 -0.449219 -20h39.8945c-0.0703125 6.74609 -0.214844 13.4297 -0.425781 20h-39.0195zM126 142h20v140h-20v-140zM86 142h20v140h-20v-140zM92.1797 302h47.6406l-23.8203 47.6406zM344.285 -44
|
||||||
|
c-4.125 11.6406 -15.2461 20 -28.2852 20h-120c-8.00781 0 -15.5391 -3.12109 -21.2109 -8.78906c-3.21875 -3.22266 -5.61719 -7.04297 -7.08594 -11.2109h176.582zM286 -4v46h-60v-46h60zM462 62c16.543 0 30 13.457 30 30v30h-472v-30c0 -16.543 13.457 -30 30 -30h412z
|
||||||
|
M462 62zM276 102c5.52344 0 10 -4.47656 10 -10s-4.47656 -10 -10 -10h-60c-5.52344 0 -10 4.47656 -10 10s4.47656 10 10 10h60zM276 102z" />
|
||||||
|
<glyph glyph-name="009-padlock" unicode=""
|
||||||
|
d="M363.354 109.419v-33.0322h82.5811v-99.0967h-115.613v99.0967h16.5166v33.0322c0 22.7666 18.5244 41.291 41.29 41.291c22.7666 0 41.29 -18.5244 41.29 -41.291v-16.5156h-16.5156v16.5156c0 13.6572 -11.1172 24.7744 -24.7744 24.7744
|
||||||
|
s-24.7744 -11.1172 -24.7744 -24.7744zM429.419 -6.19336v66.0645h-82.5801v-66.0645h82.5801zM429.419 -6.19336zM379.871 43.3545h16.5156v-16.5156h-16.5156v16.5156zM379.871 43.3545zM74.3223 414.968h16.5166v-16.5166h-16.5166v16.5166zM74.3223 414.968z
|
||||||
|
M107.354 414.968h16.5166v-16.5166h-16.5166v16.5166zM107.354 414.968zM41.29 414.968h16.5166v-16.5166h-16.5166v16.5166zM41.29 414.968zM165.161 334.311l-51.835 31.1084h-88.5518c-13.6572 0 -24.7744 11.1172 -24.7744 24.7744v33.0322
|
||||||
|
c0 13.6572 11.1172 24.7744 24.7744 24.7744h115.612c13.6572 0 24.7744 -11.1172 24.7744 -24.7744v-88.915zM16.5166 390.193c0 -4.55664 3.70898 -8.25781 8.25781 -8.25781h93.125l30.7461 -18.4395v59.7295c0 4.55664 -3.70996 8.25781 -8.25879 8.25781h-115.612
|
||||||
|
c-4.54883 0 -8.25781 -3.70117 -8.25781 -8.25781v-33.0322zM16.5166 390.193zM487.226 448c13.6572 0 24.7744 -11.1172 24.7744 -24.7744v-33.0322c0 -13.6572 -11.1172 -24.7744 -24.7744 -24.7744h-88.5518l-51.835 -31.1084v88.915
|
||||||
|
c0 13.6572 11.1172 24.7744 24.7744 24.7744h115.612zM495.483 390.193v33.0322c0 4.55664 -3.70898 8.25781 -8.25781 8.25781h-115.612c-4.54883 0 -8.25879 -3.70117 -8.25879 -8.25781v-59.7295l30.7461 18.4395h93.125c4.54883 0 8.25781 3.70117 8.25781 8.25781z
|
||||||
|
M495.483 390.193zM478.968 282.839v-139.032c20.4316 -22.1006 33.0322 -51.54 33.0322 -83.9355c0 -68.3027 -55.5684 -123.871 -123.871 -123.871c-27.7617 0 -53.3301 9.29004 -74.0078 24.7744h-239.799c-22.7656 0 -41.29 18.5244 -41.29 41.29v280.774
|
||||||
|
c0 22.7656 18.5244 41.29 41.29 41.29h363.355c22.7656 0 41.29 -18.5244 41.29 -41.29zM49.5488 282.839v-239.484h16.5156v231.227c0 9.1084 7.40723 16.5156 16.5166 16.5156h346.838c9.10938 0 16.5166 -7.40723 16.5166 -16.5156v-105.234
|
||||||
|
c5.81445 -3.08008 11.2979 -6.66895 16.5156 -10.6084v124.101c0 13.6572 -11.1162 24.7744 -24.7734 24.7744h-363.355c-13.6572 0 -24.7734 -11.1172 -24.7734 -24.7744zM198.193 26.8389v-8.25781c0 -4.55664 3.70996 -8.25879 8.25781 -8.25879h68.2227
|
||||||
|
c-2.33105 5.31934 -4.23047 10.8428 -5.80664 16.5166h-70.6738zM265.488 43.3545c-0.726562 5.41602 -1.23047 10.8994 -1.23047 16.5166c0 23.9551 6.95215 46.2705 18.7705 65.2461l-10.5117 2.63672v17.5889c-5.17773 -1.83496 -10.7178 -2.8916 -16.5166 -2.8916
|
||||||
|
s-11.3389 1.04883 -16.5166 2.8916v-17.5967l-47.3018 -11.8184c-11.04 -2.7666 -18.7627 -12.6533 -18.7627 -24.041v-48.5322h92.0693zM256 158.968c18.2178 0 33.0322 14.8145 33.0322 33.0322v16.5166c0 18.2168 -14.8145 33.0322 -33.0322 33.0322
|
||||||
|
s-33.0322 -14.8154 -33.0322 -33.0322v-16.5166c0 -18.2178 14.8145 -33.0322 33.0322 -33.0322zM293.415 139.544c22.7461 26.9883 56.7422 44.1982 94.7139 44.1982c14.4922 0 28.3506 -2.63379 41.29 -7.22559v98.0645h-346.838v-231.227h74.3223v48.5322
|
||||||
|
c0 18.9844 12.8584 35.4521 31.2744 40.0527l34.79 8.70215v14.5273c-10.1094 9.08496 -16.5166 22.2061 -16.5166 36.8311v16.5166c0 27.3262 22.2227 49.5479 49.5488 49.5479s49.5488 -22.2217 49.5488 -49.5479v-16.5166
|
||||||
|
c0 -14.6328 -6.40723 -27.7539 -16.5166 -36.8311v-14.5361zM49.5488 2.06445c0 -13.6572 11.1162 -24.7744 24.7734 -24.7744h221.738c-4.625 5.14551 -8.81836 10.6533 -12.5361 16.5166h-77.0732c-13.6572 0 -24.7734 11.1172 -24.7734 24.7744v8.25781h-132.129
|
||||||
|
v-24.7744zM388.129 -47.4834c59.1934 0 107.354 48.1611 107.354 107.354s-48.1611 107.354 -107.354 107.354s-107.354 -48.1611 -107.354 -107.354s48.1611 -107.354 107.354 -107.354zM388.129 -47.4834zM379.871 414.968h16.5156v-16.5166h-16.5156v16.5166z
|
||||||
|
M379.871 414.968zM412.903 414.968h66.0645v-16.5166h-66.0645v16.5166zM412.903 414.968zM256 431.483c-22.0566 0 -42.7939 -8.58789 -58.3916 -24.1895l-11.6768 11.6777c18.7217 18.7217 43.6006 29.0283 70.0684 29.0283s51.3467 -10.3066 70.0684 -29.0283
|
||||||
|
l-11.6768 -11.6777c-15.5977 15.6016 -36.335 24.1895 -58.3916 24.1895zM256 431.483zM302.718 395.621l-11.6777 -11.6777c-9.3584 9.35547 -21.8018 14.5078 -35.04 14.5078s-25.6816 -5.15234 -35.0322 -14.5156l-11.6855 11.6729
|
||||||
|
c12.4717 12.4883 29.0605 19.3594 46.7178 19.3594c17.6494 0 34.2383 -6.87109 46.7178 -19.3467zM302.718 395.621zM232.637 372.258c12.4805 12.4844 34.2461 12.4844 46.7178 0l-11.6855 -11.6768c-6.2334 6.24121 -17.1123 6.24121 -23.3467 0zM232.637 372.258z" />
|
||||||
|
</font>
|
||||||
|
</defs></svg>
|
||||||
|
After Width: | Height: | Size: 188 KiB |
BIN
public/assets/fonts/Flaticon.ttf
Normal file
BIN
public/assets/fonts/Flaticon.woff
Normal file
BIN
public/assets/fonts/Flaticon.woff2
Normal file
BIN
public/assets/fonts/Flaticond41ds.eot
Normal file
BIN
public/assets/images/about/2.webp
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/assets/images/about/3.webp
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
public/assets/images/about/ab-shape.png
Normal file
|
After Width: | Height: | Size: 9.1 KiB |
BIN
public/assets/images/about/ab1.png
Normal file
|
After Width: | Height: | Size: 118 KiB |
BIN
public/assets/images/about/ab2.png
Normal file
|
After Width: | Height: | Size: 118 KiB |
BIN
public/assets/images/about/about .webp
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
public/assets/images/about/about-2.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
public/assets/images/about/about-bg.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/images/about/about-bg2.jpg
Normal file
|
After Width: | Height: | Size: 188 KiB |
BIN
public/assets/images/about/about-shape2.png
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
BIN
public/assets/images/about/about-shape4.png
Normal file
|
After Width: | Height: | Size: 174 B |
BIN
public/assets/images/about/about-shpe.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
public/assets/images/about/about.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
public/assets/images/about/about.webp
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
public/assets/images/about/about2.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
public/assets/images/about/about3.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
public/assets/images/about/awoard.jpg
Normal file
|
After Width: | Height: | Size: 99 KiB |
BIN
public/assets/images/about/ceo-bg.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
public/assets/images/about/future.webp
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
public/assets/images/about/img-1 .webp
Normal file
|
After Width: | Height: | Size: 8.1 KiB |
BIN
public/assets/images/about/img-3 .webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
public/assets/images/about/innovative.webp
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
public/assets/images/about/teamwork.webp
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
public/assets/images/about/testimonial/testimonial-1.webp
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
public/assets/images/about/testimonial/testimonial-2.webp
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
public/assets/images/about/watch-us-live-section.webp
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
public/assets/images/add/icon-1.webp
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
BIN
public/assets/images/add/icon-2.webp
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
public/assets/images/add/icon-3.webp
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
public/assets/images/add/icon-4.webp
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
public/assets/images/blog/blog-cards/ai-revolution.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
public/assets/images/blog/blog-cards/blog-2.webp
Normal file
|
After Width: | Height: | Size: 185 KiB |
BIN
public/assets/images/blog/blog-cards/boost.webp
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
public/assets/images/blog/blog-cards/custom-web-design.webp
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
public/assets/images/blog/blog-cards/digital-marketing.webp
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
BIN
public/assets/images/blog/blog-cards/importance-local-seo.webp
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
public/assets/images/blog/blog-cards/insta-vs-fb.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
public/assets/images/blog/blog-cards/local-seo.webp
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
public/assets/images/blog/blog-cards/mobile-commerce.webp
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
public/assets/images/blog/blog-cards/on-vs-off-page.webp
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
public/assets/images/blog/blog-cards/optimize-website.webp
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/assets/images/blog/blog-cards/top-10.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/images/blog/blog-cards/viral-content.webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
public/assets/images/blog/blog-cards/white-vs-black.webp
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
public/assets/images/blog/blog-cards/winning.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
public/assets/images/blog/blog-details/ai-revolution.webp
Normal file
|
After Width: | Height: | Size: 87 KiB |
BIN
public/assets/images/blog/blog-details/blog-large-2.webp
Normal file
|
After Width: | Height: | Size: 528 KiB |