Commit 8eb49dc9 by sujata

changes updated

1 parent da8f014e
Showing 46 changed files with 1792 additions and 518 deletions
...@@ -119,7 +119,7 @@ const CallBackRequest = () => { ...@@ -119,7 +119,7 @@ const CallBackRequest = () => {
viewport={{ once: false, amount: 0.4 }} viewport={{ once: false, amount: 0.4 }}
> >
<Image <Image
src="/images/calltoaction.webp" src="/images/contact-us.png"
layout="fill" layout="fill"
className="img-fluid image" className="img-fluid image"
alt="image" alt="image"
......
import React from "react";
import { Swiper, SwiperSlide } from "swiper/react";
import { Autoplay, Navigation } from "swiper/modules";
import Image from "next/image";
import SwiperNav from "./SwiperNav";
import { cleanImage } from "@/layout/imageHandling";
const Clientele = ({
partners = [],
spaceBetween = 10,
autoplayDelay = 3000,
slidesPerViewBreakpoints = {
0: { slidesPerView: 2 },
576: { slidesPerView: 3 },
768: { slidesPerView: 4 },
992: { slidesPerView: 4 },
},
sliderClassName = "partner-slides position-relative",
itemClassName = "single-partner-item",
}) => {
console.log("clientlogo",partners)
return (
<div className="partner-area">
<div className="container">
<div className="position-relative">
<Swiper
spaceBetween={spaceBetween}
breakpoints={slidesPerViewBreakpoints}
loop={true}
autoplay={{
delay: autoplayDelay,
disableOnInteraction: true,
pauseOnMouseEnter: true,
}}
// navigation={{
// nextEl: ".custom-swiper-button-next",
// prevEl: ".custom-swiper-button-prev",
// }}
modules={[Autoplay]}
className={sliderClassName}
>
{partners &&
partners?.map((logo) => (
<SwiperSlide className={itemClassName} key={logo.id}>
<div className="justify-content-center align-items-center ">
<Image
alt={logo?.logos[0]?.alternativeText ? logo?.logos[0]?.alternativeText : "image"}
src={cleanImage(logo?.logos[0]?.url)}
fill
className="img-fluid image industry-logo"
/>
</div>
</SwiperSlide>
))}
</Swiper>
{/* <div className="cust_nav text-center mt-md-4 mt-2">
<SwiperNav />
</div> */}
</div>
</div>
</div>
);
};
export default Clientele;
import React from "react"; import React from "react";
import { Swiper, SwiperSlide } from "swiper/react";
import { Autoplay, Navigation } from "swiper/modules";
import Image from "next/image"; import Image from "next/image";
import SwiperNav from "./SwiperNav";
import { cleanImage } from "@/layout/imageHandling"; import { cleanImage } from "@/layout/imageHandling";
const Clientele = ({ const Clientele = ({ partners = [], itemClassName = "single-partner-item" }) => {
partners = [],
spaceBetween = 10,
autoplayDelay = 3000,
slidesPerViewBreakpoints = {
0: { slidesPerView: 2 },
576: { slidesPerView: 3 },
768: { slidesPerView: 4 },
992: { slidesPerView: 4 },
},
sliderClassName = "partner-slides position-relative",
itemClassName = "single-partner-item",
}) => {
console.log("clientlogo",partners)
return ( return (
<div className="partner-area"> <div className="partner-area py-4 overflow-hidden">
<div className="container"> <div className="container">
<div className="position-relative"> <div className="marquee-wrapper position-relative">
<Swiper <div className="marquee-track d-flex">
spaceBetween={spaceBetween} {partners.concat(partners).map((logo, index) => (
breakpoints={slidesPerViewBreakpoints} <div
loop={true} className={`${itemClassName} d-flex justify-content-center align-items-center `}
autoplay={{ key={`${logo.id}-${index}`}
delay: autoplayDelay, style={{ flex: "0 0 auto", width: "300px", height: "80px" }}
disableOnInteraction: true,
pauseOnMouseEnter: true,
}}
// navigation={{
// nextEl: ".custom-swiper-button-next",
// prevEl: ".custom-swiper-button-prev",
// }}
modules={[Autoplay]}
className={sliderClassName}
> >
{partners &&
partners?.map((logo) => (
<SwiperSlide className={itemClassName} key={logo.id}>
<div className="justify-content-center align-items-center ">
<Image <Image
alt={logo?.logos[0]?.alternativeText ? logo?.logos[0]?.alternativeText : "image"} alt={logo?.logos[0]?.alternativeText || "image"}
src={cleanImage(logo?.logos[0]?.url)} src={cleanImage(logo?.logos[0]?.url)}
fill width={120}
className="img-fluid image industry-logo" height={60}
className="img-fluid industry-logo"
/> />
</div> </div>
</SwiperSlide>
))} ))}
</Swiper>
{/* <div className="cust_nav text-center mt-md-4 mt-2">
<SwiperNav />
</div> */}
</div> </div>
</div> </div>
</div> </div>
<style jsx>{`
.marquee-wrapper {
width: 100%;
overflow: hidden;
position: relative;
}
.marquee-track {
display: flex;
width: max-content;
animation: scroll-left 30s linear infinite;
}
@keyframes scroll-left {
0% {
transform: translateX(0%);
}
100% {
transform: translateX(-50%);
}
}
`}</style>
</div>
); );
}; };
......
...@@ -4,7 +4,7 @@ import React from "react"; ...@@ -4,7 +4,7 @@ import React from "react";
import { Col, Container, Row } from "react-bootstrap"; import { Col, Container, Row } from "react-bootstrap";
const DownloadBtn = ({subtitle,title,description,cta}) => { const DownloadBtn = ({subtitle,title,description,cta}) => {
// console.log(cta,"details") console.log(cta,"details")
return ( return (
<> <>
<div className="free-quote-area ptb-70"> <div className="free-quote-area ptb-70">
......
import React from "react";
import {
Accordion,
AccordionItem,
AccordionItemHeading,
AccordionItemButton,
AccordionItemPanel,
} from "react-accessible-accordion";
import Heading from "./Heading";
const FaqContent = () => {
return (
<>
<div className="faq-area">
<div className="container">
<div className="section-title">
{/* <span className="sub-title">{heading.Subtitle}</span> */}
<Heading el="h2" heading="FAQs" />
</div>
<div className="faq-accordion">
<Accordion allowZeroExpanded preExpanded={["a"]}>
<AccordionItem uuid="a">
<AccordionItemHeading>
<AccordionItemButton>
Are we another workflow automation tool?
</AccordionItemButton>
</AccordionItemHeading>
<AccordionItemPanel>
<p>
No, we are work automation phygital (physical + digital) solution for CA & finance consulting firms.
</p>
</AccordionItemPanel>
</AccordionItem>
<AccordionItem uuid="b">
<AccordionItemHeading>
<AccordionItemButton>
Are we asking you to outsource your client work to us?
</AccordionItemButton>
</AccordionItemHeading>
<AccordionItemPanel>
<p>
No, we are here to empower you to deliver services to your clients in a digital environment with the support of a highly trained remote physical work force.
</p>
</AccordionItemPanel>
</AccordionItem>
<AccordionItem uuid="c">
<AccordionItemHeading>
<AccordionItemButton>
Is this a plug-n-play?
</AccordionItemButton>
</AccordionItemHeading>
<AccordionItemPanel>
<p>
Yes, you just pay for the time or effort consumed. There are no prior fixed commitments on how many hours or days service you want to avail.
</p>
</AccordionItemPanel>
</AccordionItem>
</Accordion>
</div>
</div>
</div>
</>
);
};
export default FaqContent;
\ No newline at end of file \ No newline at end of file
...@@ -107,7 +107,7 @@ const Industries = ({ industry }) => { ...@@ -107,7 +107,7 @@ const Industries = ({ industry }) => {
<SwiperSlide className="single-partner-item" key={index}> <SwiperSlide className="single-partner-item" key={index}>
<Container> <Container>
<Row className="align-items-center"> <Row className="align-items-center">
<Col lg={5} md={12}> <Col lg={6} md={12}>
<div className="free-quote-content"> <div className="free-quote-content">
<span className="sub-title">{industry?.Subtitle}</span> <span className="sub-title">{industry?.Subtitle}</span>
<Heading <Heading
...@@ -131,7 +131,7 @@ const Industries = ({ industry }) => { ...@@ -131,7 +131,7 @@ const Industries = ({ industry }) => {
</div> </div>
</Col> </Col>
<Col lg={7} md={12}> <Col lg={6} md={12}>
<Image <Image
src={cleanImage(industry?.Image?.url)} src={cleanImage(industry?.Image?.url)}
alt={ alt={
......
import React from "react";
import { Col, Container, Row } from "react-bootstrap";
import Heading from "../Heading";
const Card = ({ heading, data }) => {
return (
<section className="ptb-50">
<Container>
<Row className="justify-content-center">
<Col md={12}>
<Heading el="h2" heading={heading?.Title} className="text-center" />
<p className="text-center mb-2">{heading?.Description}</p>
</Col>
{data.map((item, index) => (
<Col
key={index}
md={4}
className="d-flex justify-content-center mb-4 mt-3"
>
<div className={`custom-card ${item.CardClass}`}>
{/* <h5 className="card-title">{item.Title}</h5> */}
<div className="card-image">
<div className="card-badge">{item.Title}</div>{" "}
{/* <-- Badge here */}
<img src="/images/GCC.png" alt={item.Title} />
<div className="overlay"></div>
<div className="card-content">
<div
className="Description"
dangerouslySetInnerHTML={{ __html: item.Description }}
/>
</div>
</div>
</div>
</Col>
))}
</Row>
</Container>
</section>
);
};
export default Card;
...@@ -21,7 +21,7 @@ const MethodOne = ({ ...@@ -21,7 +21,7 @@ const MethodOne = ({
autoplayDelay = 5000, autoplayDelay = 5000,
} = sliderConfig; } = sliderConfig;
// console.log(data, "title") console.log(data, "title")
return ( return (
<> <>
......
...@@ -6,9 +6,11 @@ import { cleanImage } from "@/layout/imageHandling"; ...@@ -6,9 +6,11 @@ import { cleanImage } from "@/layout/imageHandling";
import qs from "qs"; import qs from "qs";
import axios from "axios"; import axios from "axios";
import Seo from "@/components/reuseables/Seo/Seo"; import Seo from "@/components/reuseables/Seo/Seo";
import LeftSideImage from "../Corpedia/LeftSideImage";
import RightSideImage from "../Corpedia/RightSideImage";
const Careers = ({ CareerPage }) => { const Careers = ({ CareerPage }) => {
console.log(CareerPage, "CareerPage") console.log(CareerPage, "CareerPage");
const banners = [ const banners = [
{ {
imageSrc: cleanImage(CareerPage?.Banner?.Image?.url), imageSrc: cleanImage(CareerPage?.Banner?.Image?.url),
...@@ -21,7 +23,7 @@ const Careers = ({ CareerPage }) => { ...@@ -21,7 +23,7 @@ const Careers = ({ CareerPage }) => {
]; ];
const seo = CareerPage?.seo; const seo = CareerPage?.seo;
console.log(seo, "seo") // console.log(seo, "seo")
return ( return (
<> <>
...@@ -46,9 +48,7 @@ const Careers = ({ CareerPage }) => { ...@@ -46,9 +48,7 @@ const Careers = ({ CareerPage }) => {
href="https://advithconsulting.zohorecruit.in/careers" href="https://advithconsulting.zohorecruit.in/careers"
target="_blank" target="_blank"
> >
<button className="default-btn mt-4"> <button className="default-btn mt-4">
Browse Jobs <i className="ri-arrow-right-line"></i> Browse Jobs <i className="ri-arrow-right-line"></i>
</button> </button>
</Link> </Link>
...@@ -56,6 +56,37 @@ const Careers = ({ CareerPage }) => { ...@@ -56,6 +56,37 @@ const Careers = ({ CareerPage }) => {
</Row> </Row>
</Container> </Container>
</section> </section>
<div className="cfo-services-area ptb-100">
<section className="cfo-page">
{dynamicdata &&
dynamicdata?.map((section, index) => {
console.log("section", section);
switch (section.__component) {
case "dynamic-zone.about":
return (
<LeftSideImage
title={section?.Title}
subtitle={section?.Subtitle}
image={section?.Image}
content={section?.Content}
/>
);
case "dynamic-zone.background":
return (
<RightSideImage
title={section?.Title}
subtitle={section?.Subtitle}
image={section?.Image}
content={section?.Content}
/>
);
default:
return null;
}
})}
</section>
</div>
</> </>
); );
}; };
...@@ -67,6 +98,9 @@ export async function getServerSideProps() { ...@@ -67,6 +98,9 @@ export async function getServerSideProps() {
const query1 = { const query1 = {
populate: [ populate: [
"Banner.Image", "Banner.Image",
"CareerDetails",
"CareerDetails.Image",
"CareerDetails.Heading",
"seo", "seo",
"seo.metaImage", "seo.metaImage",
"seo.schema", "seo.schema",
......
...@@ -127,9 +127,8 @@ const ContactForm = () => { ...@@ -127,9 +127,8 @@ const ContactForm = () => {
<span className="sub-title">SEND MESSAGE</span> <span className="sub-title">SEND MESSAGE</span>
<Heading heading="Write to Us!" /> <Heading heading="Write to Us!" />
<p> <p>
Connect with us today for an insightful discussion on how Lets connect to explore how Adviths customized solutions can drive your business forward.
Advith Consulting's tailored services can help propel your
business towards success
</p> </p>
<form onSubmit={handleSubmit(onSubmit)}> <form onSubmit={handleSubmit(onSubmit)}>
......
...@@ -12,53 +12,69 @@ const ContactInfo = () => { ...@@ -12,53 +12,69 @@ const ContactInfo = () => {
<Col lg={6} md={12}> <Col lg={6} md={12}>
<div className="contact-content"> <div className="contact-content">
{/* <span className="sub-title">CONTACT US</span> */} {/* <span className="sub-title">CONTACT US</span> */}
<Heading <Heading el="h2" heading="Contact Us" />
el="h2"
heading="Contact Us"
/>
<p> <p>
Lets get ready to sail together. Provide us with your Contact Details and well make sure that we reach out to you in no time Great things begin with a conversation. Share your details,
and well make sure that we reach out to you in no time.
</p> </p>
<Row className="justify-content-center"> <Row className="justify-content-center">
<Col lg={4} md={4} sm={6}> <Col lg={12} md={12} sm={6}>
<div className="single-contact-info-box"> <div className="single-contact-info-box d-md-flex gap-2">
<div className="icon"> <div className="icon">
<i className="ri-home-7-line"></i> <i className="ri-home-7-line"></i>
</div> </div>
<div>
<h3>Office</h3> <h3>Office</h3>
<p>No. 988, 1st Floor, 13th Cross, Banashankari 2nd Stage, Bengaluru - 560070</p> <p>
<span> Reg office:</span> Nanda commercial complex and health center,
court road, Udupi -576101
</p>
<p>
<span> Corporate office: </span> No.988,1st Floor,13th Cross, Banashankari II Stage, Bangalore -560070
</p>
</div>
</div> </div>
</Col> </Col>
<Col lg={4} md={4} sm={6}> <Col lg={12} md={12} sm={12}>
<div className="single-contact-info-box"> <div className="single-contact-info-box d-md-flex gap-3">
<div className="icon"> <div className="icon">
<i className="ri-phone-line"></i> <i className="ri-phone-line"></i>
</div> </div>
<div>
<h3>Landline & Mobile</h3> <h3>Landline & Mobile</h3>
<p> <p>
<span>Call:</span> <span>Call:</span>
<a href="tel:08026719484">080-2671 9484</a> <a href="tel:08204200985">0820-4200985</a>
</p> </p>
<p> <p>
<span>Call:</span> <span>Call:</span>
<a href="tel:+916364133111">+91-6364133111</a> <a href="tel:+9108026719484">+91-080-26719484</a>
</p> </p>
</div> </div>
</div>
</Col> </Col>
<Col lg={4} md={4} sm={6}> <Col lg={12} md={12} sm={12}>
<div className="single-contact-info-box"> <div className="single-contact-info-box d-md-flex gap-3">
<div className="icon"> <div className="icon">
<i className="ri-mail-star-line"></i> <i className="ri-mail-star-line"></i>
</div> </div>
<div>
<h3>Email</h3> <h3>Email</h3>
<p> <p>
<a href="mailto: info@advithconsulting.in"> info@advithconsulting.in</a> <a href="mailto: Support@advithitec.in">
</p>
Support@advithitec.in
</a>
</p>
</div>
</div> </div>
</Col> </Col>
</Row> </Row>
...@@ -69,7 +85,7 @@ const ContactInfo = () => { ...@@ -69,7 +85,7 @@ const ContactInfo = () => {
<div className="contact-image"> <div className="contact-image">
<Image <Image
layout="fill" layout="fill"
src="/images/contact-us.webp" src="/images/contact-us.png"
alt="image" alt="image"
className="img-fluid image" className="img-fluid image"
/> />
......
...@@ -5,6 +5,7 @@ import Image from "next/image"; ...@@ -5,6 +5,7 @@ import Image from "next/image";
import { motion } from "framer-motion"; import { motion } from "framer-motion";
import { slideFromLeft } from "@/components/reuseables/variants"; import { slideFromLeft } from "@/components/reuseables/variants";
import { cleanImage } from "@/layout/imageHandling"; import { cleanImage } from "@/layout/imageHandling";
import Link from "next/link";
const heading = [ const heading = [
{ {
title: "About Advith Consulting", title: "About Advith Consulting",
...@@ -14,7 +15,7 @@ const heading = [ ...@@ -14,7 +15,7 @@ const heading = [
}, },
]; ];
const LeftSideImage = ({title,subtitle,image,content}) => { const LeftSideImage = ({ title, subtitle, image, content ,cta }) => {
return ( return (
<> <>
<section className="leftsideimg ptb-50"> <section className="leftsideimg ptb-50">
...@@ -45,8 +46,18 @@ const LeftSideImage = ({title,subtitle,image,content}) => { ...@@ -45,8 +46,18 @@ const LeftSideImage = ({title,subtitle,image,content}) => {
{/* <Heading el="h2" heading={title} className="h2" /> */} {/* <Heading el="h2" heading={title} className="h2" /> */}
<h2>{title}</h2> <h2>{title}</h2>
{/* <p>{description}</p> */} {/* <p>{description}</p> */}
<div className="content" dangerouslySetInnerHTML={{ __html:content}}/> <div
className="content"
dangerouslySetInnerHTML={{ __html: content }}
/>
<div>
{/* <div className="btn-1">
<Link href={cta?.URL} className="default-btn-three">
{cta?.text}
<i className="ri-arrow-right-line"></i>
</Link>
</div> */}
</div>
</div> </div>
</Col> </Col>
</Row> </Row>
......
import React from "react";
import Link from "next/link";
import { Tab, Tabs, TabList, TabPanel, resetIdCounter } from "react-tabs";
import Image from "next/image";
import { Col, Container, Row } from "react-bootstrap";
import Heading from "@/components/reuseables/Heading";
const KnowledgeData = [
{
title: "Assurance",
content:
"Assurance is not a one-time annual activity but rather a continuous system of monitoring that builds trust among the stakeholders. At Advith Consulting, Assurance is a key plug in to all our services to ensure that the value we are adding to our clients is not merely advisory in nature but rather a form of assurance.",
buttonlink: "#",
},
{
title: "Direct Tax ",
content:
"Our Team of experts in the Direct Tax Team can help you navigate any maze in matters pertaining to Income Tax Act, 1961 and International Tax. Their expertise comes not just from multiple years of experience in this field but also from a passion for this subject that ensures that they are hands on in all matters. ",
buttonlink: "#",
},
{
title: "Indirect Tax",
content:
"GST in India and its implications on businesses is multi dimensional. Our Team at Advith Consulting ensure that elements of GST for all our service offerings are dissected and duly complied with. ",
buttonlink: "#",
},
{
title: "Corporate Law ",
content:
"For all matters right from incorporation of an entity, conducting & documenting meetings, managing FEMA compliances to analysis of relvant laws for Companies and LLP, our Corporate Law Team is a significant plug in to all matters where entities in the form of companies or LLP's are involved. ",
buttonlink: "#",
},
{
title: "Corporate Legal ",
content:
"Right from ensuring that routine maters as per Companies Act, 2013 are complied with or drafting complex agreements, our team of Company Secretaries and Lawyers leave no stone unturned in ensuring that all statutory and legal matters are accurately complied with.",
buttonlink: "#",
},
];
const TechnicalExpertise = ({ AreasExpertiseTitle ,AreasofExpertiseList }) => {
console.log(AreasExpertiseTitle.Title, "technicalexpertise");
return (
<>
<div className="what-we-do-area pt-50 pb-50">
<Container>
<Row className="align-items-center">
<Col lg={6} md={12}>
<div className="what-we-do-image">
<Image
src="/images/services/area-of-technical.webp"
alt="image"
layout="fill"
className="img-fluid image"
/>
<Image
src="/images/shape/shape8.png"
alt="image"
width={300}
height={300}
className="shape"
/>
</div>
</Col>
<Col lg={6} md={12}>
<div className="what-we-do-content area-tab">
<Heading
el="h2"
heading={AreasExpertiseTitle?.Heading?.Title}
className="h2"
/>
<span>
{AreasExpertiseTitle?.Heading?.Subtitle}
</span>
<p>{AreasExpertiseTitle?.Heading?.Description}</p>
<Tabs>
<TabList>
{AreasofExpertiseList?.map((tab, index) => (
<Tab key={index}>{tab.Title}</Tab>
))}
</TabList>
{AreasofExpertiseList?.map((tab, index) => (
<TabPanel key={index}>
<p>{tab.Description}</p>
</TabPanel>
))}
</Tabs>
</div>
</Col>
</Row>
</Container>
</div>
</>
);
};
export default TechnicalExpertise;
...@@ -81,7 +81,7 @@ const AreasofExpertise = ({Areas}) => { ...@@ -81,7 +81,7 @@ const AreasofExpertise = ({Areas}) => {
Areas.map((item, index) => { Areas.map((item, index) => {
// console.log("Areas", item); // console.log("Areas", item);
return ( return (
<Col lg={4} md={6} key={item.id}> <Col lg={6} md={6} key={item.id}>
<div className="single-projects-box"> <div className="single-projects-box">
<motion.div <motion.div
variants={fadeIn(index * 1)} variants={fadeIn(index * 1)}
......
...@@ -90,8 +90,8 @@ const FunctionalAreas = ({functionarea}) => { ...@@ -90,8 +90,8 @@ const FunctionalAreas = ({functionarea}) => {
height={100} height={100}
/> />
<div className="align-items-center"> <div className="align-items-center">
<h3>{service.Title}</h3> <h3 className="mt-3">{service.Title}</h3>
<p> {service.Description}</p> <p className="mt-2"> {service.Description}</p>
</div> </div>
</div> </div>
</div> </div>
......
import React from "react";
import { Swiper, SwiperSlide } from "swiper/react";
import { Autoplay, Navigation } from "swiper/modules";
import Image from "next/image";
import SwiperNav from "@/components/reuseables/SwiperNav";
import { cleanImage } from "@/layout/imageHandling";
const partners = [
{
id: 1,
image: "/images/clientel/academic-city.svg",
altText: "partner",
link: "#",
},
{
id: 2,
image: "/images/clientel/ADALVO.svg",
altText: "partner",
link: "#",
},
{
id: 3,
image: "/images/clientel/CRESTA.svg",
altText: "partner",
link: "#",
},
{
id: 4,
image: "/images/clientel/DAZZLES.svg",
altText: "partner",
link: "#",
},
{
id: 5,
image: "/images/clientel/DESMET.svg",
altText: "partner",
link: "#",
},
{
id: 6,
image: "/images/clientel/GLIDER.svg",
altText: "partner",
link: "#",
},
{
id: 7,
image: "/images/clientel/KANTIME.svg",
altText: "partner",
link: "#",
},
{
id: 8,
image: "/images/clientel/KNOWLEDGEUM.svg",
altText: "partner",
link: "#",
},
{
id: 9,
image: "/images/clientel/LEADICS.svg",
altText: "partner",
link: "#",
},
{
id: 10,
image: "/images/clientel/OBEYA.svg",
altText: "partner",
link: "#",
},
{
id: 11,
image: "/images/clientel/RANDOX.svg",
altText: "partner",
link: "#",
},
{
id: 12,
image: "/images/clientel/SURYA.svg",
altText: "partner",
link: "#",
},
{
id: 13,
image: "/images/clientel/THOLASI.svg",
altText: "partner",
link: "#",
},
];
const PartnerSlider = ({Clientel}) => {
console.log(Clientel)
return (
<>
<div className="partner-area">
<div className="container">
<div className="position-relative">
<Swiper
spaceBetween={30}
navigation={{
nextEl: ".custom-swiper-button-next",
prevEl: ".custom-swiper-button-prev",
}}
breakpoints={{
0: {
slidesPerView: 2,
},
576: {
slidesPerView: 3,
},
768: {
slidesPerView: 4,
},
992: {
slidesPerView: 5,
},
}}
autoplay={{
delay: 3000,
}}
loop={true}
modules={[Autoplay ,Navigation]}
className="partner-slides position-relative"
>
{Clientel &&
Clientel?.map((logo) => (
<SwiperSlide className="single-partner-item" key={logo.id}>
<Image
src={cleanImage(logo?.logos[0]?.url)}
alt={logo.altText}
className="img-fluid image"
layout="fill"
/>
</SwiperSlide>
))}
</Swiper>
<div className="cust_nav mt-4 mt-md-0">
<SwiperNav />
</div>
</div>
</div>
</div>
</>
);
};
export default PartnerSlider;
import React from "react"; import React from "react";
import { Swiper, SwiperSlide } from "swiper/react";
import { Autoplay, Navigation } from "swiper/modules";
import Image from "next/image"; import Image from "next/image";
import SwiperNav from "@/components/reuseables/SwiperNav";
import { cleanImage } from "@/layout/imageHandling"; import { cleanImage } from "@/layout/imageHandling";
const partners = [ const PartnerSlider = ({ Clientel = [] }) => {
{
id: 1,
image: "/images/clientel/academic-city.svg",
altText: "partner",
link: "#",
},
{
id: 2,
image: "/images/clientel/ADALVO.svg",
altText: "partner",
link: "#",
},
{
id: 3,
image: "/images/clientel/CRESTA.svg",
altText: "partner",
link: "#",
},
{
id: 4,
image: "/images/clientel/DAZZLES.svg",
altText: "partner",
link: "#",
},
{
id: 5,
image: "/images/clientel/DESMET.svg",
altText: "partner",
link: "#",
},
{
id: 6,
image: "/images/clientel/GLIDER.svg",
altText: "partner",
link: "#",
},
{
id: 7,
image: "/images/clientel/KANTIME.svg",
altText: "partner",
link: "#",
},
{
id: 8,
image: "/images/clientel/KNOWLEDGEUM.svg",
altText: "partner",
link: "#",
},
{
id: 9,
image: "/images/clientel/LEADICS.svg",
altText: "partner",
link: "#",
},
{
id: 10,
image: "/images/clientel/OBEYA.svg",
altText: "partner",
link: "#",
},
{
id: 11,
image: "/images/clientel/RANDOX.svg",
altText: "partner",
link: "#",
},
{
id: 12,
image: "/images/clientel/SURYA.svg",
altText: "partner",
link: "#",
},
{
id: 13,
image: "/images/clientel/THOLASI.svg",
altText: "partner",
link: "#",
},
];
const PartnerSlider = ({Clientel}) => {
console.log(Clientel)
return ( return (
<> <div className="partner-area py-2 overflow-hidden">
<div className="partner-area">
<div className="container"> <div className="container">
<div className="position-relative"> <div className="marquee-wrapper position-relative">
<Swiper <div className="marquee-track d-flex align-items-center">
spaceBetween={30} {/* Duplicate logos for seamless looping */}
navigation={{ {Clientel.concat(Clientel).map((logo, index) => (
nextEl: ".custom-swiper-button-next", <div
prevEl: ".custom-swiper-button-prev", className="single-partner-item d-flex justify-content-center align-items-center px-3"
}} key={`${logo.id}-${index}`}
breakpoints={{ style={{ flex: "0 0 auto", width: "350px", height: "80px" }}
0: {
slidesPerView: 2,
},
576: {
slidesPerView: 3,
},
768: {
slidesPerView: 4,
},
992: {
slidesPerView: 5,
},
}}
autoplay={{
delay: 3000,
}}
loop={true}
modules={[Autoplay ,Navigation]}
className="partner-slides position-relative"
> >
{Clientel &&
Clientel?.map((logo) => (
<SwiperSlide className="single-partner-item" key={logo.id}>
<Image <Image
src={cleanImage(logo?.logos[0]?.url)} src={cleanImage(logo?.logos?.[0]?.url)}
alt={logo.altText} alt={logo.altText || "partner logo"}
width={120}
height={60}
className="img-fluid image" className="img-fluid image"
layout="fill"
/> />
</SwiperSlide> </div>
))} ))}
</Swiper>
<div className="cust_nav mt-4 mt-md-0">
<SwiperNav />
</div> </div>
</div> </div>
</div> </div>
{/* Smooth marquee animation styles */}
<style jsx>{`
.marquee-wrapper {
width: 100%;
overflow: hidden;
}
.marquee-track {
width: max-content;
animation: scroll-left 30s linear infinite;
}
@keyframes scroll-left {
0% {
transform: translateX(0%);
}
100% {
transform: translateX(-50%);
}
}
`}</style>
</div> </div>
</>
); );
}; };
......
...@@ -43,6 +43,7 @@ const BudgetPanorama = ({Budgetpanorama , budgetlist}) => { ...@@ -43,6 +43,7 @@ const BudgetPanorama = ({Budgetpanorama , budgetlist}) => {
<Heading <Heading
heading={Budgetpanorama?.Title} heading={Budgetpanorama?.Title}
el="h2" el="h2"
/> />
<p className="mb-lg-5 mb-3"> <p className="mb-lg-5 mb-3">
......
...@@ -45,7 +45,7 @@ const Corpedia = ({ Corpedia, corpedialist }) => { ...@@ -45,7 +45,7 @@ const Corpedia = ({ Corpedia, corpedialist }) => {
<Row> <Row>
<Col lg={8} md={8} sm={12}> <Col lg={8} md={8} sm={12}>
<div className="text-align-left"> <div className="text-align-left">
<Heading heading={Corpedia?.Title} el="h2" /> <Heading heading={Corpedia?.Title} el="h2" className="primary-text"/>
<p className="mb-lg-5 mb-3">{Corpedia?.Description}</p> <p className="mb-lg-5 mb-3">{Corpedia?.Description}</p>
</div> </div>
......
...@@ -48,9 +48,9 @@ const blogPosts = [ ...@@ -48,9 +48,9 @@ const blogPosts = [
}, },
]; ];
const KnowledgeBlog = ({Knowledgedata}) => { const KnowledgeBlog = ({ Knowledgedata, BlogHeading }) => {
const latestPosts = Knowledgedata.slice(0, 3); const latestPosts = Knowledgedata.slice(0, 3);
// console.log(latestPosts ,"Knowledgedata") console.log(BlogHeading, "Knowledgedata");
return ( return (
<> <>
<div id="blog" className="blog-area pt-100 pb-70"> <div id="blog" className="blog-area pt-100 pb-70">
...@@ -59,6 +59,7 @@ const KnowledgeBlog = ({Knowledgedata}) => { ...@@ -59,6 +59,7 @@ const KnowledgeBlog = ({Knowledgedata}) => {
<span className="sub-title">OUR BLOGS</span> <span className="sub-title">OUR BLOGS</span>
<Heading el="h2" heading="Advith’s Insights" /> <Heading el="h2" heading="Advith’s Insights" />
<p>{BlogHeading.Description}</p>
</div> </div>
<Row className="justify-content-center"> <Row className="justify-content-center">
...@@ -98,7 +99,10 @@ const KnowledgeBlog = ({Knowledgedata}) => { ...@@ -98,7 +99,10 @@ const KnowledgeBlog = ({Knowledgedata}) => {
<p>{post?.shortDescription}</p> <p>{post?.shortDescription}</p>
<Link href={`/blog/${post?.slug}`} className="default-btn"> <Link
href={`/blog/${post?.slug}`}
className="default-btn"
>
Read More <i className="ri-arrow-right-line"></i> Read More <i className="ri-arrow-right-line"></i>
</Link> </Link>
</div> </div>
......
...@@ -17,7 +17,7 @@ const serviceContent = [ ...@@ -17,7 +17,7 @@ const serviceContent = [
// You can add more content objects here // You can add more content objects here
]; ];
const KnowledgeContent = ({Overview}) => { const KnowledgeContent = ({Overview}) => {
// console.log(Overview, "overview") console.log(Overview, "overview")
return ( return (
<> <>
<div className="knowledge-area pt-md-5 pt-0 pb-5"> <div className="knowledge-area pt-md-5 pt-0 pb-5">
......
...@@ -42,7 +42,8 @@ const TaxWire = ({taxWire , taxwirelist}) => { ...@@ -42,7 +42,8 @@ const TaxWire = ({taxWire , taxwirelist}) => {
<Row> <Row>
<Col lg={8} md={8} sm={12}> <Col lg={8} md={8} sm={12}>
<div className="text-align-left"> <div className="text-align-left">
<Heading heading={taxWire?.Title} el="h2" /> <Heading heading={taxWire?.Title} el="h2"
/>
<p className="mb-lg-5 mb-3"> <p className="mb-lg-5 mb-3">
{taxWire?. Description} {taxWire?. Description}
......
...@@ -15,7 +15,7 @@ const Finance = ({finance}) => { ...@@ -15,7 +15,7 @@ const Finance = ({finance}) => {
<div className="what-we-do-area pt-50"> <div className="what-we-do-area pt-50">
<Container> <Container>
{/* {overviewData.map((item) => ( */} {/* {overviewData.map((item) => ( */}
<Row className="align-items-center"> <Row>
<Col lg={6} md={12}> <Col lg={6} md={12}>
<div> <div>
<motion.div <motion.div
......
...@@ -20,10 +20,11 @@ const Footer = () => { ...@@ -20,10 +20,11 @@ const Footer = () => {
/> />
</Link> </Link>
<p> <p>
Advith Consulting , a distinguished boutique finance Advith ITeC is a distinguished finance consulting firm with a
consulting firm with a proud legacy of over 40 years. Our proud legacy of over 40 years, delivering tailored, scalable
journey has been driven by three core pillars: Knowledge, solutions through deep expertise and specialized teams. Our
People, and Client Servicing. journey has been shaped by four core pillars: Knowledge,
People, Client Servicing, and Technology
</p> </p>
</div> </div>
</div> </div>
...@@ -73,11 +74,19 @@ const Footer = () => { ...@@ -73,11 +74,19 @@ const Footer = () => {
<div className="col-lg-3 col-sm-6 col-md-6"> <div className="col-lg-3 col-sm-6 col-md-6">
<div className="single-footer-widget"> <div className="single-footer-widget">
<div className="footer-contact-info">
<h3>Address</h3> <h3>Address</h3>
<p> <ul>
No. 988, 1st Floor, 13th Cross Banashankari II stage <br /> <li>
Bengaluru 560 070. Karnataka, India. <span>Reg office:</span> Nanda commercial complex and health center,
</p> court road, Udupi -576101 Phone No: 0820-4200985
</li>
<li>
<span> Corporate office:</span> No.988,1st Floor,13th Cross, Banashankari II Stage, Bangalore -560070
</li>
</ul>
</div>
</div> </div>
<div className="single-footer-widget"> <div className="single-footer-widget">
<div className="footer-contact-info"> <div className="footer-contact-info">
...@@ -85,14 +94,15 @@ const Footer = () => { ...@@ -85,14 +94,15 @@ const Footer = () => {
<ul> <ul>
<li> <li>
<span>Call : </span> <span>Call : </span>
<a href="tel:+91-6364133111">+91-6364133111</a> <br/> <a href="tel:08026719484">080-2671 9484</a> <a href="tel:+91-08026719484">
080-26719484
</a>
</li> </li>
<li> <li>
<span>Email : </span> <span>Email : </span>
<a href="mailto:info@advithconsulting.in"> <a href="mailto:info@advithconsulting.in">
info@advithconsulting.in support@advithitec.in
</a> </a>
</li> </li>
</ul> </ul>
...@@ -106,7 +116,7 @@ const Footer = () => { ...@@ -106,7 +116,7 @@ const Footer = () => {
<div className="container"> <div className="container">
<div className="row align-items-center"> <div className="row align-items-center">
<div className="col-lg-6 col-md-7 col-sm-6"> <div className="col-lg-6 col-md-7 col-sm-6">
<p>&copy; {currentYear} Advith Consulting </p> <p>&copy; {currentYear} Copyright to update Advith ITeC </p>
</div> </div>
<div className="col-lg-6 col-md-5 col-sm-6"> <div className="col-lg-6 col-md-5 col-sm-6">
......
...@@ -59,7 +59,7 @@ const Header = () => { ...@@ -59,7 +59,7 @@ const Header = () => {
title: "Virtual Finance Office", title: "Virtual Finance Office",
href: "/client-servicing/virtual-finance-office", href: "/client-servicing/virtual-finance-office",
items: [ items: [
{ name: "Virtual CFO Services", href: "client-servicing/virtual-finance-office/virtual-cfo" }, { name: "Virtual CFO Services", href: "/client-servicing/virtual-finance-office/virtual-cfo" },
{ name: "Virtual FC Services", href: "/client-servicing/virtual-finance-office/virtual-fc" }, { name: "Virtual FC Services", href: "/client-servicing/virtual-finance-office/virtual-fc" },
{ name: "Book Closures and Audit Support", href: "/client-servicing/virtual-finance-office/book-closures-audit" }, { name: "Book Closures and Audit Support", href: "/client-servicing/virtual-finance-office/book-closures-audit" },
{ name: "Accounting Payroll & Compliance", href: "/client-servicing/virtual-finance-office/apc" }, { name: "Accounting Payroll & Compliance", href: "/client-servicing/virtual-finance-office/apc" },
...@@ -76,12 +76,12 @@ const Header = () => { ...@@ -76,12 +76,12 @@ const Header = () => {
}, },
{ {
title: "GCC as a Service", title: "GCC as a Service",
href: "/client-servicing/ra", href: "/client-servicing/gcc",
items: [], items: [],
}, },
{ {
title: "Digital Transformation", title: "Digital Transformation",
href: "/client-servicing/ba", href: "/client-servicing/digital-transformation",
items: [ items: [
// { name: "ITeC App", href: "/client-servicing/ba" }, // { name: "ITeC App", href: "/client-servicing/ba" },
// { name: "Digital Process Automation", href: "/client-servicing/ba" }, // { name: "Digital Process Automation", href: "/client-servicing/ba" },
...@@ -89,14 +89,14 @@ const Header = () => { ...@@ -89,14 +89,14 @@ const Header = () => {
}, },
{ {
title: "Empowering Finance Consultants", title: "Empowering Finance Consultants",
href: "/client-servicing/ba", href: "/client-servicing/empowering-finance-consultants",
items: [ items: [
// { name: "CA/CPA firm services", href: "/client-servicing/ba" } // { name: "CA/CPA firm services", href: "/client-servicing/ba" }
], ],
}, },
{ {
title: "Bespoke Services", title: "Bespoke Services",
href: "/client-servicing/ba", href: "/client-servicing/bespoke",
items: [ items: [
// { name: "Data analysis and reporting", href: "/client-servicing/ba" }, // { name: "Data analysis and reporting", href: "/client-servicing/ba" },
// { name: "Admin and Backend Support Services", href: "/client-servicing/ba" }, // { name: "Admin and Backend Support Services", href: "/client-servicing/ba" },
...@@ -125,7 +125,7 @@ const Header = () => { ...@@ -125,7 +125,7 @@ const Header = () => {
<div className="container-fluid" style={{ maxWidth: 1200, margin: '0 auto', padding: '0 32px' }}> <div className="container-fluid" style={{ maxWidth: 1200, margin: '0 auto', padding: '0 32px' }}>
<nav className="navbar navbar-expand-md navbar-light"> <nav className="navbar navbar-expand-md navbar-light">
<Link href="/" className="navbar-brand"> <Link href="/" className="navbar-brand">
<Image width={144} height={33} src="/images/logo.png" alt="logo" /> <Image width={180} height={33} src="/images/Advithlogo.svg" alt="logo" />
</Link> </Link>
<button <button
onClick={toggleNavbar} onClick={toggleNavbar}
......
...@@ -130,7 +130,7 @@ const BudgetPanorama = ({ BudgetData , conversionData }) => { ...@@ -130,7 +130,7 @@ const BudgetPanorama = ({ BudgetData , conversionData }) => {
<div className="budget-panorama-page-area pt-70 pb-100 bg-light"> <div className="budget-panorama-page-area pt-70 pb-100 bg-light">
<Container> <Container>
<div className="section-title"> <div className="section-title">
<Heading heading={BudgetData?.Heading?.Title} el="h2" /> <Heading heading={BudgetData?.Heading?.Title} el="h2" className="primary-text"/>
</div> </div>
<p className="text-center mb-3 mb-lg-5"> <p className="text-center mb-3 mb-lg-5">
{BudgetData?.Heading?.Description} {BudgetData?.Heading?.Description}
......
...@@ -7,8 +7,10 @@ import qs from "qs"; ...@@ -7,8 +7,10 @@ import qs from "qs";
import axios from "axios"; import axios from "axios";
import Seo from "@/components/reuseables/Seo/Seo"; import Seo from "@/components/reuseables/Seo/Seo";
import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode"; import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode";
import LeftSideImage from "@/container/Corpedia/LeftSideImage";
import RightSideImage from "@/container/Corpedia/RightSideImage";
const index = ({ CareerPage ,conversionData }) => { const index = ({ CareerPage, conversionData }) => {
console.log(CareerPage, "CareerPage"); console.log(CareerPage, "CareerPage");
const banners = [ const banners = [
{ {
...@@ -24,6 +26,9 @@ const index = ({ CareerPage ,conversionData }) => { ...@@ -24,6 +26,9 @@ const index = ({ CareerPage ,conversionData }) => {
const seo = CareerPage?.seo; const seo = CareerPage?.seo;
// console.log(seo, "seo") // console.log(seo, "seo")
const dynamicdata = CareerPage?.CareerDetails;
console.log("dynamicdata", dynamicdata);
return ( return (
<> <>
<Seo seo={seo} /> <Seo seo={seo} />
...@@ -60,6 +65,37 @@ const index = ({ CareerPage ,conversionData }) => { ...@@ -60,6 +65,37 @@ const index = ({ CareerPage ,conversionData }) => {
</Row> </Row>
</Container> </Container>
</section> </section>
<div className="career-page">
<section className="career-page">
{dynamicdata &&
dynamicdata?.map((section, index) => {
// console.log("section", section);
switch (section.__component) {
case "dynamic-zone.about":
return (
<LeftSideImage
title={section?.Title}
subtitle={section?.Subtitle}
image={section?.Image}
content={section?.Content}
/>
);
case "dynamic-zone.background":
return (
<RightSideImage
title={section?.Title}
subtitle={section?.Subtitle}
image={section?.Image}
content={section?.Content}
/>
);
default:
return null;
}
})}
</section>
</div>
</> </>
); );
}; };
...@@ -69,7 +105,12 @@ export default index; ...@@ -69,7 +105,12 @@ export default index;
export async function getServerSideProps() { export async function getServerSideProps() {
try { try {
const query1 = { const query1 = {
populate: ["Banner.Image"], populate: [
"Banner.Image",
"CareerDetails",
"CareerDetails.Image",
"CareerDetails.Heading",
],
}; };
const query2 = { const query2 = {
populate: ["conversion"], populate: ["conversion"],
...@@ -95,7 +136,7 @@ export async function getServerSideProps() { ...@@ -95,7 +136,7 @@ export async function getServerSideProps() {
const CareerPage = response1.data.data; const CareerPage = response1.data.data;
const conversionData = response2.data.data; const conversionData = response2.data.data;
return { return {
props: { CareerPage ,conversionData }, props: { CareerPage, conversionData },
}; };
} catch (error) { } catch (error) {
console.log("Error", error); console.log("Error", error);
......
import PageBanner from "@/components/reuseables/PageBanner";
import MethodOne from "@/components/reuseables/services/MethodOne";
import MethodTwoSection from "@/components/reuseables/services/MethodTwo";
import Clientele from "@/components/reuseables/Clientele";
import qs from "qs";
import axios from "axios";
import { cleanImage } from "@/layout/imageHandling";
import LeftSideImage from "@/container/Corpedia/LeftSideImage";
import RightSideImage from "@/container/Corpedia/RightSideImage";
import Seo from "@/components/reuseables/Seo/Seo";
import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode";
import DownloadBtn from "@/components/reuseables/DownloadBtn";
import CallBackRequest from "@/components/reuseables/CallBackRequest";
import FaqContent from "@/components/reuseables/Faq";
const Bespoke = ({ Empoweringpage, conversionData }) => {
console.log(Empoweringpage, "Empoweringpage");
const banners = [
{
imageSrc: cleanImage(Empoweringpage?.Banner?.Image?.url),
pageTitle: Empoweringpage?.Banner?.Heading,
homePageUrl: "/",
homePageText: "Home",
activePageText: Empoweringpage?.Banner?.Heading,
},
];
const dynamicdata = Empoweringpage?.BespokeDetails;
// console.log("dynamicdata", dynamicdata);
const clientlogo = Empoweringpage?.Clientel;
const seo = Empoweringpage?.seo;
const code = conversionData?.conversion;
return (
<>
<Seo seo={seo} />
<ConversionCode code={code} />
<PageBanner banners={banners} />
<div className="cfo-services-area ptb-100">
<section className="cfo-page">
{dynamicdata &&
dynamicdata?.map((section, index) => {
// console.log("section", section);
switch (section.__component) {
case "dynamic-zone.about":
return (
<LeftSideImage
title={section?.Title}
subtitle={section?.Subtitle}
image={section?.Image}
content={section?.Content}
/>
);
case "dynamic-zone.background":
return (
<RightSideImage
title={section?.Title}
subtitle={section?.Subtitle}
image={section?.Image}
content={section?.Content}
/>
);
case "dynamic-zone.element-one":
return (
<MethodOne
heading={section?.Heading}
data={section?.ElementList}
/>
);
case "dynamic-zone.element-two":
return (
<MethodTwoSection
heading={section?.Heading}
data={section?.ElementList}
/>
);
case "dynamic-zone.download-btn":
return (
<DownloadBtn
subtitle={section?.Subtitle}
title={section?.Title}
description={section?.Description}
cta={section.CTA}
/>
);
default:
return null;
}
})}
</section>
</div>
<div className="ptb-50">
<Clientele partners={clientlogo} />
</div>
<CallBackRequest />
</>
);
};
export default Bespoke;
export async function getServerSideProps() {
try {
const query1 = {
populate: [
"Banner",
"Banner.Image",
"BespokeDetails",
"BespokeDetails.Image",
"BespokeDetails.Heading",
"BespokeDetails.DownloadBtn",
"BespokeDetails.CTA",
"Clientel.logos",
"seo",
"seo.metaImage",
"seo.schema",
],
};
const query2 = {
populate: ["conversion"],
};
const query1String = qs.stringify(query1, {
encodeValuesOnly: true,
});
const query12String = qs.stringify(query2, {
encodeValuesOnly: true,
});
const endpoint1 = `${process.env.NEXT_PUBLIC_BACKEND_API_URL}/api/bespoke-services-page?${query1String}`;
const endpoint2 = `${process.env.NEXT_PUBLIC_BACKEND_API_URL}/api/google-manger?${query12String}`;
console.log(`Final url: ${endpoint1}`);
const [response1, response2] = await Promise.all([
axios.get(endpoint1),
axios.get(endpoint2),
]);
const Empoweringpage = response1.data.data;
const conversionData = response2.data.data;
return {
props: { Empoweringpage, conversionData },
};
} catch (error) {
console.log("Error", error);
}
}
...@@ -9,6 +9,7 @@ import LeftSideImage from "@/container/Corpedia/LeftSideImage"; ...@@ -9,6 +9,7 @@ import LeftSideImage from "@/container/Corpedia/LeftSideImage";
import RightSideImage from "@/container/Corpedia/RightSideImage"; import RightSideImage from "@/container/Corpedia/RightSideImage";
import Seo from "@/components/reuseables/Seo/Seo"; import Seo from "@/components/reuseables/Seo/Seo";
import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode"; import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode";
import Card from "@/components/reuseables/services/Card";
// const CFOData = [ // const CFOData = [
// { // {
...@@ -177,7 +178,7 @@ const partners = [ ...@@ -177,7 +178,7 @@ const partners = [
link: "#", link: "#",
}, },
]; ];
const clientservicecfo = ({ cfopage ,conversionData }) => { const clientservicecfo = ({ cfopage, conversionData }) => {
// console.log(cfopage ,"cfopage") // console.log(cfopage ,"cfopage")
const banners = [ const banners = [
{ {
...@@ -190,7 +191,7 @@ const clientservicecfo = ({ cfopage ,conversionData }) => { ...@@ -190,7 +191,7 @@ const clientservicecfo = ({ cfopage ,conversionData }) => {
]; ];
const dynamicdata = cfopage?.CfoDeatils; const dynamicdata = cfopage?.CfoDeatils;
// console.log("dynamicdata", dynamicdata); console.log("dynamicdata", dynamicdata);
const clientlogo = cfopage?.Clientel; const clientlogo = cfopage?.Clientel;
// console.log("clientlogo", clientlogo); // console.log("clientlogo", clientlogo);
...@@ -244,6 +245,9 @@ const clientservicecfo = ({ cfopage ,conversionData }) => { ...@@ -244,6 +245,9 @@ const clientservicecfo = ({ cfopage ,conversionData }) => {
data={section?.ElementList} data={section?.ElementList}
/> />
); );
default: default:
return null; return null;
} }
...@@ -287,6 +291,7 @@ export async function getServerSideProps() { ...@@ -287,6 +291,7 @@ export async function getServerSideProps() {
"CfoDeatils", "CfoDeatils",
"CfoDeatils.Image", "CfoDeatils.Image",
"CfoDeatils.Heading", "CfoDeatils.Heading",
"CfoDeatils.ElementList.StepImg", "CfoDeatils.ElementList.StepImg",
"Clientel.logos", "Clientel.logos",
"seo", "seo",
...@@ -312,7 +317,6 @@ export async function getServerSideProps() { ...@@ -312,7 +317,6 @@ export async function getServerSideProps() {
console.log(`Final url: ${endpoint1}`); console.log(`Final url: ${endpoint1}`);
const [response1, response2] = await Promise.all([ const [response1, response2] = await Promise.all([
axios.get(endpoint1), axios.get(endpoint1),
axios.get(endpoint2), axios.get(endpoint2),
...@@ -321,9 +325,8 @@ export async function getServerSideProps() { ...@@ -321,9 +325,8 @@ export async function getServerSideProps() {
const cfopage = response1.data.data; const cfopage = response1.data.data;
const conversionData = response2.data.data; const conversionData = response2.data.data;
return { return {
props: { cfopage ,conversionData }, props: { cfopage, conversionData },
}; };
} catch (error) { } catch (error) {
console.log("Error", error); console.log("Error", error);
......
import PageBanner from "@/components/reuseables/PageBanner";
import MethodOne from "@/components/reuseables/services/MethodOne";
import MethodTwoSection from "@/components/reuseables/services/MethodTwo";
import Clientele from "@/components/reuseables/Clientele";
import qs from "qs";
import axios from "axios";
import { cleanImage } from "@/layout/imageHandling";
import LeftSideImage from "@/container/Corpedia/LeftSideImage";
import RightSideImage from "@/container/Corpedia/RightSideImage";
import Seo from "@/components/reuseables/Seo/Seo";
import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode";
import DownloadBtn from "@/components/reuseables/DownloadBtn";
import CallBackRequest from "@/components/reuseables/CallBackRequest";
import Rules from "@/container/Corpedia/Rules";
const DigitalTransformation = ({ Digitalpage, conversionData }) => {
console.log(Digitalpage, "Digitalpage");
const banners = [
{
imageSrc: cleanImage(Digitalpage?.Banner?.Image?.url),
pageTitle: Digitalpage?.Banner?.Heading,
homePageUrl: "/",
homePageText: "Home",
activePageText: Digitalpage?.Banner?.Heading,
},
];
const dynamicdata = Digitalpage?.DigitalTransformationDetails;
console.log("dynamicdata", dynamicdata);
const clientlogo = Digitalpage?.Clientel;
const seo = Digitalpage?.seo;
const code = conversionData?.conversion;
return (
<>
<Seo seo={seo} />
<ConversionCode code={code} />
<PageBanner banners={banners} />
<div className="cfo-services-area ptb-100">
<section className="cfo-page">
{dynamicdata &&
dynamicdata?.map((section, index) => {
// console.log("section", section);
switch (section.__component) {
case "dynamic-zone.about":
return (
<LeftSideImage
title={section?.Title}
subtitle={section?.Subtitle}
image={section?.Image}
content={section?.Content}
/>
);
case "dynamic-zone.background":
return (
<RightSideImage
title={section?.Title}
subtitle={section?.Subtitle}
image={section?.Image}
content={section?.Content}
cta={section.CTA}
/>
);
case "dynamic-zone.element-one":
return (
<MethodOne
heading={section?.Heading}
data={section?.ElementList}
/>
);
case "dynamic-zone.element-two":
return (
<MethodTwoSection
heading={section?.Heading}
data={section?.ElementList}
/>
);
case "dynamic-zone.download-btn":
return (
<DownloadBtn
subtitle={section?.Subtitle}
title={section?.Title}
description={section?.Description}
cta={section.CTA}
/>
);
case "dynamic-zone.rules-application":
return (
<Rules
title={section?.Heading}
subtitle={section?.Subheading}
description={section?.Description}
image={section?.Image}
rule={section?.RuleList}
/>
);
default:
return null;
}
})}
</section>
</div>
<div className="ptb-50">
<Clientele partners={clientlogo} />
</div>
<CallBackRequest />
</>
);
};
export default DigitalTransformation;
export async function getServerSideProps() {
try {
const query1 = {
populate: [
"Banner",
"Banner.Image",
"DigitalTransformationDetails",
"DigitalTransformationDetails.Image",
"DigitalTransformationDetails.Heading",
"DigitalTransformationDetails.RuleList",
"DigitalTransformationDetails.RuleList.details",
"DigitalTransformationDetails.DownloadBtn",
"DigitalTransformationDetails.CTA",
"Clientel.logos",
"seo",
"seo.metaImage",
"seo.schema",
],
};
const query2 = {
populate: ["conversion"],
};
const query1String = qs.stringify(query1, {
encodeValuesOnly: true,
});
const query12String = qs.stringify(query2, {
encodeValuesOnly: true,
});
const endpoint1 = `${process.env.NEXT_PUBLIC_BACKEND_API_URL}/api/digital-transformation-page?${query1String}`;
const endpoint2 = `${process.env.NEXT_PUBLIC_BACKEND_API_URL}/api/google-manger?${query12String}`;
console.log(`Final url: ${endpoint1}`);
const [response1, response2] = await Promise.all([
axios.get(endpoint1),
axios.get(endpoint2),
]);
const Digitalpage = response1.data.data;
const conversionData = response2.data.data;
return {
props: { Digitalpage, conversionData },
};
} catch (error) {
console.log("Error", error);
}
}
import PageBanner from "@/components/reuseables/PageBanner";
import MethodOne from "@/components/reuseables/services/MethodOne";
import MethodTwoSection from "@/components/reuseables/services/MethodTwo";
import Clientele from "@/components/reuseables/Clientele";
import qs from "qs";
import axios from "axios";
import { cleanImage } from "@/layout/imageHandling";
import LeftSideImage from "@/container/Corpedia/LeftSideImage";
import RightSideImage from "@/container/Corpedia/RightSideImage";
import Seo from "@/components/reuseables/Seo/Seo";
import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode";
import DownloadBtn from "@/components/reuseables/DownloadBtn";
import CallBackRequest from "@/components/reuseables/CallBackRequest";
import FaqContent from "@/components/reuseables/Faq";
const EmpoweringFinanceConsultants = ({ Empoweringpage, conversionData }) => {
console.log(Empoweringpage, "Empoweringpage");
const banners = [
{
imageSrc: cleanImage(Empoweringpage?.Banner?.Image?.url),
pageTitle: Empoweringpage?.Banner?.Heading,
homePageUrl: "/",
homePageText: "Home",
activePageText: Empoweringpage?.Banner?.Heading,
},
];
const dynamicdata = Empoweringpage?.EmpoweringFinanceDetails;
// console.log("dynamicdata", dynamicdata);
const clientlogo = Empoweringpage?.Clientel;
const seo = Empoweringpage?.seo;
const code = conversionData?.conversion;
return (
<>
<Seo seo={seo} />
<ConversionCode code={code} />
<PageBanner banners={banners} />
<div className="cfo-services-area ptb-100">
<section className="cfo-page">
{dynamicdata &&
dynamicdata?.map((section, index) => {
// console.log("section", section);
switch (section.__component) {
case "dynamic-zone.about":
return (
<LeftSideImage
title={section?.Title}
subtitle={section?.Subtitle}
image={section?.Image}
content={section?.Content}
/>
);
case "dynamic-zone.background":
return (
<RightSideImage
title={section?.Title}
subtitle={section?.Subtitle}
image={section?.Image}
content={section?.Content}
/>
);
case "dynamic-zone.element-one":
return (
<MethodOne
heading={section?.Heading}
data={section?.ElementList}
/>
);
case "dynamic-zone.element-two":
return (
<MethodTwoSection
heading={section?.Heading}
data={section?.ElementList}
/>
);
case "dynamic-zone.download-btn":
return (
<DownloadBtn
subtitle={section?.Subtitle}
title={section?.Title}
description={section?.Description}
cta={section.CTA}
/>
);
default:
return null;
}
})}
</section>
</div>
<FaqContent />
<div className="ptb-50">
<Clientele partners={clientlogo} />
</div>
<CallBackRequest />
</>
);
};
export default EmpoweringFinanceConsultants;
export async function getServerSideProps() {
try {
const query1 = {
populate: [
"Banner",
"Banner.Image",
"EmpoweringFinanceDetails",
"EmpoweringFinanceDetails.Image",
"EmpoweringFinanceDetails.Heading",
"EmpoweringFinanceDetails.DownloadBtn",
"EmpoweringFinanceDetails.CTA",
"EmpoweringFinanceDetails.ElementList.StepImg",
"Clientel.logos",
"seo",
"seo.metaImage",
"seo.schema",
],
};
const query2 = {
populate: ["conversion"],
};
const query1String = qs.stringify(query1, {
encodeValuesOnly: true,
});
const query12String = qs.stringify(query2, {
encodeValuesOnly: true,
});
const endpoint1 = `${process.env.NEXT_PUBLIC_BACKEND_API_URL}/api/empowering-finance-page?${query1String}`;
const endpoint2 = `${process.env.NEXT_PUBLIC_BACKEND_API_URL}/api/google-manger?${query12String}`;
console.log(`Final url: ${endpoint1}`);
const [response1, response2] = await Promise.all([
axios.get(endpoint1),
axios.get(endpoint2),
]);
const Empoweringpage = response1.data.data;
const conversionData = response2.data.data;
return {
props: { Empoweringpage, conversionData },
};
} catch (error) {
console.log("Error", error);
}
}
import PageBanner from "@/components/reuseables/PageBanner";
import MethodOne from "@/components/reuseables/services/MethodOne";
import MethodTwoSection from "@/components/reuseables/services/MethodTwo";
import Clientele from "@/components/reuseables/Clientele";
import qs from "qs";
import axios from "axios";
import { cleanImage } from "@/layout/imageHandling";
import LeftSideImage from "@/container/Corpedia/LeftSideImage";
import RightSideImage from "@/container/Corpedia/RightSideImage";
import Seo from "@/components/reuseables/Seo/Seo";
import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode";
import DownloadBtn from "@/components/reuseables/DownloadBtn";
import CallBackRequest from "@/components/reuseables/CallBackRequest";
const clientservicecfo = ({ gccpage, conversionData }) => {
console.log(gccpage, "gccpage");
const banners = [
{
imageSrc: cleanImage(gccpage?.Banner?.Image?.url),
pageTitle: gccpage?.Banner?.Heading,
homePageUrl: "/",
homePageText: "Home",
activePageText: gccpage?.Banner?.Heading,
},
];
const dynamicdata = gccpage?.GccDetails;
console.log("dynamicdata", dynamicdata);
const clientlogo = gccpage?.Clientel;
const seo = gccpage?.seo;
const code = conversionData?.conversion;
return (
<>
<Seo seo={seo} />
<ConversionCode code={code} />
<PageBanner banners={banners} />
<div className="cfo-services-area ptb-100">
<section className="cfo-page">
{dynamicdata &&
dynamicdata?.map((section, index) => {
// console.log("section", section);
switch (section.__component) {
case "dynamic-zone.about":
return (
<LeftSideImage
title={section?.Title}
subtitle={section?.Subtitle}
image={section?.Image}
content={section?.Content}
/>
);
case "dynamic-zone.background":
return (
<RightSideImage
title={section?.Title}
subtitle={section?.Subtitle}
image={section?.Image}
content={section?.Content}
/>
);
case "dynamic-zone.element-one":
return (
<MethodOne
heading={section?.Heading}
data={section?.ElementList}
/>
);
case "dynamic-zone.element-two":
return (
<MethodTwoSection
heading={section?.Heading}
data={section?.ElementList}
/>
);
case "dynamic-zone.download-btn":
return (
<DownloadBtn
subtitle={section?.Subtitle}
title={section?.Title}
description={section?.Description}
cta={section.CTA}
/>
);
default:
return null;
}
})}
</section>
</div>
<Clientele partners={clientlogo} />
<CallBackRequest />
</>
);
};
export default clientservicecfo;
export async function getServerSideProps() {
try {
const query1 = {
populate: [
"Banner",
"Banner.Image",
"GccDetails",
"GccDetails.Image",
"GccDetails.Heading",
"GccDetails.DownloadBtn",
"GccDetails.CTA",
"Clientel.logos",
"seo",
"seo.metaImage",
"seo.schema",
],
};
const query2 = {
populate: ["conversion"],
};
const query1String = qs.stringify(query1, {
encodeValuesOnly: true,
});
const query12String = qs.stringify(query2, {
encodeValuesOnly: true,
});
const endpoint1 = `${process.env.NEXT_PUBLIC_BACKEND_API_URL}/api/gcc-service-page?${query1String}`;
const endpoint2 = `${process.env.NEXT_PUBLIC_BACKEND_API_URL}/api/google-manger?${query12String}`;
console.log(`Final url: ${endpoint1}`);
const [response1, response2] = await Promise.all([
axios.get(endpoint1),
axios.get(endpoint2),
]);
const gccpage = response1.data.data;
const conversionData = response2.data.data;
return {
props: { gccpage, conversionData },
};
} catch (error) {
console.log("Error", error);
}
}
...@@ -21,208 +21,9 @@ const banners = [ ...@@ -21,208 +21,9 @@ const banners = [
}, },
// Add more banners as needed // Add more banners as needed
]; ];
const CFOData = [
{
subtitle: "Client Servicing",
title: "Transaction Advisory",
paragraphs: [
"At Advith Consulting, we don’t see deals as isolated events but rather as multiple related events forming part of a dynamic lifecycle. Our approach encompasses strategy, project management & execution and post transaction support. Our services include Deal Structuring, Mergers & Acquisitions, Due Diligence, Valuations, Cross Border Transactions, Transfer Pricing Advisory, Fund Raise Management, etc",
],
imageSrc: "/images/client-service/Transaction-Advisory.png",
imageAlt: "Client Servicing Image",
},
{
subtitle: "Client Servicing",
title: "About Transaction Advisory",
paragraphs: [
"Make or break events for an organisation, a transaction is an event that is likey to impact the operations, growth and scale of organisations in a siginficant manner.We bring together experts at different functional layers in order to ensure that you receive a 360 degree perspective on your transaction.",
],
imageSrc: "/images/client-service/About-Transaction-Advisory.png",
imageAlt: "FC & CFO Services Image",
},
// Add more objects here if needed
];
const sliderConfig = {
spaceBetween: 20,
slidesPerView: 4,
breakpoints: {
320: {
slidesPerView: 2,
spaceBetween: 10,
},
768: {
slidesPerView: 2,
spaceBetween: 20,
},
1024: {
slidesPerView: 3,
spaceBetween: 20,
},
1200: {
slidesPerView: 5,
spaceBetween: 20,
},
},
};
// method one content
const MethodOneData = [
{
stepNumber: "01",
img: "/images/shape/icon/discovery.png",
title: "Strategy Evaluation & Planning ",
descr: " Strategy, Structuring, Gantt & RACI, Preparedness",
altText: "discovery-icon",
},
{
stepNumber: "02",
img: "/images/shape/icon/analysis.png",
title: "Execution",
descr:
"Negotiation, Due Diligence, Conflict Management, Roadshows, Valuations",
altText: "analysis-icon",
},
{
stepNumber: "03",
img: "/images/shape/icon/setup.png",
title: "Completion",
descr: "Sign Off's, Impact Assessment, Reporting ",
altText: "setup-icon",
},
{
stepNumber: "04",
img: "/images/shape/icon/execution.png",
title: "Post Completion Support ",
descr:
" Implementation, Change Management, Synergy Evaluation, Stabilisation ",
altText: "execution-icon",
},
];
const methodTwoData = [
{
img: "/images/services/cfo/activity/recurring.png",
title: " Deal Structuring & Negotiation",
descr:
"Review of books of accounts, on call advisory, co-ordination with Bankers, Employees, Vendors on finance related matters",
},
{
img: "/images/services/cfo/activity/monthly.png",
title: " Business Modelling",
descr:
"Monthly book closures, payroll processing, compliance management, tracking of budget vs actuals, cash & fund flow management ",
},
{
img: "/images/services/cfo/activity/quarterly.png",
title: "Due Diligence",
descr:
"Presentation to the Board, Investment Evaluation, Evaluation of Processes",
},
{
img: "/images/services/cfo/activity/annual.png",
title: "Valuations",
descr: "Audit Assistance, Budgeting, Reporting to Investors",
},
{
img: "/images/services/cfo/activity/need.png",
title: "Mergers & Acquisitions",
descr: "As per requirement of the Management",
},
{
img: "/images/services/cfo/activity/quarterly.png",
title: " Fund Raise Management",
descr:
"Presentation to the Board, Investment Evaluation, Evaluation of Processes",
},
{
img: "/images/services/cfo/activity/annual.png",
title: "Post Merger Integrations",
descr: "Audit Assistance, Budgeting, Reporting to Investors",
},
{
img: "/images/services/cfo/activity/need.png",
title: "Cross Border Transactions",
descr: "As per requirement of the Management",
},
{
img: "/images/services/cfo/activity/annual.png",
title: "Transfer Pricing Advisory",
descr: "Audit Assistance, Budgeting, Reporting to Investors",
},
{
img: "/images/services/cfo/activity/need.png",
title: "Business Restructuring",
descr: "As per requirement of the Management",
},
// Add more data as needed
];
const partners = [
{
image: "/images/clientel/academic-city.svg",
altText: "partner",
link: "#",
},
{
image: "/images/clientel/Ace.svg",
altText: "partner",
link: "#",
},
{
image: "/images/clientel/ADALVO.svg",
altText: "partner",
link: "#",
},
{
image: "/images/clientel/Arihant.svg",
altText: "partner",
link: "#",
},
{
image: "/images/clientel/CRESTA.svg",
altText: "partner",
link: "#",
},
{
image: "/images/clientel/DAZZLES.svg",
altText: "partner",
link: "#",
},
{
image: "/images/clientel/DESMET.svg",
altText: "partner",
link: "#",
},
{
image: "/images/clientel/KNOWLEDGEUM.svg",
altText: "partner",
link: "#",
},
{
image: "/images/clientel/LEADICS.svg",
altText: "partner",
link: "#",
},
{
image: "/images/clientel/Sigma.svg",
altText: "partner",
link: "#",
},
{
image: "/images/clientel/THOLASI.svg",
altText: "partner",
link: "#",
},
{
image: "/images/clientel/Vista-spaces.svg",
altText: "partner",
link: "#",
},
];
const TaPage = ({ tapage ,conversionData }) => { const TaPage = ({ tapage, conversionData }) => {
const banners = [ const banners = [
{ {
imageSrc: cleanImage(tapage?.Banner?.Image?.url), imageSrc: cleanImage(tapage?.Banner?.Image?.url),
...@@ -250,7 +51,7 @@ const TaPage = ({ tapage ,conversionData }) => { ...@@ -250,7 +51,7 @@ const TaPage = ({ tapage ,conversionData }) => {
<PageBanner banners={banners} /> <PageBanner banners={banners} />
<div className="what-we-do-area pt-100"> <div className="what-we-do-area">
<section className="cfo-page"> <section className="cfo-page">
{dynamicdata && {dynamicdata &&
dynamicdata?.map((section, index) => { dynamicdata?.map((section, index) => {
...@@ -294,24 +95,7 @@ const TaPage = ({ tapage ,conversionData }) => { ...@@ -294,24 +95,7 @@ const TaPage = ({ tapage ,conversionData }) => {
})} })}
</section> </section>
</div> </div>
{/* <MethodOne
data={MethodOneData}
sectionTitle="Methodology 2 - How we do it? "
heading="Elements in CFO Services"
descrption="Here are some key activities we focus on in our CFO services."
sliderConfig={sliderConfig} // Pass the slider configuration here
/>
<MethodTwoSection
sectionTitle="Methodology 2 - How we do it? "
subTitle="Elements in CFO Services - Option 2"
methodData={methodTwoData}
slidesPerView={sliderConfig.slidesPerView}
breakpoints={sliderConfig.breakpoints} // Pass breakpoints here
spaceBetween={sliderConfig.spaceBetween}
autoplayDelay={sliderConfig.autoplayDelay}
showPagination={sliderConfig.showPagination}
showAutoplay={sliderConfig.showAutoplay}
/> */}
<div className="ptb-100"> <div className="ptb-100">
<Clientele partners={clientlogo} /> <Clientele partners={clientlogo} />
</div> </div>
...@@ -361,9 +145,8 @@ export async function getServerSideProps() { ...@@ -361,9 +145,8 @@ export async function getServerSideProps() {
const tapage = response1.data.data; const tapage = response1.data.data;
const conversionData = response2.data.data; const conversionData = response2.data.data;
return { return {
props: { tapage , conversionData }, props: { tapage, conversionData },
}; };
} catch (error) { } catch (error) {
console.log("Error", error); console.log("Error", error);
......
...@@ -11,6 +11,7 @@ import Seo from "@/components/reuseables/Seo/Seo"; ...@@ -11,6 +11,7 @@ import Seo from "@/components/reuseables/Seo/Seo";
import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode"; import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode";
import Content from "@/components/reuseables/services/Content"; import Content from "@/components/reuseables/services/Content";
import CallBackRequest from "@/components/reuseables/CallBackRequest"; import CallBackRequest from "@/components/reuseables/CallBackRequest";
import Card from "@/components/reuseables/services/Card";
...@@ -45,7 +46,7 @@ const clientserviceapc = ({ apcpage ,conversionData }) => { ...@@ -45,7 +46,7 @@ const clientserviceapc = ({ apcpage ,conversionData }) => {
<Seo seo={seo} /> <Seo seo={seo} />
<ConversionCode code={code} /> <ConversionCode code={code} />
<PageBanner banners={banners} /> <PageBanner banners={banners} />
<div className="cfo-services-area ptb-100"> <div className="cfo-services-area">
<section className="cfo-page"> <section className="cfo-page">
{dynamicdata && {dynamicdata &&
dynamicdata?.map((section, index) => { dynamicdata?.map((section, index) => {
...@@ -91,6 +92,13 @@ const clientserviceapc = ({ apcpage ,conversionData }) => { ...@@ -91,6 +92,13 @@ const clientserviceapc = ({ apcpage ,conversionData }) => {
content={section?.Description} content={section?.Description}
/> />
); );
case "dynamic-zone.card":
return (
<Card
heading={section?.Heading}
data={section?.carddetails}
/>
);
default: default:
return null; return null;
} }
...@@ -98,7 +106,7 @@ const clientserviceapc = ({ apcpage ,conversionData }) => { ...@@ -98,7 +106,7 @@ const clientserviceapc = ({ apcpage ,conversionData }) => {
</section> </section>
</div> </div>
<div className="pb-100"> <div className="pt-100">
<Clientele partners={clientlogo} /> <Clientele partners={clientlogo} />
</div> </div>
<CallBackRequest /> <CallBackRequest />
...@@ -118,6 +126,7 @@ export async function getServerSideProps() { ...@@ -118,6 +126,7 @@ export async function getServerSideProps() {
"APCDetails.Image", "APCDetails.Image",
"APCDetails.Heading", "APCDetails.Heading",
"APCDetails.ElementList.StepImg", "APCDetails.ElementList.StepImg",
"APCDetails.carddetails",
"Clientel.logos", "Clientel.logos",
"seo", "seo",
"seo.metaImage", "seo.metaImage",
......
...@@ -9,7 +9,7 @@ import LeftSideImage from "@/container/Corpedia/LeftSideImage"; ...@@ -9,7 +9,7 @@ import LeftSideImage from "@/container/Corpedia/LeftSideImage";
import RightSideImage from "@/container/Corpedia/RightSideImage"; import RightSideImage from "@/container/Corpedia/RightSideImage";
import Seo from "@/components/reuseables/Seo/Seo"; import Seo from "@/components/reuseables/Seo/Seo";
import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode"; import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode";
import Content from "@/components/reuseables/services/Content"; import Card from "@/components/reuseables/services/Card";
// method one content // method one content
...@@ -34,6 +34,7 @@ const clientservicecfo = ({ cfopage, conversionData }) => { ...@@ -34,6 +34,7 @@ const clientservicecfo = ({ cfopage, conversionData }) => {
const seo = cfopage?.seo; const seo = cfopage?.seo;
// console.log(seo) // console.log(seo)
const code = conversionData?.conversion; const code = conversionData?.conversion;
return ( return (
...@@ -79,12 +80,23 @@ const clientservicecfo = ({ cfopage, conversionData }) => { ...@@ -79,12 +80,23 @@ const clientservicecfo = ({ cfopage, conversionData }) => {
data={section?.ElementList} data={section?.ElementList}
/> />
); );
case "dynamic-zone.text":
case "dynamic-zone.card":
return (
<Card
heading={section?.Heading}
data={section?.carddetails}
image={section?.Image}
/>
);
case "dynamic-zone.rules-application":
return ( return (
<Content <Rules
title={section?.Heading} title={section?.Heading}
subtitle={section?.Subtitle} subtitle={section?.Subheading}
content={section?.Description} description={section?.Description}
image={section?.Image}
rule={section?.RuleList}
/> />
); );
default: default:
...@@ -92,12 +104,12 @@ const clientservicecfo = ({ cfopage, conversionData }) => { ...@@ -92,12 +104,12 @@ const clientservicecfo = ({ cfopage, conversionData }) => {
} }
})} })}
</section> </section>
</div> </div>
<div className="pb-100"> <div className="pb-100">
<Clientele partners={clientlogo} /> <Clientele partners={clientlogo} />
</div> </div>
</> </>
); );
}; };
...@@ -113,7 +125,10 @@ export async function getServerSideProps() { ...@@ -113,7 +125,10 @@ export async function getServerSideProps() {
"CfoDeatils", "CfoDeatils",
"CfoDeatils.Image", "CfoDeatils.Image",
"CfoDeatils.Heading", "CfoDeatils.Heading",
"CfoDeatils.ElementList.StepImg", "CfoDeatils.ElementList.StepImg",
"CfoDeatils.carddetails",
"CfoDeatils.card",
"Clientel.logos", "Clientel.logos",
"seo", "seo",
"seo.metaImage", "seo.metaImage",
......
...@@ -10,6 +10,7 @@ import RightSideImage from "@/container/Corpedia/RightSideImage"; ...@@ -10,6 +10,7 @@ import RightSideImage from "@/container/Corpedia/RightSideImage";
import Seo from "@/components/reuseables/Seo/Seo"; import Seo from "@/components/reuseables/Seo/Seo";
import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode"; import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode";
import CallBackRequest from "@/components/reuseables/CallBackRequest"; import CallBackRequest from "@/components/reuseables/CallBackRequest";
import Card from "@/components/reuseables/services/Card";
...@@ -83,6 +84,14 @@ const clientservicefc = ({ fcpage ,conversionData }) => { ...@@ -83,6 +84,14 @@ const clientservicefc = ({ fcpage ,conversionData }) => {
data={section?.ElementList} data={section?.ElementList}
/> />
); );
case "dynamic-zone.card":
return (
<Card
heading={section?.Heading}
data={section?.carddetails}
/>
);
default: default:
return null; return null;
} }
...@@ -110,6 +119,7 @@ export async function getServerSideProps() { ...@@ -110,6 +119,7 @@ export async function getServerSideProps() {
"FCDeatils.Image", "FCDeatils.Image",
"FCDeatils.Heading", "FCDeatils.Heading",
"FCDeatils.ElementList.StepImg", "FCDeatils.ElementList.StepImg",
"FCDeatils.carddetails",
"Clientel.logos", "Clientel.logos",
"seo", "seo",
"seo.metaImage", "seo.metaImage",
......
...@@ -157,7 +157,7 @@ const CorpediaPage = ({ CorpediaData, conversionData }) => { ...@@ -157,7 +157,7 @@ const CorpediaPage = ({ CorpediaData, conversionData }) => {
<div className="corpedia-page-area pt-70 pb-100 bg-light"> <div className="corpedia-page-area pt-70 pb-100 bg-light">
<Container> <Container>
<div className="section-title"> <div className="section-title">
<Heading heading={CorpediaData?.Heading?.Title} className="mb-0" /> <Heading heading={CorpediaData?.Heading?.Title} className="mb-0 primary-text" />
</div> </div>
<p className="text-center mb-3 mb-lg-5"> <p className="text-center mb-3 mb-lg-5">
{CorpediaData?.Heading?.Description} {CorpediaData?.Heading?.Description}
......
...@@ -17,21 +17,25 @@ import Industries from "@/container/Home/Industries"; ...@@ -17,21 +17,25 @@ import Industries from "@/container/Home/Industries";
import FunctionalAreas from "@/container/Home/FunctionalAreas"; import FunctionalAreas from "@/container/Home/FunctionalAreas";
import Seo from "@/components/reuseables/Seo/Seo"; import Seo from "@/components/reuseables/Seo/Seo";
import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode"; import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode";
import TechnicalExpertise from "@/container/Home/AreaofExpertise";
const inter = Inter({ subsets: ["latin"] }); const inter = Inter({ subsets: ["latin"] });
export default function Home({ homepage, conversionData }) { export default function Home({ homepage, conversionData }) {
const dispatch = useDispatch(); const dispatch = useDispatch();
// console.log("homepage", homepage); console.log("homepage", homepage);
const banner = homepage?.Banner; const banner = homepage?.Banner;
const Knowledgeshack = homepage?.Knowledgeshack; const Knowledgeshack = homepage?.Knowledgeshack;
const KnowledgeTab = homepage?.KnowledgeTab; const KnowledgeTab = homepage?.KnowledgeTab;
const people = homepage?.People; const people = homepage?.People;
const Areas = homepage?.AreasofExpertise; // const Areas = homepage?.AreasofExpertise;
const functionarea = homepage?.FunctionalAreas; const functionarea = homepage?.FunctionalAreas;
const industry = homepage?.Industry; const industry = homepage?.Industry;
const Clientel = homepage?.Clientel; const Clientel = homepage?.Clientel;
const code = conversionData?.conversion; const code = conversionData?.conversion;
const AreasExpertiseTitle = homepage?.AreasExpertiseTitle;
const AreasofExpertiseList = homepage?.AreasofExpertiselists;
console.log(AreasExpertiseTitle,"AreasofExpertiselists")
useEffect(() => { useEffect(() => {
dispatch(fetchBlogList()); dispatch(fetchBlogList());
...@@ -51,11 +55,12 @@ export default function Home({ homepage, conversionData }) { ...@@ -51,11 +55,12 @@ export default function Home({ homepage, conversionData }) {
<AboutContent Knowledges={Knowledgeshack} KnowledgeTab={KnowledgeTab} /> <AboutContent Knowledges={Knowledgeshack} KnowledgeTab={KnowledgeTab} />
<People people={people} /> <People people={people} />
<ClientService service={serviceData} /> <ClientService service={serviceData} />
<AreasofExpertise Areas={Areas} /> <TechnicalExpertise AreasExpertiseTitle={AreasExpertiseTitle} AreasofExpertiseList={AreasofExpertiseList}/>
{/* <AreasofExpertise Areas={Areas} /> */}
<FunctionalAreas functionarea={functionarea} /> <FunctionalAreas functionarea={functionarea} />
<Industries industry={industry} /> <Industries industry={industry} />
<HomeBlog data={blogData} /> <HomeBlog data={blogData} />
<div className="ptb-100 bg-fafafa"> <div className="ptb-50 bg-fafafa">
<PartnerSlider Clientel={Clientel} /> <PartnerSlider Clientel={Clientel} />
</div> </div>
<CallBackRequest /> <CallBackRequest />
...@@ -78,7 +83,9 @@ export async function getServerSideProps() { ...@@ -78,7 +83,9 @@ export async function getServerSideProps() {
"People.peoplelist", "People.peoplelist",
"whatwedo.Image", "whatwedo.Image",
"whatwedo.CTA", "whatwedo.CTA",
"AreasofExpertise.Image", "AreasExpertiseTitle.Heading",
"AreasExpertiseTitle.Image",
"AreasofExpertiselists",
"FunctionalAreas.Icon", "FunctionalAreas.Icon",
"Industry.Image", "Industry.Image",
"Industry.CTA", "Industry.CTA",
......
...@@ -39,7 +39,8 @@ export default function Home({ Knowledgepage, conversionData }) { ...@@ -39,7 +39,8 @@ export default function Home({ Knowledgepage, conversionData }) {
const corpedia = Knowledgepage?.Corpedia const corpedia = Knowledgepage?.Corpedia
const taxWire = Knowledgepage?.Taxwire const taxWire = Knowledgepage?.Taxwire
const Budgetpanorama = Knowledgepage?.Budgetpanorama const Budgetpanorama = Knowledgepage?.Budgetpanorama
console.log(conversionData, "data"); const BlogHeading = Knowledgepage?.Blogs
console.log(BlogHeading, "data");
const banners = [ const banners = [
...@@ -48,7 +49,7 @@ export default function Home({ Knowledgepage, conversionData }) { ...@@ -48,7 +49,7 @@ export default function Home({ Knowledgepage, conversionData }) {
pageTitle: Knowledgepage?.Banner?.Heading, pageTitle: Knowledgepage?.Banner?.Heading,
homePageUrl: "/", homePageUrl: "/",
homePageText: "Home", homePageText: "Home",
activePageText: "KnowledgeShack", activePageText: "Knowledge Shack",
}, },
]; ];
...@@ -66,7 +67,7 @@ export default function Home({ Knowledgepage, conversionData }) { ...@@ -66,7 +67,7 @@ export default function Home({ Knowledgepage, conversionData }) {
<Corpedia Corpedia={corpedia} corpedialist={corpedialist} /> <Corpedia Corpedia={corpedia} corpedialist={corpedialist} />
<TaxWire taxWire={taxWire} taxwirelist={taxwirelist} /> <TaxWire taxWire={taxWire} taxwirelist={taxwirelist} />
<BudgetPanorama Budgetpanorama={Budgetpanorama} budgetlist={budgetlist}/> <BudgetPanorama Budgetpanorama={Budgetpanorama} budgetlist={budgetlist}/>
<KnowledgeBlog Knowledgedata={blogData} /> <KnowledgeBlog Knowledgedata={blogData} BlogHeading={BlogHeading} />
</> </>
); );
}; };
......
...@@ -58,7 +58,7 @@ const TaxWire = ({ TaxwireData ,conversionData }) => { ...@@ -58,7 +58,7 @@ const TaxWire = ({ TaxwireData ,conversionData }) => {
<div className="tax-wire-page-area pt-70 pb-100 bg-light "> <div className="tax-wire-page-area pt-70 pb-100 bg-light ">
<Container> <Container>
<div className="section-title"> <div className="section-title">
<Heading heading={TaxwireData?.Heading?.Title} el="h2" /> <Heading heading={TaxwireData?.Heading?.Title} el="h2" className="primary-text" />
</div> </div>
<p className="text-center mb-3 mb-lg-5 "> <p className="text-center mb-3 mb-lg-5 ">
{TaxwireData?.Heading?.Description} {TaxwireData?.Heading?.Description}
......
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_2" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1178.66 321.84">
<defs>
<style>
.cls-1 {
fill: #fff;
}
.cls-2 {
fill: #f8971f;
}
</style>
</defs>
<g id="Layer_1-2" data-name="Layer 1">
<g>
<g>
<path class="cls-1" d="M.01,267.67c0-.89.96-1.01,1.85-1.42.96-.41,1.14-.3,2.15-.96.96-.66,1.97-.66,2.74-1.07.18-.06.3-.12.36-.12.53,0,1.01.6,1.31,1.85.41,1.37,1.31,3.32,1.73,5.17.23,1.85.53,2.15.96,3.27.23,1.13.78,2.86.96,3.33.48,1.55,1.49,6.18,1.78,6.6.53,1.19.59,1.96.78,3.09.18,1.24.18,2.38.59,3.03.48.66.89,1.37,1.31,3.21.18.78.84,2.68,1.25,2.68.48,0,1.55-2.26,2.21-4.22.66-1.96.89-2.26,1.25-3.09.3-.89.89-2.2,1.07-3.21.18-1.01,1.19-3.15,1.6-4.16.41-1.01.96-2.79,1.43-4.05.41-1.24.96-3.15,1.25-4.4.3-1.24.12-2.79.3-3.69.18-1.13-.12-1.49.59-2.38.59-.89,2.62-1.42,3.58-2.2.3-.3.66-.48,1.07-.48.66,0,1.19.42,1.43,1.37.41,1.49.3,2.68.78,4.05.48,1.37.53,4.34,1.07,5.06.66.71.78,1.55,1.19,2.68.18,1.07,1.25,5.06,1.73,6.66.41,1.6,1.31,3.03,1.31,3.69,0,.53,0,.6.3,1.31,0,.18.3.48.3.66.41.78.12,1.78,1.01,2.73.84.96,1.78,4.58,1.9,4.58.3,0,1.31-3.45,2.08-5.11.71-1.72.48-3.03,1.25-4.4.66-1.37,1.07-3.51,1.55-4.4.41-.83,1.14-3.75,1.43-5.11.06-.41.12-.71.12-1.13v-.83c0-.53.12-1.07.3-1.6.41-.89.48-1.72.48-2.61,0-2.15.06-2.5.06-2.73,0-.53-.12-.77-.59-1.42-.3-.41-.48-.71-.48-.89,0-.3.48-.66,1.37-1.07,1.49-.66,2.08-.71,2.97-1.19.41-.18.96-.48,1.43-.48.66,0,1.14.36,1.14,1.72v.41c-.18,2.86-1.31,6.48-1.85,7.14-.53.71-.78,2.91-1.25,4.51-.66,1.6-1.19,2.91-1.6,4.4-.41,1.49-.48,2.73-1.01,3.15-.66.42-1.07,2.26-1.73,4.58-.53,2.08-1.49,3.75-1.9,4.64-.41.89-.66,3.15-1.31,4.34-.78,1.6-.53,3.03-.71,4.51,0,1.49-1.96,1.96-3.22,2.91-.66.53-1.19.77-1.73.77s-.84-.36-.89-1.01c-.18-1.37-.89-2.2-1.14-3.57-.3-1.37-1.07-3.27-1.49-4.88-.66-1.6-1.67-3.69-1.85-4.94-.3-1.25-1.31-3.98-2.08-6.07-.71-2.08-1.19-4.05-1.37-4.81,0-.78-.48-2.08-.89-2.73-.23-.3-.48-1.19-.66-1.96-.12-.42-.23-.96-.3-1.49-.3.48-.53.96-.78,1.49-.41.89-.89,2.13-1.31,3.51-.78,2.79-1.49,5.06-2.03,5.52-.66.48-.59.89-.78,1.67-.19.78-.71,1.97-1.6,4.52-.48,1.6-1.96,5.17-2.15,6.13-.18.89-.3,2.15-.59,3.33-.41,1.19-.84,1.72-1.78,2.38-1.01.66-1.73,2.02-2.92,2.68-.18.12-.36.18-.53.18-.71,0-1.07-1.07-1.37-2.73-.3-2.02-1.6-4.76-1.78-5.41-.3-.6-.78-3.57-.96-4.34-.23-.89-.84-1.67-1.14-3.03-.41-1.37-.53-2.91-1.43-4.76-.78-1.85-2.15-7.37-2.44-8.61-.36-1.19-1.31-3.45-1.49-4.4-.18-.96-.89-2.5-1.37-3.15-.48-.66-.78-1.01-1.55-1.55-.66-.53-1.19-.23-1.25-1.37v-.26Z"/>
<path class="cls-1" d="M84.72,306.37c-.96.3-1.9.53-2.8.53-.41,0-.66.06-1.07-.12-.89-.3-1.01-.83-1.01-3.27,0-1.25-.3-2.26-.3-3.15,0-1.9-.06-2.97-.06-3.92,0-.66.06-1.19.12-1.6.06-.3.12-.66.12-.96,0-.53-.06-1.07-.06-1.55,0-.3,0-.48.06-.6.06-.3.18-.78.18-1.01,0-.3-.18-1.72-.23-2.86-.06-.96-.53-2.5-1.9-3.27-1.37-.78-.84-.78-2.38-1.07-.18-.06-.41-.06-.71-.06-1.25,0-2.21.66-3.58,1.6-1.6,1.19-1.9,2.2-2.56,2.91-.66.89-1.14,1.49-1.37,3.62-.23,1.85-.36,2.68-.36,4.1v1.25c.06,1.37.12,2.2.12,4.28,0,1.19.71,2.02.71,2.91,0,.41-.12.71-.36.96-.41.42-1.73.78-3.58,1.72-1.6.89-2.21,1.13-2.51,1.13-.06,0-.12,0-.18-.06-.18-.18-.23-.53-.23-1.19,0-.3,0-.53.06-.96v-3.27c0-1.6.36-2.79.36-4.51-.18-1.42-.23-2.68-.3-4.16,0-1.37,0-2.15.18-3.98.06-.48.06-1.01.06-1.49,0-.78-.06-1.55-.06-2.26,0-.53.06-1.13.12-1.67.06-.42.12-.78.12-1.19,0-1.19-.23-2.31-.23-3.45,0-.89.06-1.13.06-1.55,0-.66-.06-1.31-.06-2.02,0-.53.06-1.07.12-1.72.06-.42.06-.71.06-1.01,0-.89-.18-1.31-.18-2.2.06-1.19.12-1.78.12-2.26,0-.66-.06-1.13-.06-1.78,0-1.49-.66-2.5-.66-2.97,0-.71.48-.48,1.96-1.42,1.49-.89,1.9-.83,3.1-1.49.41-.18.66-.23.71-.23.66,0,.96.71,1.25,1.9.18.53.23,1.07.23,1.72,0,.89-.12,1.78-.18,2.43v5.06c0,1.24-.23,1.42-.23,1.85,0,.18.06.36.12.78.12.42.18.83.18,1.19,0,.78-.18,1.6-.18,2.97,0,2.08.06,6.48.06,6.78,0,.23,1.01-1.24,2.86-2.68,1.85-1.42,3.63-2.2,4.77-2.26,1.14-.06,1.9-.78,3.1-.78,1.37,0,3.22.41,4.47,1.31,1.31.83,3.34,3.45,3.34,7.31,0,1.37.06,2.43.06,3.45,0,.83-.06,1.67-.18,2.5-.18.48-.12.96-.12,1.37,0,1.37.3,2.43.3,3.33,0,.71-.12,1.37-.12,2.02,0,.48.06.89.23,1.19.48.96,1.01,1.72,1.01,2.5,0,.89-1.07.89-2.51,1.31v-.04Z"/>
<path class="cls-1" d="M99.26,294.66c.18.48.36,2.38,1.01,3.57.66,1.13,2.08,2.79,2.86,3.27.78.53,2.21,1.24,3.45,1.55,1.14.23,2.92.71,3.93.71,1.25-.06,2.97-.6,3.63-.89.66-.23,1.67-.78,2.08-1.19.41-.42.96-1.24,1.6-1.24.41,0,.84.41.84,1.07,0,.3-.12.53-.36.83-.48.48-.96.96-1.9,1.6-.78.59-1.01.78-2.56,1.55-1.49.78-3.7,1.24-5.36,1.42-.89.06-1.43.12-2.08.12s-1.19-.06-1.73-.12c-1.14-.18-2.08-.3-2.97-.3-.71,0-1.01-.48-2.15-.96-1.14-.48-2.74-1.07-4.11-2.5-1.31-1.31-2.26-4.28-2.44-5.35-.3-1.13-.23-2.15-.3-3.03-.06-.41-.06-.71-.06-1.13,0-.66.06-1.24.23-1.78.3-.96.53-2.2,1.01-3.45.48-1.19,1.96-2.91,2.68-3.62.71-.66,1.67-1.37,2.56-2.26,1.01-.89,2.51-1.6,4.47-2.13.96-.23,2.08-.3,3.1-.3s1.85.06,2.51.06c1.14,0,2.26.3,3.04.71.66.41,1.78,1.13,2.26,1.67.48.48,1.14,1.6,1.6,2.5.3.66.53,1.67.53,2.32,0,.18,0,.36-.06.42-.18.48-.3,2.26-.96,2.73-.53.53-.48.23-1.14.89-.66.48-3.93.83-4.89.83h-4.77c-1.37,0-1.25.06-2.62.23-.53.06-1.14.06-1.78.06h-1.14c-.06.78-.06,1.42-.06,1.85v.3ZM111.65,286.81c0-1.72-.53-2.86-1.19-3.57-.66-.71-.96-.78-1.6-1.07-.18-.06-.53-.12-.96-.12-.48,0-.96.06-1.37.12-.78.18-1.37.36-2.56.78-1.25.41-1.9,1.6-3.04,3.45-1.01,1.6-1.25,2.61-1.43,3.87,2.08,0,3.75-.06,4.77-.06.78,0,1.49.18,2.15.18.23,0,.41,0,.53-.06.66-.3,1.96-.18,2.86-.42,1.85-.48,1.85-1.96,1.85-3.09h-.01Z"/>
<path class="cls-1" d="M125.71,281.34c1.25-.41,2.68-1.01,3.58-1.25.53-.18.89-.36,1.31-.36.3,0,.53.18.66.6.18.3.12.83.12,1.49s-.06,1.19.12,1.49c.06.12.06.36.06.66,0,.71-.12,1.67-.12,2.31,0,.06.96-1.13,2.15-2.38,1.25-1.37,2.51-1.96,3.4-2.61,1.01-.66,1.9-.83,3.15-1.01.18,0,.41-.06.59-.06,1.19,0,2.51.48,3.15,1.13.48.48.71.96.71,1.37,0,.53-.23,1.07-.71,1.6-.78,1.01-.89,2.08-1.07,2.79-.18.53-.41.83-.78.83s-.66-.3-.84-.83c-.23-.66-.71-1.31-1.14-1.85-.41-.48-1.31-.89-2.21-.89-.96.06-1.37.23-2.26,1.01-.89.78-1.6,1.42-2.15,2.2-.66.78-1.9,1.9-2.21,3.51-.12.66-.18,1.37-.18,2.02s.06,1.24.12,2.13v.71c0,1.49-.3,2.2-.3,3.33v.23c.18,1.6.48,3.51.48,4.76v.42c-.18,1.24-1.25,1.19-2.26,1.85-.96.66-2.38.77-3.1,1.24-.06.06-.18.12-.36.12-.41,0-.53-.66-.71-1.42v-.48c0-.96.18-2.32.18-3.75v-.83c-.06-1.97-.23-3.98-.23-5.41,0-.66,0-1.31.06-2.2.18-1.19.12-2.15.12-3.27,0-.96,0-1.85.06-3.33.06-.42.06-.66.06-.89,0-.66-.18-1.13-.36-1.6-.41-1.13-.71-1.24-.71-1.9,0-.48.48-1.07,1.6-1.49v-.02Z"/>
<path class="cls-1" d="M153.71,294.66c.18.48.36,2.38,1.01,3.57.66,1.13,2.08,2.79,2.86,3.27.78.53,2.21,1.24,3.45,1.55,1.14.23,2.92.71,3.93.71,1.25-.06,2.97-.6,3.63-.89.66-.23,1.67-.78,2.08-1.19.41-.42.96-1.24,1.6-1.24.41,0,.84.41.84,1.07,0,.3-.12.53-.36.83-.48.48-.96.96-1.9,1.6-.78.59-1.01.78-2.56,1.55-1.49.78-3.7,1.24-5.36,1.42-.89.06-1.43.12-2.08.12s-1.19-.06-1.73-.12c-1.14-.18-2.08-.3-2.97-.3-.71,0-1.01-.48-2.15-.96-1.14-.48-2.74-1.07-4.11-2.5-1.31-1.31-2.26-4.28-2.44-5.35-.3-1.13-.23-2.15-.3-3.03-.06-.41-.06-.71-.06-1.13,0-.66.06-1.24.23-1.78.3-.96.53-2.2,1.01-3.45.48-1.19,1.96-2.91,2.68-3.62.71-.66,1.67-1.37,2.56-2.26,1.01-.89,2.51-1.6,4.47-2.13.96-.23,2.08-.3,3.1-.3s1.85.06,2.51.06c1.14,0,2.26.3,3.04.71.66.41,1.78,1.13,2.26,1.67.48.48,1.14,1.6,1.6,2.5.3.66.53,1.67.53,2.32,0,.18,0,.36-.06.42-.18.48-.3,2.26-.96,2.73-.53.53-.48.23-1.14.89-.66.48-3.93.83-4.89.83h-4.77c-1.37,0-1.25.06-2.62.23-.53.06-1.14.06-1.78.06h-1.14c-.06.78-.06,1.42-.06,1.85v.3ZM166.09,286.81c0-1.72-.53-2.86-1.19-3.57-.66-.71-.96-.78-1.6-1.07-.18-.06-.53-.12-.96-.12-.48,0-.96.06-1.37.12-.78.18-1.37.36-2.56.78-1.25.41-1.9,1.6-3.04,3.45-1.01,1.6-1.25,2.61-1.43,3.87,2.08,0,3.75-.06,4.77-.06.78,0,1.49.18,2.15.18.23,0,.41,0,.53-.06.66-.3,1.96-.18,2.86-.42,1.85-.48,1.85-1.96,1.85-3.09h-.01Z"/>
<path class="cls-2" d="M195.59,264.75h1.07c1.25.06,2.74.53,4.34.53.23,0,.48-.06.71-.06,1.9-.18,5.96.06,7.15-.23.89-.18,1.31-.18,2.21-.18h1.55c1.9-.06,3.63-.23,5.07-.3.66,0,1.01-.12,1.43-.12s.66.18.84.59c.06.06.06.23.06.42,0,.71-.48,1.6-.48,2.97s.18,2.56.18,3.92c-.06,2.08-.18,2.86-.84,2.91-.89,0-1.43-.23-1.6-1.37-.18-1.25-.23-.48-.41-1.67-.23-1.24-.96-2.2-1.43-2.86-.41-.59-2.51-1.19-3.33-1.55-.41-.18-.48-.12-.66-.12-.23,0-.41.06-1.31-.12-1.43-.18-.96-.06-1.9-.23-.23,0-.41-.06-.66-.06-.66,0-1.31.12-2.68.12-1.73,0-2.68.06-2.92.78-.3.71-.41,4.76-.41,8.26,0,1.97.18,3.75.18,5.11,0,1.07.02,1.9.06,2.5.06.53.36.6.89.6h1.25c.89.06,1.78.12,2.56.12.41,0,.71,0,1.01-.06.96-.18,2.15-.06,2.8-.3.41-.18,1.14-.18,1.9-.18h1.19c.89-.06,1.49-.6,2.21-.6.48,0,.96.3.96.71,0,.18-.12.36-.3.53-.78.78-.84.53-2.26,1.96-1.37,1.42-1.85,1.42-2.74,1.42s-1.96-.36-2.86-.53c-.9-.18-1.14-.06-2.8-.23-.48-.06-.96-.06-1.43-.06-1.14,0-2.03.12-2.26.41-.41.48-.48.83-.48,1.37,0,.41.06,1.01.06,1.72,0,1.19-.12,2.79-.12,4.16,0,.41,0,.83.06,1.6,0,.78-.18,1.42-.18,2.38,0,.23.06.48.06.78,0,1.49-.12,2.08-.12,2.73,0,.96.36,1.67.36,2.56,0,.36,0,.6-.06.71-.18.53-.96.71-2.44,1.13-1.9.48-2.86,1.07-3.81,1.07-.66,0-.66-.48-.66-1.13,0-1.13.36-1.07.41-2.43,0-1.42-.06-.96.12-2.5.12-1.55.18-3.03.18-4.52,0-1.01.12-1.67.12-2.31,0-.3-.06-.6-.12-1.01-.06-.18-.06-.36-.06-.66,0-.66.18-.96.18-1.85,0-.18-.06-.48-.06-.71-.06-1.13-.18-1.72-.18-2.38,0-.42.06-.71.12-1.19.06-.41.12-1.13.12-2.02,0-1.72-.12-4.16-.12-6.13,0-2.08-.23-3.21-.23-4.34,0-.48.06-1.01.18-1.6.12-.53.18-1.07.18-1.6,0-1.13-.23-2.08-.41-2.97,0-.18-.06-.18-.06-.36-.3-1.42-.96-1.96-.96-2.61,0-.89.71-.96,1.6-.96Z"/>
<path class="cls-2" d="M224.3,282.71c0-.71.84-.78,1.96-1.42,1.37-.89,2.03-.89,3.52-1.37.59-.18,1.01-.3,1.25-.3.66,0,.96.41.96,1.67,0,2.32.06,2.43-.12,4.58,0,2.32.06,2.91.12,4.1,0,.18.06.36.06.89,0,1.6-.3,3.15-.3,4.76,0,.48.06.96.12,1.42.3,2.15.23,2.97.3,4.46.06,1.6.41,2.43.41,3.09s-1.49,1.49-2.74,1.97c-1.14.48-2.21,1.13-3.1,1.13-.66,0-1.01-.6-1.01-1.49,0-.23,0-.41.06-.6.23-1.25.3-2.26.3-3.75,0-1.19.23-3.57.23-5.29,0-.41,0-.83-.06-1.13-.18-.66-.12-1.13-.12-1.67,0-1.67,0-2.15-.06-2.79l-.23-3.62c-.06-.66-.12-1.37-.3-2.5-.23-.89-.89-.96-1.14-1.6-.06-.23-.12-.36-.12-.53h.01ZM227.22,264.99c.06,0,.18-.06.23-.06.41-.12.71-.18.96-.18s.48,0,.66.06c.78.06,1.49.23,1.9.71.41.3.53.42.84,1.31.36.83.23.53.41,1.31.06.12.06.3.06.48,0,.53-.23.89-.48,1.42-.23.66-.59,1.01-.89,1.19-.41.18-1.37.59-2.26.59h-.18c-.71-.06-1.96-.41-2.62-1.07-.41-.42-.59-1.37-.59-2.26,0-.53.06-1.07.23-1.31.41-.89.84-1.9,1.73-2.2Z"/>
<path class="cls-2" d="M261.12,307.08c-.89,0-1.19-.3-1.49-2.13-.23-1.19-.36-2.73-.36-4.1,0-.83.06-1.6.18-2.26v-.3c.12-.66.18-1.13.18-1.42,0-.42-.06-.89-.06-1.78-.06-1.42-.12-2.38-.12-3.51v-.78c.06-.89.12-1.49.12-2.15,0-.41-.06-.83-.12-1.37-.23-1.42-.66-2.2-1.31-2.97-.66-.78-1.85-1.13-2.62-1.31-.96,0-2.92,1.19-3.57,1.55-1.37.66-3.04,1.78-3.81,2.91-.78,1.13-1.43,2.38-1.6,3.75-.24,1.42-.41,2.97-.41,4.64s.06,2.2.06,2.91c0,.42,0,.66-.06,1.07,0,1.85.23,3.69.41,4.58,0,1.13-.96,1.67-1.61,1.96-.41.18-.48.18-.71.18s-.53,0-1.07.18c-1.01.23-2.03.59-2.56.59-.12,0-.18,0-.23-.06-.24-.18-.36-.48-.36-1.01,0-.23,0-.6.06-1.01.18-1.01.3-2.15.3-3.75v-1.78c0-1.37-.06-2.38-.06-3.51,0-2.38.18-2.5.18-4.94s.23-1.6.23-2.86c0-.23.06-.48.06-.71,0-1.13-.18-2.02-.36-2.91-.18-1.01-.66-1.72-.66-2.61,0-.42.18-1.07,1.07-1.25,1.67-.18,3.4-.89,4.41-.89s1.37.53,1.37,1.07c0,1.25.12,2.02.12,2.91-.05.71-.05,1.37-.05,1.78v.71l.89-.89,1.85-1.6c1.37-1.07,1.67-1.07,2.8-1.85,1.19-.78,2.03-1.13,3.75-1.78.89-.3,1.85-.48,2.92-.48,1.14,0,2.15.23,3.1.66,1.67.78,2.86,1.49,3.58,3.33.71,1.85.71,2.91.71,4.64,0,1.85-.06,2.2-.06,3.57,0,1.01-.41,1.78-.41,2.68,0,.23,0,.41.06.53.18.48.12.96.12,1.37v4.94c0,1.24.18,1.85.59,2.32.24.41.36.78.36.96,0,.53-.48.83-1.01,1.07-1.37.66-3.88,1.07-4.77,1.13h-.01Z"/>
<path class="cls-2" d="M295.97,306.25c-.59.3-2.68.78-3.58.78-.78,0-1.49-.78-1.9-1.49-.41-.71-.41-1.19-.96-1.85-.12-.18-.3-.23-.48-.23-.71,0-1.73.89-2.62,1.37-1.37.89-1.91.89-2.8,1.31-.89.3-1.19.23-1.96.48-.89.3-1.49.18-2.62.23-1.14,0-3.1-.36-4.29-1.55-1.37-1.37-1.55-2.08-2.03-2.73-.3-.41-.3-.59-.3-1.01,0-.3,0-.48-.06-.66-.06-.12-.06-.42-.06-.83,0-.89.12-2.13.78-3.09.78-1.25,1.43-1.9,2.09-2.56.89-.66,1.55-.59,2.44-1.07.89-.48,2.33-.71,3.22-1.13.96-.48,2.26-.41,3.15-.83,1.01-.41,1.85-.41,2.74-.89,1.01-.42,2.03-.6,2.56-1.24.23-.3.18-1.67.18-2.38,0-.89-.41-1.96-.66-2.86-.3-.89-1.01-1.42-1.67-1.72-.71-.3-1.19-.48-1.67-.48-.66,0-1.19.23-2.15.89-.89.53-1.85.77-2.51,1.55-.54.78-.89.83-1.14,1.72-.18.71-.23,1.85-.54,2.73-.12.3-.3.41-.48.41-.41,0-.84-.3-1.07-.53-.89-.48-1.96-1.07-2.15-1.96-.05-.12-.05-.3-.05-.48,0-.41.05-.6.48-1.24.41-.78,1.78-1.85,2.44-2.26.66-.42,1.31-.53,2.03-1.07.66-.66,1.14-.48,2.74-1.19.78-.42,3.15-.6,4.89-.6,1.85,0,3.99.53,4.89,1.24.89.66,1.55,1.72,2.08,1.9.41.23.3,1.07.59,1.72.41.66.48,1.9.54,2.79,0,1.6-.06,3.03-.06,4.64,0,1.97-.41,3.45-.41,4.64,0,.96-.12,1.49-.12,1.96,0,.18,0,.36.06,1.78,0,.23,0,.42.06.6.18.78.3,1.37.54,2.02.18.71,1.49,1.55,1.49,1.96,0,.78-.78.89-1.67,1.19v.02ZM289.18,292.63c-.18-.18-1.78.3-2.44.48-.66.3-1.73.12-2.74.3-.89.18-2.08.3-2.97.6-1.85.66-2.21,1.9-2.21,3.51,0,.42.06.78.06,1.19.04.52.2,1.19.48,2.02.41,1.24.71,1.6,1.43,2.13.71.66,1.14.78,2.03.96.41.06.71.06.96.06.3,0,.48.06.89-.12.66-.23,1.25-.53,2.26-1.19,1.01-.53,2.08-1.31,2.15-1.72.05-.3.36-.66.36-1.31v-3.8c0-.89.23-.96.23-1.37-.18-.66-.06-1.42-.48-1.72h0Z"/>
<path class="cls-2" d="M326.17,307.08c-.89,0-1.19-.3-1.49-2.13-.23-1.19-.36-2.73-.36-4.1,0-.83.06-1.6.18-2.26v-.3c.12-.66.18-1.13.18-1.42,0-.42-.05-.89-.05-1.78-.06-1.42-.12-2.38-.12-3.51v-.78c.06-.89.12-1.49.12-2.15,0-.41-.06-.83-.12-1.37-.23-1.42-.66-2.2-1.31-2.97-.66-.78-1.85-1.13-2.62-1.31-.96,0-2.92,1.19-3.58,1.55-1.37.66-3.04,1.78-3.81,2.91-.78,1.13-1.43,2.38-1.61,3.75-.23,1.42-.41,2.97-.41,4.64s.06,2.2.06,2.91c0,.42,0,.66-.06,1.07,0,1.85.23,3.69.41,4.58,0,1.13-.96,1.67-1.6,1.96-.41.18-.48.18-.71.18s-.54,0-1.07.18c-1.01.23-2.03.59-2.56.59-.12,0-.18,0-.24-.06-.23-.18-.36-.48-.36-1.01,0-.23,0-.6.06-1.01.18-1.01.3-2.15.3-3.75v-1.78c0-1.37-.05-2.38-.05-3.51,0-2.38.18-2.5.18-4.94s.23-1.6.23-2.86c0-.23.06-.48.06-.71,0-1.13-.18-2.02-.36-2.91-.18-1.01-.66-1.72-.66-2.61,0-.42.18-1.07,1.07-1.25,1.67-.18,3.4-.89,4.41-.89s1.37.53,1.37,1.07c0,1.25.12,2.02.12,2.91-.06.71-.06,1.37-.06,1.78v.71l.89-.89,1.85-1.6c1.37-1.07,1.67-1.07,2.8-1.85,1.19-.78,2.03-1.13,3.75-1.78.89-.3,1.85-.48,2.92-.48,1.14,0,2.15.23,3.1.66,1.67.78,2.86,1.49,3.58,3.33.71,1.85.71,2.91.71,4.64,0,1.85-.06,2.2-.06,3.57,0,1.01-.41,1.78-.41,2.68,0,.23,0,.41.06.53.18.48.12.96.12,1.37v4.94c0,1.24.18,1.85.59,2.32.23.41.36.78.36.96,0,.53-.48.83-1.01,1.07-1.37.66-3.88,1.07-4.77,1.13h-.01Z"/>
<path class="cls-2" d="M361.14,288.42c0,.41-.23.83-.66.83s-.83-.18-.89-.71c-.06-.53-.54-.78-.78-1.42-.16-.44-.45-.97-.89-1.6-.41-.71-.59-.89-1.14-1.19-.66-.3-1.07-1.01-1.72-1.31-1.14-.48-2.26-.59-3.15-.59-.54,0-.96.06-1.37.12-1.14.18-2.33.89-3.34,1.67-1.19.96-1.72,2.08-2.15,3.69-.23.78-.12.6-.3,1.37-.18.78-.23,1.6-.3,2.5,0,.41-.06.83-.06,1.24,0,.48.06,1.07.18,1.78.23,1.24.54,1.37.78,2.26.24,1.01.48,1.55,1.25,2.91.89,1.37,2.08,1.6,2.51,2.08.41.42,1.19,1.01,2.08,1.24.78.23.84.53,2.44.78.41.06.66.12,1.07.12,1.01,0,1.9-.3,2.44-.36.48-.18,1.73-.23,2.21-.66.48-.41,1.72-.83,2.38-1.24.18-.18.41-.23.66-.23.3,0,.48.12.66.3.06.23.12.41.12.48,0,.41-.23.66-.48.96-.3.48-1.31.83-1.78,1.24-.41.41-.71.36-2.08,1.13-1.37.78-2.98,1.13-5.78,1.31-.48,0-.89.06-1.31.06-2.08,0-3.52-.36-4.17-.66-.78-.3-1.6-.12-2.62-.66-.96-.48-.41-.66-1.43-1.01-.96-.3-1.85-1.13-2.51-1.85-.66-.66-.84-1.01-1.91-2.73-.89-1.42-1.07-3.69-1.07-5.52.06-2.56.18-3.75.59-4.94.3-1.19,1.96-3.69,2.38-4.1.3-.3,2.38-2.26,2.92-2.61.78-.53,1.32-.41,2.74-1.42,1.37-.96,2.51-.78,3.88-1.19.59-.18,1.25-.23,1.91-.23s1.31.06,1.85.12c.23,0,.48.06.66.06,2.08.18,3.4.36,3.93.66.78.53,1.37.18,1.85.66.41.3.71.48.71,1.13,0,1.67-.41,2.38-.41,4.1,0,.48.12,1.07.12,1.49v-.06Z"/>
<path class="cls-2" d="M374.66,294.66c.18.48.36,2.38,1.01,3.57.66,1.13,2.08,2.79,2.86,3.27.78.53,2.21,1.24,3.45,1.55,1.14.23,2.92.71,3.93.71,1.25-.06,2.97-.6,3.63-.89.66-.23,1.67-.78,2.08-1.19.41-.42.96-1.24,1.61-1.24.41,0,.83.41.83,1.07,0,.3-.12.53-.36.83-.48.48-.96.96-1.91,1.6-.78.59-1.01.78-2.56,1.55-1.49.78-3.7,1.24-5.36,1.42-.89.06-1.43.12-2.09.12s-1.19-.06-1.72-.12c-1.14-.18-2.08-.3-2.98-.3-.71,0-1.01-.48-2.15-.96-1.14-.48-2.74-1.07-4.11-2.5-1.31-1.31-2.26-4.28-2.44-5.35-.3-1.13-.23-2.15-.3-3.03-.06-.41-.06-.71-.06-1.13,0-.66.06-1.24.23-1.78.3-.96.54-2.2,1.01-3.45.48-1.19,1.96-2.91,2.68-3.62.71-.66,1.67-1.37,2.56-2.26,1.01-.89,2.51-1.6,4.47-2.13.96-.23,2.08-.3,3.1-.3s1.85.06,2.51.06c1.14,0,2.26.3,3.04.71.66.41,1.78,1.13,2.26,1.67.48.48,1.14,1.6,1.61,2.5.3.66.53,1.67.53,2.32,0,.18,0,.36-.05.42-.18.48-.3,2.26-.96,2.73-.54.53-.48.23-1.14.89-.66.48-3.93.83-4.89.83h-4.77c-1.37,0-1.25.06-2.62.23-.54.06-1.14.06-1.78.06h-1.14c-.06.78-.06,1.42-.06,1.85v.3ZM387.04,286.81c0-1.72-.54-2.86-1.19-3.57-.66-.71-.96-.78-1.6-1.07-.18-.06-.54-.12-.96-.12-.48,0-.96.06-1.37.12-.78.18-1.37.36-2.56.78-1.25.41-1.91,1.6-3.04,3.45-1.01,1.6-1.25,2.61-1.43,3.87,2.08,0,3.75-.06,4.77-.06.78,0,1.49.18,2.15.18.24,0,.41,0,.54-.06.66-.3,1.96-.18,2.86-.42,1.85-.48,1.85-1.96,1.85-3.09h-.01Z"/>
<path class="cls-2" d="M449.42,276.17c0-1.01-.12-.78-.41-2.13-.41-1.37-.83-2.38-1.96-3.62-1.14-1.24-2.26-1.72-3.88-2.43-1.6-.66-2.38-.53-4.59-.71-.78-.06-1.31-.12-1.97-.12-1.14,0-2.09.18-3.33.71-1.85.78-2.62.66-3.63,1.78-1.01,1.19-2.62,2.2-3.63,3.62-.96,1.49-2.62,3.98-2.92,5.82-.23,1.6-.78,3.45-.78,5.77,0,.41.05.6.05,1.01.18,2.73,1.25,5.52,1.43,6.43.18.89,1.55,3.69,2.44,4.58.96.96,2.26,2.86,4.17,3.98,1.91,1.12,4.52,2.02,6.14,2.43.66.18,1.43.18,2.33.18,1.25,0,2.44-.06,3.63-.18,2.09-.18,3.27-1.01,4.89-1.67,1.61-.66,2.69-1.55,4.11-2.68,1.14-.89,1.6-1.49,2.26-1.49.12,0,.3.06.48.18.41.3.59.59.59.89s-.24.71-.71,1.19c-.96.89-1.07,1.24-1.96,1.9s-1.37,1.13-2.03,1.31c-.66.18-1.25.96-3.45,2.08-2.2,1.13-5.84,2.02-9.35,2.02s-4.41-.06-6.91-.71c-2.56-.66-4.06-1.01-5.96-1.9-1.91-.89-3.4-2.15-3.88-2.86-.48-.71-.41-1.42-1.31-1.96-.96-.48-1.96-.78-3.52-4.81-1.01-2.68-1.37-5.65-1.37-8.08,0-1.24.06-2.32.23-3.21.41-2.56,1.32-4.76,3.15-7.67,1.73-2.86,4.71-5.17,5.48-5.95.71-.89,1.49-1.13,2.44-1.31.96-.18.66-1.07,2.8-1.9,2.09-.78,6.14-2.38,9.29-2.38s6.32.23,8.4.66c1.37.23,3.27,1.07,4.52,1.07.71.23,1.43.71,1.43,1.49,0,.18-.06.18-.06.36-.24.96-.18,2.02-.36,3.45-.06.18-.06.36-.06.66,0,.96.3,1.55.3,2.91,0,1.67-.23,2.86-1.25,2.86s-1.25-.53-1.31-1.55h.03Z"/>
<path class="cls-2" d="M471.41,280.45c1.01-.41,2.44-.3,3.45-.78.36-.18.84-.23,1.37-.23.89,0,1.14.18,1.78.36,1.01.36,5.48,1.13,6.37,2.32.83,1.31,1.49,1.49,2.26,2.73.89,1.37,1.25,2.56,1.67,5.11.06.78.12,1.37.12,2.02,0,1.6-.23,2.73-.66,4.1-.54,1.85-.78,3.09-1.25,3.8-1.91,3.33-3.63,3.92-5.18,4.81-1.6,1.13-2.74,1.67-3.93,1.9-1.14.3-1.6.42-2.97.42s-5.12-.23-7.15-1.31c-1.85-.96-1.96-1.24-3.04-2.32-1.19-1.13-2.21-2.5-2.69-3.62-.23-1.13-.78-3.33-.78-5.24.06-1.37,0-2.43.41-4.28.3-1.85,1.32-2.97,2.21-4.4.96-1.6,2.92-3.09,3.88-3.87,1.01-.89,2.97-1.07,4.11-1.55h.01ZM467.3,287.29c-.41,1.19-.54,2.61-.54,4.7s.3,4.28.71,5.41c.41,1.13,1.43,2.79,2.08,3.51.41.41,2.26,2.43,2.97,2.56.96.41,1.96.96,2.74.96,1.6,0,2.33-.36,3.27-.78.78-.48,1.07-.18,1.91-1.19.89-1.01,1.49-1.72,1.78-3.45.23-1.37.83-2.32.83-3.51,0-.48,0-1.01-.05-1.67-.18-2.32-.96-5.06-1.55-5.82-.66-.71-.96-2.02-1.85-2.97-.89-1.13-1.72-1.67-2.68-2.31-.89-.66-2.56-.48-3.45-.48-1.14,0-1.67.6-2.86,1.31-2.21,1.37-3.04,2.56-3.34,3.75l.02-.02Z"/>
<path class="cls-2" d="M515.79,307.08c-.89,0-1.19-.3-1.49-2.13-.23-1.19-.36-2.73-.36-4.1,0-.83.06-1.6.18-2.26v-.3c.12-.66.18-1.13.18-1.42,0-.42-.06-.89-.06-1.78-.06-1.42-.12-2.38-.12-3.51v-.78c.06-.89.12-1.49.12-2.15,0-.41-.06-.83-.12-1.37-.23-1.42-.66-2.2-1.31-2.97-.66-.78-1.85-1.13-2.62-1.31-.96,0-2.92,1.19-3.58,1.55-1.37.66-3.04,1.78-3.81,2.91-.78,1.13-1.43,2.38-1.6,3.75-.23,1.42-.41,2.97-.41,4.64s.05,2.2.05,2.91c0,.42,0,.66-.05,1.07,0,1.85.23,3.69.41,4.58,0,1.13-.96,1.67-1.6,1.96-.41.18-.48.18-.71.18s-.54,0-1.07.18c-1.01.23-2.03.59-2.56.59-.12,0-.18,0-.23-.06-.23-.18-.36-.48-.36-1.01,0-.23,0-.6.06-1.01.18-1.01.3-2.15.3-3.75v-1.78c0-1.37-.06-2.38-.06-3.51,0-2.38.18-2.5.18-4.94s.23-1.6.23-2.86c0-.23.06-.48.06-.71,0-1.13-.18-2.02-.36-2.91-.18-1.01-.66-1.72-.66-2.61,0-.42.18-1.07,1.07-1.25,1.67-.18,3.4-.89,4.41-.89s1.37.53,1.37,1.07c0,1.25.12,2.02.12,2.91-.06.71-.06,1.37-.06,1.78v.71l.89-.89,1.85-1.6c1.37-1.07,1.67-1.07,2.8-1.85,1.19-.78,2.03-1.13,3.75-1.78.89-.3,1.85-.48,2.92-.48,1.14,0,2.15.23,3.09.66,1.67.78,2.86,1.49,3.58,3.33.71,1.85.71,2.91.71,4.64,0,1.85-.06,2.2-.06,3.57,0,1.01-.41,1.78-.41,2.68,0,.23,0,.41.06.53.18.48.12.96.12,1.37v4.94c0,1.24.18,1.85.59,2.32.23.41.36.78.36.96,0,.53-.48.83-1.01,1.07-1.37.66-3.88,1.07-4.77,1.13h-.01Z"/>
<path class="cls-2" d="M542.78,280.63c.89.3,1.55.18,2.33.83l.23.12c.71.48,1.07.71,1.07,1.67s-.71,1.6-.89,2.73c-.06.18-.06.3-.06.48s-.06.18-.06.23v.83c0,.71-.36.89-.78.89-.53,0-.78-.53-1.07-1.42-.66-1.97-1.55-2.97-3.7-3.87-.54-.3-1.19-.41-1.85-.41-.41,0-.71.06-.96.18-.71.23-1.6.66-2.15,1.37-.41.53-.66.96-.66,1.6,0,.23.06.48.18.71.41.78.96,1.24,1.91,1.78.96.66,1.72,1.13,2.38,1.42.66.23,1.49,1.49,2.26,1.67.71.18,1.55.41,2.08.71.54.23.78.83,1.43,1.37.71.48,1.6,1.19,2.08,1.96.48.89,1.01,1.42,1.01,2.79,0,2.08-.89,4.16-1.78,5.11-.78,1.01-1.07,1.37-2.08,2.08-1.01.78-2.44,1.13-3.15,1.42-.71.3-4.47.53-4.94.53s-2.44-.36-4.17-1.01c-1.72-.66-2.44-1.42-2.97-1.72-.48-.3-1.37-1.6-1.43-2.08,0-.66.41-.89,1.14-1.78.89-.96,1.6-2.08,2.03-2.08.48,0,.71.42,1.01,1.19.23.78.96,1.49,1.49,2.02.48.66,1.19,1.49,1.96,1.78,1.73.66,2.38,1.24,3.99,1.24.23,0,.48-.06.71-.06.89-.06,1.91-.53,2.56-1.42.66-.77.89-1.72.89-2.61,0-.83-.18-1.42-.54-1.72-.66-.66-1.25-1.49-2.15-1.9-.96-.41-2.56-1.37-3.1-1.55-.66-.18-1.37-1.55-2.26-1.72-.89-.23-2.03-.6-2.8-1.07l-.24-.18c-.71-.48-1.49-1.07-2.15-1.96-.54-.78-.78-1.6-.78-2.61,0-.78.18-1.55.48-2.38.71-1.72,2.15-2.68,3.27-3.57.96-.89,2.8-1.24,3.7-1.49.96-.18,2.74-.48,3.1-.48,1.37,0,2.51.12,3.4.36Z"/>
<path class="cls-2" d="M552.66,282.6c0-.3.12-.53.41-.71.96-.66,3.81-1.37,4.77-1.67.12-.06.3-.06.53-.06.66,0,1.07.3,1.32,1.42.05.18.05.53.05,1.01,0,1.37-.18,3.03-.18,4.4,0,1.13.06,1.85.06,2.61,0,.42,0,.71-.06,1.13-.06.42-.06.66-.06,1.07,0,.66.06,1.37.06,2.38s-.06,2.08-.06,3.09c0,.48,0,1.01.06,1.42.18,1.24.12,2.15.3,3.27.3,1.13.71,1.49,1.67,2.02.66.3,1.25.66,2.15.66.41,0,.89-.12,1.49-.3,1.49-.66,2.51-1.07,2.92-1.37.36-.23,2.86-2.5,3.34-3.57.23-.48.3-1.24.3-2.15s-.06-1.85-.06-2.32c0-.89.36-2.13.36-3.03-.06-.66-.23-1.31-.23-2.02.06-1.24.06-2.08.06-2.86,0-2.08-.12-3.27-.12-4.87,0-.53.12-1.13,1.25-1.42,1.6-.48,3.88-.48,4.59-.78.18-.06.36-.12.59-.12.41,0,.66.23.66.78v.23c-.18.96-.48,3.75-.66,5.17-.06.42-.06.83-.06,1.24,0,1.19.12,2.5.18,4.34,0,1.6-.18,2.86-.18,3.98,0,.96-.12,2.79-.12,4.46.18,1.13.12,2.43.3,3.09.18.66.78,1.31.78,1.6,0,.48-.41.71-1.31,1.13-.89.48-2.21,1.01-3.15,1.07h-.41c-.71,0-1.37-.18-1.61-1.13-.36-1.19-.41-3.33-.78-3.33-.23,0-1.73,1.37-2.38,1.85-.71.42-1.49,1.13-2.51,1.54-.96.48-2.44.96-4.29,1.19-.71.18-1.31.12-1.85.12-.78,0-1.72-.12-2.8-.36-1.85-.48-3.7-1.6-4.17-2.79-.66-1.25-.66-2.2-.89-3.39-.06-.18-.06-.36-.06-.6,0-.78.23-1.24.23-2.61-.06-1.13-.23-1.9-.23-2.79,0-.3.06-.59.06-.83,0-.3.3-.96.3-1.97v-1.31c0-.96.06-1.9.06-4.46-.06-1.13-.06-1.55-.3-2.08-.18-.71-.3-1.01-.3-1.42l-.02.04Z"/>
<path class="cls-2" d="M590.96,306.2c-1.01.36-2.62,1.78-3.52,1.78s-.83-1.13-.83-1.67v-1.55c-.06-.42-.06-.78-.06-1.19,0-1.24.12-2.68.12-3.8-.06-1.42-.48-2.86-.48-4.22.05-1.49.12-2.02.12-2.91,0-2.86.18-5.77.18-7.37,0-.53.12-.59.12-1.24,0-.41,0-.89-.18-2.26-.06-.53-.12-1.01-.12-1.49,0-1.19.12-2.13.18-2.43.18-.71.23-1.19.23-1.85,0-.3.06-.66-.12-1.07-.18-.41-.23-.89-.23-1.31,0-.53.12-1.07.12-1.78,0-1.13.06-3.51-.12-4.28-.18-.77-.78-2.13-.78-2.79,0-.96,1.01-1.42,1.67-1.85,1.01-.53,2.15-.42,3.15-1.07.53-.3,1.01-.42,1.31-.42.36,0,.59.18.78.6.12.48.18.96.18,1.37,0,.66-.06,1.19-.06,3.57,0,.48.06,1.01-.12,1.9-.3,1.9-.3,1.72-.3,3.15,0,1.13.36,1.9.36,3.8,0,.41,0,.89-.06,1.42-.18,1.42-.12,2.5-.12,3.62s0,2.08-.06,3.33c-.18,1.85-.18,3.21-.18,5.77,0,1.19.18,1.55.18,2.2,0,.71-.12,1.42-.12,2.08,0,1.13,0,2.43.18,3.57.06,1.19.12,2.43.12,4.16,0,.78.89,1.78.89,2.68,0,1.01-1.19,1.07-2.44,1.55Z"/>
<path class="cls-2" d="M602.05,277.72c0-1.6.23-2.13.96-2.68.71-.53,1.14-.66,2.26-1.78,1.01-.96,1.78-1.13,2.8-2.02.3-.3.66-.48,1.01-.48.41,0,.71.18.78.59,0,.71-.71,1.72-1.01,2.86-.23.78-.36,1.85-.36,2.79,0,.78-.18,2.15-.18,2.61,0,.3,0,.48.06.53.23.48.36.66.89.66.3,0,.54,0,.71-.06.41-.06.59-.06.89-.06.66,0,1.01.06,2.15.06.41,0,.71.06,1.14.06.36,0,.71-.06,1.07-.18.06-.06.18-.06.36-.06s.23.06.23.23c0,.36-.23.78-.71,1.31-.89,1.01-1.72,1.07-2.68,1.25h-3.52c-.18.18-.3.41-.41.66-.18.42-.36,1.01-.36,1.72v.71c0,.96-.12,1.37-.12,2.26,0,.3,0,.66.06,1.07,0,.41.06.71.06,1.13,0,1.01-.12,1.96-.12,2.68,0,.3,0,.53.06.66.18,1.13.23,1.25.23,2.15v1.19c0,.48,0,.96.18,1.67.23,1.37,0,1.49.48,2.61.48.96,1.37,2.02,3.04,2.43.3.06.66.06.89.06,1.14,0,1.72-.41,2.44-.66,1.01-.42,1.49-.78,2.03-1.19.3-.18.53-.23.71-.23.23,0,.48.12.71.36.05.06.05.12.05.23,0,.66-1.25,1.72-3.45,2.91-1.72.96-3.22,1.42-5.3,1.42-1.19,0-3.4-.3-4.77-1.24-1.72-1.13-2.51-2.02-2.8-3.03-.41-.89-.41-1.78-.48-2.97-.05-.96-.18-2.15-.18-3.27.06-.66.12-2.2.3-2.68,0-.89-.23-1.85-.23-2.97,0-.96.3-2.02.3-3.03,0-.3,0-.53-.06-.71-.06-.41-.06-.83-.06-1.31v-1.9c-.05-.23-.36-.36-.96-.36h-.89c-.89,0-1.37-.18-1.37-.48,0-.78,1.01-1.37,1.67-1.78.71-.48,1.43-.41,1.49-.66v-3.09h0Z"/>
<path class="cls-2" d="M622.55,282.71c0-.71.83-.78,1.96-1.42,1.37-.89,2.03-.89,3.52-1.37.59-.18,1.01-.3,1.25-.3.66,0,.96.41.96,1.67,0,2.32.05,2.43-.12,4.58,0,2.32.06,2.91.12,4.1,0,.18.05.36.05.89,0,1.6-.3,3.15-.3,4.76,0,.48.06.96.12,1.42.3,2.15.23,2.97.3,4.46.06,1.6.41,2.43.41,3.09s-1.49,1.49-2.74,1.97c-1.14.48-2.21,1.13-3.1,1.13-.66,0-1.01-.6-1.01-1.49,0-.23,0-.41.05-.6.24-1.25.3-2.26.3-3.75,0-1.19.23-3.57.23-5.29,0-.41,0-.83-.06-1.13-.18-.66-.12-1.13-.12-1.67,0-1.67,0-2.15-.06-2.79l-.23-3.62c-.06-.66-.12-1.37-.3-2.5-.23-.89-.89-.96-1.14-1.6-.06-.23-.12-.36-.12-.53h.01ZM625.46,264.99c.06,0,.18-.06.23-.06.41-.12.71-.18.96-.18s.48,0,.66.06c.78.06,1.49.23,1.91.71.41.3.54.42.83,1.31.36.83.23.53.41,1.31.06.12.06.3.06.48,0,.53-.24.89-.48,1.42-.23.66-.59,1.01-.89,1.19-.41.18-1.37.59-2.26.59h-.18c-.71-.06-1.96-.41-2.62-1.07-.41-.42-.59-1.37-.59-2.26,0-.53.06-1.07.23-1.31.41-.89.84-1.9,1.73-2.2Z"/>
<path class="cls-2" d="M659.36,307.08c-.89,0-1.19-.3-1.49-2.13-.23-1.19-.36-2.73-.36-4.1,0-.83.06-1.6.18-2.26v-.3c.12-.66.18-1.13.18-1.42,0-.42-.06-.89-.06-1.78-.05-1.42-.12-2.38-.12-3.51v-.78c.06-.89.12-1.49.12-2.15,0-.41-.06-.83-.12-1.37-.23-1.42-.66-2.2-1.31-2.97-.66-.78-1.85-1.13-2.62-1.31-.96,0-2.92,1.19-3.58,1.55-1.37.66-3.04,1.78-3.81,2.91-.78,1.13-1.43,2.38-1.6,3.75-.23,1.42-.41,2.97-.41,4.64s.06,2.2.06,2.91c0,.42,0,.66-.06,1.07,0,1.85.23,3.69.41,4.58,0,1.13-.96,1.67-1.6,1.96-.41.18-.48.18-.71.18s-.54,0-1.07.18c-1.01.23-2.03.59-2.56.59-.12,0-.18,0-.23-.06-.23-.18-.36-.48-.36-1.01,0-.23,0-.6.06-1.01.18-1.01.3-2.15.3-3.75v-1.78c0-1.37-.06-2.38-.06-3.51,0-2.38.18-2.5.18-4.94s.23-1.6.23-2.86c0-.23.06-.48.06-.71,0-1.13-.18-2.02-.36-2.91-.18-1.01-.66-1.72-.66-2.61,0-.42.18-1.07,1.07-1.25,1.67-.18,3.4-.89,4.41-.89s1.37.53,1.37,1.07c0,1.25.12,2.02.12,2.91-.06.71-.06,1.37-.06,1.78v.71l.89-.89,1.85-1.6c1.37-1.07,1.67-1.07,2.8-1.85,1.19-.78,2.03-1.13,3.75-1.78.89-.3,1.85-.48,2.92-.48,1.14,0,2.15.23,3.1.66,1.67.78,2.86,1.49,3.57,3.33.71,1.85.71,2.91.71,4.64,0,1.85-.06,2.2-.06,3.57,0,1.01-.41,1.78-.41,2.68,0,.23,0,.41.06.53.18.48.12.96.12,1.37v4.94c0,1.24.18,1.85.59,2.32.23.41.36.78.36.96,0,.53-.48.83-1.01,1.07-1.37.66-3.88,1.07-4.77,1.13h0Z"/>
<path class="cls-2" d="M676.76,308.93c-.06-.06-.66-.36-.71-.36-1.37-.3-2.68-1.13-2.68-2.26s.06-2.02,1.73-2.97c.96-.66,2.97-1.49,3.09-1.6-.06,0-1.6-.6-3.27-1.97-1.6-1.37-2.2-2.5-2.92-3.62-.66-1.13-.54-2.56-.71-3.33-.06-.06-.06-.3-.06-.6,0-1.42.59-4.4,1.55-6,1.14-1.85,2.33-2.97,3.52-3.69.96-.66,2.15-1.31,3.27-1.6,1.6-.23,3.27-.66,5.18-.89,2.33,0,4.59.3,5.96.96,1.43.66,1.91.53,3.1.83.41.12.83.18,1.37.18.41,0,.84-.06,1.49-.06.96,0,1.96-.71,2.03-.78.06-.06.18-.12.3-.12.41,0,.66.41.66.89,0,.18-.06.36-.12.41-.41.78-1.07,1.42-2.2,1.85-.78.3-.96.66-2.33.83.66.48.23.6.89,1.67.48.89.89,3.27.89,4.99,0,1.6-.48,3.15-1.14,4.58-.66,1.43-2.33,2.68-2.86,3.21-.41.53-1.96,1.31-2.86,1.72-.78.48-3.52,1.31-5.25,1.31-.3,0-.54,0-.71-.06-.54-.12-2.69-.12-3.45-.12-.89,0-1.78.78-1.85,1.31,0,.3.12.48.89.66.89,0,1.73.48,2.86.48,2.33,0,2.98.06,3.45.23.53.3,1.19.48,1.91.48.23,0,.41-.06,1.07-.06.96,0,2.33.3,3.1.6,2.44.89,3.58,1.49,4.52,3.92.18.42.23,1.07.23,1.72,0,1.24-.23,3.27-1.14,4.28-1.37,1.67-1.91,2.56-2.92,2.97-.96.41-.89.71-1.91,1.13-.71.3-3.52,1.19-6.44,1.37-.54.05-1.07.05-1.55.05-2.44,0-5.72-.53-7.21-.95-2.92-1.01-4.59-3.33-4.59-4.76s.3-1.85.59-2.61c.54-1.24,1.96-2.08,2.62-2.73.48-.41,1.6-1.01,2.56-1.49h.04ZM691.77,311.54c-1.78-1.31-2.26-.66-4.35-1.42-2.38-.77-4.47-.41-5.89-.71-.66-.18-1.67-.3-2.56-.3-.41.53-1.19,1.13-1.85,1.78-.53.66-1.01,1.49-1.01,2.5,0,.18.06.36.06.53.18,1.19.59,1.37,1.55,2.15.71.65,1.78,1.07,5.12,1.54.48.06.89.3,1.31.3,1.19,0,2.51-.06,3.52-.06,3.33,0,5.48-2.02,5.48-3.87,0-.89-.24-1.55-1.37-2.43h0ZM678.61,285.69c-.44.99-.76,2-.96,3.03,0,.48-.24,1.01-.24,1.72,0,1.24.3,2.5.48,3.21.23.89.71,2.56,1.01,3.21.3.66,1.19,1.72,1.37,1.96.18.3,1.78,1.13,3.63,1.55.41.06.66.12.96.12.66,0,1.14-.18,2.08-.59,1.43-.66,2.51-1.37,3.22-3.03.66-1.6.53-2.02.71-3.62.05-.89.3-1.67.3-2.56,0-.48-.06-.96-.23-1.42-.41-1.24-.59-2.68-1.37-3.8-.89-1.37-1.73-2.02-2.74-2.73-.66-.42-1.19-.36-2.09-.36-.41,0-.78-.18-1.49-.18-.41,0-.96.12-1.55.3-1.85.71-2.44,1.85-3.1,3.21v-.02Z"/>
<path class="cls-1" d="M756.52,306.37c-.89.3-1.78.53-2.56.53-.54,0-.96-.12-1.19-.36-.18-.18-.41-1.19-.41-2.32v-.6c.06-.41.06-.71.06-1.01,0-.66-.06-1.01-.06-3.33,0-.66,0-1.24.18-2.61,0-.18.18-1.42.18-2.56,0-.23-.05-.53-.05-.71-.06-.89-.12-1.55-.12-2.26,0-.41,0-.83.06-1.24.06-.3.06-.78.06-1.24,0-1.13-.06-2.2-.12-2.86,0-.89-.48-2.2-1.01-2.61-.54-.36-1.01-.53-1.55-.53s-1.07.12-1.78.18c-1.37.18-2.38,1.49-3.27,2.02-.89.66-1.37,1.42-1.91,2.32-.18.23-.66,1.31-.83,3.75-.06.96-.12,1.37-.12,1.67,0,.48.06.71.12,2.31v.78c0,1.9-.23,2.68-.23,4.28-.06,1.13-.12,1.78-.12,2.31,0,.36.06.78.18,1.24.18.66.3.96.3,1.37s-.18.71-.59.89c-1.25.66-4.71,1.13-4.95,1.13-.54,0-.78-.36-.78-1.13.18-1.9,0-4.28.23-5.65.18-.42.12-1.07.12-1.78,0-1.42-.12-3.21-.12-4.22s.06-1.67.06-2.43c0-.41,0-.83-.06-1.37-.05-.53-.05-.96-.05-1.37v-1.19c0-.42,0-.78-.06-1.24-.18-1.37-.12-1.72-.89-2.61-.71-1.01-2.2-1.19-2.68-1.24-.66,0-1.67.36-3.1,1.31-1.37.89-1.85,1.78-2.74,2.68-.89.89-1.37,1.31-1.37,2.91s-.3,2.61-.3,4.51-.48,5.11-.48,7.19c0,1.85.54,2.79.54,3.45,0,.06-.06.18-.06.23-.18.78-1.49,1.07-2.44,1.25-.96.23-2.33.78-2.56.78-.18,0-.66.23-1.14.23-.41,0-.66-.23-.71-.66v-.53c0-1.19.18-2.68.36-3.57.18-.89.18-3.33.18-7.14,0-1.19.06-2.68.12-3.8.18-1.6,0-2.68.18-3.8,0-.42.06-.83.06-1.24,0-.71-.06-1.37-.3-1.85-.3-.71-.59-1.78-.59-2.56,0-1.01.53-.53,2.2-1.31,1.25-.53,2.26-.66,3.04-.66h.66c.96.06.96.53,1.14,1.72.18,1.6.12,2.08.12,3.03,0,.12,0,.18.06.18.3,0,1.25-1.24,2.69-2.38,1.6-1.13,1.73-.96,3.04-1.6,1.25-.66,2.38-.78,3.27-.78.41,0,.96-.06,1.6-.06s1.31.06,1.96.36c1.01.48,3.09,1.49,3.4,2.26.18.53.41.96.66,1.24.18.18.3.41.41.66l.3-.36c.23-.23.59-.71,1.49-1.37,1.6-1.24,1.55-1.6,2.74-2.08,1.25-.48,1.73-.6,2.74-.83.84-.23,1.67-.36,2.56-.36.3,0,.66,0,.96.06,1.19.23,3.15.78,4.17,1.9.89,1.01,1.01,1.42,1.25,2.68.23,1.24.36,2.5.36,3.75,0,.96-.05,1.9-.12,2.68-.06.48-.06.78-.06,1.19,0,.66.06,1.13.06,1.78,0,.3,0,.71-.06,1.13-.18,1.37-.23,2.26-.23,3.15.06,1.96.12,3.75.12,4.51,0,.89.84,1.42.84,2.56,0,1.07-1.31.78-2.98,1.24h-.02Z"/>
<path class="cls-1" d="M772.18,294.66c.18.48.36,2.38,1.01,3.57.66,1.13,2.08,2.79,2.86,3.27.78.53,2.2,1.24,3.45,1.55,1.14.23,2.92.71,3.93.71,1.25-.06,2.97-.6,3.63-.89.66-.23,1.67-.78,2.09-1.19.41-.42.96-1.24,1.6-1.24.41,0,.83.41.83,1.07,0,.3-.12.53-.36.83-.48.48-.96.96-1.91,1.6-.78.59-1.01.78-2.56,1.55-1.49.78-3.7,1.24-5.36,1.42-.89.06-1.43.12-2.08.12s-1.19-.06-1.73-.12c-1.14-.18-2.08-.3-2.98-.3-.71,0-1.01-.48-2.15-.96-1.14-.48-2.74-1.07-4.11-2.5-1.31-1.31-2.26-4.28-2.44-5.35-.3-1.13-.23-2.15-.3-3.03-.06-.41-.06-.71-.06-1.13,0-.66.06-1.24.23-1.78.3-.96.54-2.2,1.01-3.45.48-1.19,1.96-2.91,2.68-3.62.71-.66,1.67-1.37,2.56-2.26,1.01-.89,2.51-1.6,4.47-2.13.96-.23,2.09-.3,3.1-.3s1.85.06,2.51.06c1.14,0,2.26.3,3.04.71.66.41,1.78,1.13,2.26,1.67.48.48,1.14,1.6,1.6,2.5.3.66.54,1.67.54,2.32,0,.18,0,.36-.06.42-.18.48-.3,2.26-.96,2.73-.54.53-.48.23-1.14.89-.66.48-3.93.83-4.89.83h-4.77c-1.37,0-1.25.06-2.62.23-.54.06-1.14.06-1.78.06h-1.14c-.06.78-.06,1.42-.06,1.85v.3ZM784.57,286.81c0-1.72-.53-2.86-1.19-3.57-.66-.71-.96-.78-1.6-1.07-.18-.06-.54-.12-.96-.12-.48,0-.96.06-1.37.12-.78.18-1.37.36-2.56.78-1.25.41-1.91,1.6-3.04,3.45-1.01,1.6-1.25,2.61-1.43,3.87,2.09,0,3.75-.06,4.77-.06.78,0,1.49.18,2.15.18.23,0,.41,0,.53-.06.66-.3,1.96-.18,2.86-.42,1.85-.48,1.85-1.96,1.85-3.09h-.01Z"/>
<path class="cls-1" d="M802.52,294.66c.18.48.36,2.38,1.01,3.57.66,1.13,2.08,2.79,2.86,3.27.78.53,2.21,1.24,3.45,1.55,1.14.23,2.92.71,3.93.71,1.25-.06,2.97-.6,3.63-.89.66-.23,1.67-.78,2.08-1.19.41-.42.96-1.24,1.61-1.24.41,0,.83.41.83,1.07,0,.3-.12.53-.36.83-.48.48-.96.96-1.91,1.6-.78.59-1.01.78-2.56,1.55-1.49.78-3.7,1.24-5.36,1.42-.89.06-1.43.12-2.08.12s-1.19-.06-1.72-.12c-1.14-.18-2.08-.3-2.98-.3-.71,0-1.01-.48-2.15-.96-1.14-.48-2.74-1.07-4.11-2.5-1.31-1.31-2.26-4.28-2.44-5.35-.3-1.13-.23-2.15-.3-3.03-.06-.41-.06-.71-.06-1.13,0-.66.06-1.24.23-1.78.3-.96.54-2.2,1.01-3.45.48-1.19,1.96-2.91,2.68-3.62.71-.66,1.67-1.37,2.56-2.26,1.01-.89,2.51-1.6,4.47-2.13.96-.23,2.08-.3,3.1-.3s1.85.06,2.51.06c1.14,0,2.26.3,3.04.71.66.41,1.78,1.13,2.26,1.67.48.48,1.14,1.6,1.61,2.5.3.66.53,1.67.53,2.32,0,.18,0,.36-.06.42-.18.48-.3,2.26-.96,2.73-.54.53-.48.23-1.14.89-.66.48-3.93.83-4.89.83h-4.77c-1.37,0-1.25.06-2.62.23-.53.06-1.13.06-1.78.06h-1.14c-.06.78-.06,1.42-.06,1.85v.3ZM814.9,286.81c0-1.72-.54-2.86-1.19-3.57-.66-.71-.96-.78-1.6-1.07-.18-.06-.54-.12-.96-.12-.48,0-.96.06-1.37.12-.78.18-1.37.36-2.56.78-1.25.41-1.91,1.6-3.04,3.45-1.01,1.6-1.25,2.61-1.43,3.87,2.08,0,3.75-.06,4.77-.06.78,0,1.49.18,2.15.18.23,0,.41,0,.54-.06.66-.3,1.96-.18,2.86-.42,1.85-.48,1.85-1.96,1.85-3.09h-.01Z"/>
<path class="cls-1" d="M828.78,277.72c0-1.6.23-2.13.96-2.68.71-.53,1.14-.66,2.26-1.78,1.01-.96,1.78-1.13,2.8-2.02.3-.3.66-.48,1.01-.48.41,0,.71.18.78.59,0,.71-.71,1.72-1.01,2.86-.23.78-.36,1.85-.36,2.79,0,.78-.18,2.15-.18,2.61,0,.3,0,.48.06.53.23.48.36.66.89.66.3,0,.54,0,.71-.06.41-.06.59-.06.89-.06.66,0,1.01.06,2.15.06.41,0,.71.06,1.14.06.36,0,.71-.06,1.07-.18.05-.06.18-.06.36-.06s.23.06.23.23c0,.36-.23.78-.71,1.31-.89,1.01-1.72,1.07-2.68,1.25h-3.52c-.18.18-.3.41-.41.66-.18.42-.36,1.01-.36,1.72v.71c0,.96-.12,1.37-.12,2.26,0,.3,0,.66.06,1.07,0,.41.06.71.06,1.13,0,1.01-.12,1.96-.12,2.68,0,.3,0,.53.06.66.18,1.13.23,1.25.23,2.15v1.19c0,.48,0,.96.18,1.67.23,1.37,0,1.49.48,2.61.48.96,1.37,2.02,3.04,2.43.3.06.66.06.89.06,1.14,0,1.72-.41,2.44-.66,1.01-.42,1.49-.78,2.03-1.19.3-.18.54-.23.71-.23.24,0,.48.12.71.36.06.06.06.12.06.23,0,.66-1.25,1.72-3.45,2.91-1.73.96-3.22,1.42-5.3,1.42-1.19,0-3.4-.3-4.77-1.24-1.72-1.13-2.51-2.02-2.8-3.03-.41-.89-.41-1.78-.48-2.97-.06-.96-.18-2.15-.18-3.27.06-.66.12-2.2.3-2.68,0-.89-.23-1.85-.23-2.97,0-.96.3-2.02.3-3.03,0-.3,0-.53-.06-.71-.06-.41-.06-.83-.06-1.31v-1.9c-.06-.23-.36-.36-.96-.36h-.89c-.89,0-1.37-.18-1.37-.48,0-.78,1.01-1.37,1.67-1.78.71-.48,1.43-.41,1.49-.66v-3.09h.01Z"/>
<path class="cls-1" d="M863.82,280.63c.89.3,1.55.18,2.33.83l.24.12c.71.48,1.07.71,1.07,1.67s-.71,1.6-.89,2.73c-.06.18-.06.3-.06.48s-.06.18-.06.23v.83c0,.71-.36.89-.78.89-.54,0-.78-.53-1.07-1.42-.66-1.97-1.55-2.97-3.7-3.87-.54-.3-1.19-.41-1.85-.41-.41,0-.71.06-.96.18-.71.23-1.6.66-2.15,1.37-.41.53-.66.96-.66,1.6,0,.23.05.48.18.71.41.78.96,1.24,1.91,1.78.96.66,1.72,1.13,2.38,1.42.66.23,1.49,1.49,2.26,1.67.71.18,1.55.41,2.08.71.54.23.78.83,1.43,1.37.71.48,1.6,1.19,2.08,1.96.48.89,1.01,1.42,1.01,2.79,0,2.08-.89,4.16-1.78,5.11-.78,1.01-1.07,1.37-2.08,2.08-1.01.78-2.44,1.13-3.15,1.42-.71.3-4.46.53-4.94.53s-2.44-.36-4.17-1.01c-1.72-.66-2.44-1.42-2.97-1.72-.48-.3-1.37-1.6-1.43-2.08,0-.66.41-.89,1.14-1.78.89-.96,1.6-2.08,2.03-2.08.48,0,.71.42,1.01,1.19.23.78.96,1.49,1.49,2.02.48.66,1.19,1.49,1.96,1.78,1.73.66,2.38,1.24,3.99,1.24.23,0,.48-.06.71-.06.89-.06,1.91-.53,2.56-1.42.66-.77.89-1.72.89-2.61,0-.83-.18-1.42-.53-1.72-.66-.66-1.25-1.49-2.15-1.9-.96-.41-2.56-1.37-3.1-1.55-.66-.18-1.37-1.55-2.26-1.72-.89-.23-2.03-.6-2.8-1.07l-.23-.18c-.71-.48-1.49-1.07-2.15-1.96-.54-.78-.78-1.6-.78-2.61,0-.78.18-1.55.48-2.38.71-1.72,2.15-2.68,3.27-3.57.96-.89,2.8-1.24,3.7-1.49.96-.18,2.74-.48,3.1-.48,1.37,0,2.51.12,3.4.36Z"/>
<path class="cls-2" d="M887.46,266.6c1.01-.89,1.07-1.19,1.73-2.15.36-.48.71-.71,1.14-.71s.71.18.89.53c.3.48.84,1.01,2.44,1.42.71.18,1.55.36,2.44.36.41,0,.78-.06,1.19-.12.48-.06.84-.12,1.14-.12.66,0,1.14.12,2.03.12,1.14,0,2.51.12,3.75.12h.96c1.14,0,2.38.18,3.52.18.41,0,.66,0,.83-.06,1.14-.18,3.15-.23,3.99-.42.41-.18,1.61-.23,2.56-.23.66,0,1.19,0,1.43.18.23.12.36.3.36.53,0,.53-.48,1.37-1.14,2.26-.89,1.19-1.07,2.43-1.96,2.61-.89,0-1.07-.71-1.49-1.49-.41-.78-.78-.83-2.92-1.07-.54-.06-.96-.06-1.37-.06-1.14,0-1.55.18-2.08.18h-.66c-.66,0-1.14.12-1.14,1.31,0,1.42-.71,2.56-.71,3.03,0,.06.06.12.06.18.18.36.36.66.36,3.33.06,1.9.06,3.21.06,4.34v1.24c-.06,1.25-.06,2.38-.06,3.27,0,.71-.23,1.42-.23,1.9,0,.18,0,.3.06.36.18.53.41,2.73.41,3.75,0,.66.06,2.2.06,3.69,0,.71,0,1.37-.06,2.02-.12,1.13-.18,2.02-.18,2.61,0,.42,0,.78.06.96.18.89.3,2.02.54,2.91,0,1.01-1.49,1.97-2.51,2.38-1.14.48-1.85,1.13-2.56,1.6-.18.18-.48.23-.78.23-.54,0-1.01-.42-1.01-1.6,0-1.6-.48-4.58-.48-5.52,0-1.01.41-4.94.41-6.43s.12-2.56.12-3.92c0-.78.06-1.42.06-2.08,0-.42.06-.66-.12-1.07-.06-.41-.12-1.07-.12-2.02,0-1.6.12-3.57.3-3.87.06-.18.12-.36.12-.53,0-.66-.18-1.42-.36-1.9-.18-.66-.12-1.55-.18-2.5v-6.36c-.06-.53-.3-1.42-2.15-1.42s-2.26-.06-2.92-.06c-.54,0-1.67.18-2.8.18h-2.56c-.89,0-1.67,0-1.67-.42,0-.96.06-.77,1.19-1.67h.03Z"/>
<path class="cls-2" d="M921,294.66c.18.48.36,2.38,1.01,3.57.66,1.13,2.09,2.79,2.86,3.27.78.53,2.21,1.24,3.45,1.55,1.14.23,2.92.71,3.93.71,1.25-.06,2.98-.6,3.63-.89.66-.23,1.67-.78,2.08-1.19.41-.42.96-1.24,1.6-1.24.41,0,.84.41.84,1.07,0,.3-.12.53-.36.83-.48.48-.96.96-1.91,1.6-.78.59-1.01.78-2.56,1.55-1.49.78-3.7,1.24-5.36,1.42-.89.06-1.43.12-2.08.12s-1.19-.06-1.73-.12c-1.14-.18-2.08-.3-2.97-.3-.71,0-1.01-.48-2.15-.96-1.14-.48-2.74-1.07-4.11-2.5-1.31-1.31-2.26-4.28-2.44-5.35-.3-1.13-.23-2.15-.3-3.03-.06-.41-.06-.71-.06-1.13,0-.66.06-1.24.23-1.78.3-.96.54-2.2,1.01-3.45.48-1.19,1.96-2.91,2.68-3.62.71-.66,1.67-1.37,2.56-2.26,1.01-.89,2.51-1.6,4.47-2.13.96-.23,2.08-.3,3.1-.3s1.85.06,2.51.06c1.14,0,2.26.3,3.04.71.66.41,1.78,1.13,2.26,1.67.48.48,1.14,1.6,1.6,2.5.3.66.54,1.67.54,2.32,0,.18,0,.36-.06.42-.18.48-.3,2.26-.96,2.73-.53.53-.48.23-1.14.89-.66.48-3.93.83-4.89.83h-4.77c-1.37,0-1.25.06-2.62.23-.54.06-1.14.06-1.78.06h-1.14c-.06.78-.06,1.42-.06,1.85v.3ZM933.39,286.81c0-1.72-.54-2.86-1.19-3.57-.66-.71-.96-.78-1.6-1.07-.18-.06-.54-.12-.96-.12-.48,0-.96.06-1.37.12-.78.18-1.37.36-2.56.78-1.25.41-1.91,1.6-3.04,3.45-1.01,1.6-1.25,2.61-1.43,3.87,2.08,0,3.75-.06,4.77-.06.78,0,1.49.18,2.15.18.23,0,.41,0,.54-.06.66-.3,1.96-.18,2.86-.42,1.85-.48,1.85-1.96,1.85-3.09h0Z"/>
<path class="cls-2" d="M967.23,288.42c0,.41-.23.83-.66.83s-.83-.18-.89-.71c-.06-.53-.54-.78-.78-1.42-.16-.44-.45-.97-.89-1.6-.41-.71-.59-.89-1.14-1.19-.66-.3-1.07-1.01-1.73-1.31-1.14-.48-2.26-.59-3.15-.59-.54,0-.96.06-1.37.12-1.14.18-2.33.89-3.34,1.67-1.19.96-1.73,2.08-2.15,3.69-.24.78-.12.6-.3,1.37-.18.78-.23,1.6-.3,2.5,0,.41-.06.83-.06,1.24,0,.48.06,1.07.18,1.78.23,1.24.53,1.37.78,2.26.23,1.01.48,1.55,1.25,2.91.89,1.37,2.08,1.6,2.51,2.08.41.42,1.19,1.01,2.08,1.24.78.23.84.53,2.44.78.41.06.66.12,1.07.12,1.01,0,1.91-.3,2.44-.36.48-.18,1.73-.23,2.2-.66.48-.41,1.73-.83,2.38-1.24.18-.18.41-.23.66-.23.3,0,.48.12.66.3.06.23.12.41.12.48,0,.41-.23.66-.48.96-.3.48-1.31.83-1.78,1.24-.41.41-.71.36-2.08,1.13-1.37.78-2.97,1.13-5.78,1.31-.48,0-.89.06-1.31.06-2.08,0-3.52-.36-4.17-.66-.78-.3-1.61-.12-2.62-.66-.96-.48-.41-.66-1.43-1.01-.96-.3-1.85-1.13-2.51-1.85-.66-.66-.84-1.01-1.91-2.73-.89-1.42-1.07-3.69-1.07-5.52.06-2.56.18-3.75.59-4.94.3-1.19,1.96-3.69,2.38-4.1.3-.3,2.38-2.26,2.92-2.61.78-.53,1.31-.41,2.74-1.42,1.37-.96,2.51-.78,3.88-1.19.59-.18,1.25-.23,1.91-.23s1.31.06,1.85.12c.23,0,.48.06.66.06,2.08.18,3.4.36,3.93.66.78.53,1.37.18,1.85.66.41.3.71.48.71,1.13,0,1.67-.41,2.38-.41,4.1,0,.48.12,1.07.12,1.49v-.06Z"/>
<path class="cls-2" d="M998.93,306.37c-.96.3-1.91.53-2.8.53-.41,0-.66.06-1.07-.12-.89-.3-1.01-.83-1.01-3.27,0-1.25-.3-2.26-.3-3.15,0-1.9-.06-2.97-.06-3.92,0-.66.06-1.19.12-1.6.06-.3.12-.66.12-.96,0-.53-.06-1.07-.06-1.55,0-.3,0-.48.06-.6.06-.3.18-.78.18-1.01,0-.3-.18-1.72-.23-2.86-.06-.96-.54-2.5-1.91-3.27-1.37-.78-.83-.78-2.38-1.07-.18-.06-.41-.06-.71-.06-1.25,0-2.2.66-3.57,1.6-1.6,1.19-1.91,2.2-2.56,2.91-.66.89-1.14,1.49-1.37,3.62-.23,1.85-.36,2.68-.36,4.1v1.25c.06,1.37.12,2.2.12,4.28,0,1.19.71,2.02.71,2.91,0,.41-.12.71-.36.96-.41.42-1.73.78-3.58,1.72-1.6.89-2.2,1.13-2.51,1.13-.06,0-.12,0-.18-.06-.18-.18-.23-.53-.23-1.19,0-.3,0-.53.06-.96v-3.27c0-1.6.36-2.79.36-4.51-.18-1.42-.23-2.68-.3-4.16,0-1.37,0-2.15.18-3.98.06-.48.06-1.01.06-1.49,0-.78-.06-1.55-.06-2.26,0-.53.06-1.13.12-1.67.06-.42.12-.78.12-1.19,0-1.19-.23-2.31-.23-3.45,0-.89.05-1.13.05-1.55,0-.66-.05-1.31-.05-2.02,0-.53.05-1.07.12-1.72.06-.42.06-.71.06-1.01,0-.89-.18-1.31-.18-2.2.05-1.19.12-1.78.12-2.26,0-.66-.06-1.13-.06-1.78,0-1.49-.66-2.5-.66-2.97,0-.71.48-.48,1.96-1.42,1.49-.89,1.91-.83,3.09-1.49.41-.18.66-.23.71-.23.66,0,.96.71,1.25,1.9.18.53.23,1.07.23,1.72,0,.89-.12,1.78-.18,2.43v5.06c0,1.24-.23,1.42-.23,1.85,0,.18.06.36.12.78.12.42.18.83.18,1.19,0,.78-.18,1.6-.18,2.97,0,2.08.06,6.48.06,6.78,0,.23,1.01-1.24,2.86-2.68,1.85-1.42,3.63-2.2,4.77-2.26,1.14-.06,1.91-.78,3.1-.78,1.37,0,3.22.41,4.47,1.31,1.31.83,3.34,3.45,3.34,7.31,0,1.37.06,2.43.06,3.45,0,.83-.06,1.67-.18,2.5-.18.48-.12.96-.12,1.37,0,1.37.3,2.43.3,3.33,0,.71-.12,1.37-.12,2.02,0,.48.06.89.23,1.19.48.96,1.01,1.72,1.01,2.5,0,.89-1.07.89-2.51,1.31v-.04Z"/>
<path class="cls-2" d="M1029.36,307.08c-.89,0-1.19-.3-1.49-2.13-.23-1.19-.36-2.73-.36-4.1,0-.83.06-1.6.18-2.26v-.3c.12-.66.18-1.13.18-1.42,0-.42-.05-.89-.05-1.78-.06-1.42-.12-2.38-.12-3.51v-.78c.06-.89.12-1.49.12-2.15,0-.41-.06-.83-.12-1.37-.23-1.42-.66-2.2-1.31-2.97-.66-.78-1.85-1.13-2.62-1.31-.96,0-2.92,1.19-3.58,1.55-1.37.66-3.04,1.78-3.81,2.91-.78,1.13-1.43,2.38-1.61,3.75-.23,1.42-.41,2.97-.41,4.64s.06,2.2.06,2.91c0,.42,0,.66-.06,1.07,0,1.85.23,3.69.41,4.58,0,1.13-.96,1.67-1.6,1.96-.41.18-.48.18-.71.18s-.54,0-1.07.18c-1.01.23-2.03.59-2.56.59-.12,0-.18,0-.24-.06-.23-.18-.36-.48-.36-1.01,0-.23,0-.6.06-1.01.18-1.01.3-2.15.3-3.75v-1.78c0-1.37-.05-2.38-.05-3.51,0-2.38.18-2.5.18-4.94s.23-1.6.23-2.86c0-.23.06-.48.06-.71,0-1.13-.18-2.02-.36-2.91-.18-1.01-.66-1.72-.66-2.61,0-.42.18-1.07,1.07-1.25,1.67-.18,3.4-.89,4.41-.89s1.37.53,1.37,1.07c0,1.25.12,2.02.12,2.91-.06.71-.06,1.37-.06,1.78v.71l.89-.89,1.85-1.6c1.37-1.07,1.67-1.07,2.8-1.85,1.19-.78,2.03-1.13,3.75-1.78.89-.3,1.85-.48,2.92-.48,1.14,0,2.15.23,3.1.66,1.67.78,2.86,1.49,3.57,3.33.72,1.85.72,2.91.72,4.64,0,1.85-.06,2.2-.06,3.57,0,1.01-.41,1.78-.41,2.68,0,.23,0,.41.06.53.18.48.12.96.12,1.37v4.94c0,1.24.18,1.85.59,2.32.23.41.36.78.36.96,0,.53-.48.83-1.01,1.07-1.37.66-3.88,1.07-4.77,1.13h0Z"/>
<path class="cls-2" d="M1051.76,280.45c1.01-.41,2.44-.3,3.45-.78.36-.18.84-.23,1.37-.23.89,0,1.14.18,1.78.36,1.01.36,5.48,1.13,6.37,2.32.83,1.31,1.49,1.49,2.26,2.73.89,1.37,1.25,2.56,1.67,5.11.06.78.12,1.37.12,2.02,0,1.6-.23,2.73-.66,4.1-.53,1.85-.78,3.09-1.25,3.8-1.91,3.33-3.63,3.92-5.18,4.81-1.61,1.13-2.74,1.67-3.93,1.9-1.14.3-1.6.42-2.97.42s-5.12-.23-7.15-1.31c-1.85-.96-1.96-1.24-3.04-2.32-1.19-1.13-2.21-2.5-2.68-3.62-.24-1.13-.78-3.33-.78-5.24.06-1.37,0-2.43.41-4.28.3-1.85,1.32-2.97,2.21-4.4.96-1.6,2.92-3.09,3.88-3.87,1.01-.89,2.98-1.07,4.11-1.55h0ZM1047.65,287.29c-.41,1.19-.54,2.61-.54,4.7s.3,4.28.71,5.41c.41,1.13,1.43,2.79,2.08,3.51.41.41,2.26,2.43,2.98,2.56.96.41,1.96.96,2.74.96,1.6,0,2.33-.36,3.27-.78.78-.48,1.07-.18,1.91-1.19.89-1.01,1.49-1.72,1.78-3.45.23-1.37.84-2.32.84-3.51,0-.48,0-1.01-.06-1.67-.18-2.32-.96-5.06-1.55-5.82-.66-.71-.96-2.02-1.85-2.97-.89-1.13-1.72-1.67-2.68-2.31-.89-.66-2.56-.48-3.45-.48-1.14,0-1.67.6-2.86,1.31-2.2,1.37-3.04,2.56-3.34,3.75l.02-.02Z"/>
<path class="cls-2" d="M1080.12,306.2c-1.01.36-2.62,1.78-3.52,1.78s-.84-1.13-.84-1.67v-1.55c-.06-.42-.06-.78-.06-1.19,0-1.24.12-2.68.12-3.8-.06-1.42-.48-2.86-.48-4.22.06-1.49.12-2.02.12-2.91,0-2.86.18-5.77.18-7.37,0-.53.12-.59.12-1.24,0-.41,0-.89-.18-2.26-.05-.53-.12-1.01-.12-1.49,0-1.19.12-2.13.18-2.43.18-.71.24-1.19.24-1.85,0-.3.05-.66-.12-1.07-.18-.41-.23-.89-.23-1.31,0-.53.12-1.07.12-1.78,0-1.13.06-3.51-.12-4.28-.18-.77-.78-2.13-.78-2.79,0-.96,1.01-1.42,1.67-1.85,1.01-.53,2.15-.42,3.15-1.07.54-.3,1.01-.42,1.31-.42.36,0,.59.18.78.6.12.48.18.96.18,1.37,0,.66-.06,1.19-.06,3.57,0,.48.06,1.01-.12,1.9-.3,1.9-.3,1.72-.3,3.15,0,1.13.36,1.9.36,3.8,0,.41,0,.89-.06,1.42-.18,1.42-.12,2.5-.12,3.62s0,2.08-.06,3.33c-.18,1.85-.18,3.21-.18,5.77,0,1.19.18,1.55.18,2.2,0,.71-.12,1.42-.12,2.08,0,1.13,0,2.43.18,3.57.06,1.19.12,2.43.12,4.16,0,.78.89,1.78.89,2.68,0,1.01-1.19,1.07-2.44,1.55Z"/>
<path class="cls-2" d="M1098.59,280.45c1.01-.41,2.44-.3,3.45-.78.36-.18.83-.23,1.37-.23.89,0,1.14.18,1.78.36,1.01.36,5.48,1.13,6.37,2.32.83,1.31,1.49,1.49,2.26,2.73.89,1.37,1.25,2.56,1.67,5.11.06.78.12,1.37.12,2.02,0,1.6-.23,2.73-.66,4.1-.53,1.85-.78,3.09-1.25,3.8-1.91,3.33-3.63,3.92-5.18,4.81-1.61,1.13-2.74,1.67-3.93,1.9-1.14.3-1.61.42-2.98.42s-5.12-.23-7.15-1.31c-1.85-.96-1.96-1.24-3.04-2.32-1.19-1.13-2.21-2.5-2.68-3.62-.24-1.13-.78-3.33-.78-5.24.06-1.37,0-2.43.41-4.28.3-1.85,1.31-2.97,2.2-4.4.96-1.6,2.92-3.09,3.88-3.87,1.01-.89,2.98-1.07,4.11-1.55h0ZM1094.48,287.29c-.41,1.19-.54,2.61-.54,4.7s.3,4.28.71,5.41c.41,1.13,1.43,2.79,2.08,3.51.41.41,2.26,2.43,2.98,2.56.96.41,1.96.96,2.74.96,1.6,0,2.33-.36,3.27-.78.78-.48,1.07-.18,1.91-1.19.89-1.01,1.49-1.72,1.78-3.45.23-1.37.84-2.32.84-3.51,0-.48,0-1.01-.06-1.67-.18-2.32-.96-5.06-1.55-5.82-.66-.71-.96-2.02-1.85-2.97-.89-1.13-1.73-1.67-2.68-2.31-.89-.66-2.56-.48-3.45-.48-1.14,0-1.67.6-2.86,1.31-2.2,1.37-3.04,2.56-3.34,3.75l.02-.02Z"/>
<path class="cls-2" d="M1126.58,308.93c-.06-.06-.66-.36-.72-.36-1.37-.3-2.68-1.13-2.68-2.26s.06-2.02,1.73-2.97c.96-.66,2.97-1.49,3.1-1.6-.06,0-1.61-.6-3.27-1.97-1.61-1.37-2.21-2.5-2.92-3.62-.66-1.13-.54-2.56-.71-3.33-.06-.06-.06-.3-.06-.6,0-1.42.59-4.4,1.55-6,1.14-1.85,2.33-2.97,3.52-3.69.96-.66,2.15-1.31,3.27-1.6,1.61-.23,3.27-.66,5.18-.89,2.33,0,4.59.3,5.96.96,1.43.66,1.9.53,3.09.83.41.12.84.18,1.37.18.41,0,.84-.06,1.49-.06.96,0,1.96-.71,2.03-.78.06-.06.18-.12.3-.12.41,0,.66.41.66.89,0,.18-.06.36-.12.41-.41.78-1.07,1.42-2.21,1.85-.78.3-.96.66-2.33.83.66.48.23.6.89,1.67.48.89.89,3.27.89,4.99,0,1.6-.48,3.15-1.14,4.58-.66,1.42-2.33,2.68-2.86,3.21-.41.53-1.96,1.31-2.86,1.72-.78.48-3.52,1.31-5.25,1.31-.3,0-.54,0-.71-.06-.54-.12-2.68-.12-3.45-.12-.89,0-1.78.78-1.85,1.31,0,.3.12.48.89.66.89,0,1.73.48,2.86.48,2.33,0,2.97.06,3.45.23.54.3,1.19.48,1.91.48.23,0,.41-.06,1.07-.06.96,0,2.33.3,3.1.6,2.44.89,3.58,1.49,4.52,3.92.18.42.23,1.07.23,1.72,0,1.24-.23,3.27-1.14,4.28-1.37,1.67-1.91,2.56-2.92,2.97-.96.41-.89.71-1.91,1.13-.71.3-3.52,1.19-6.44,1.37-.53.05-1.07.05-1.55.05-2.44,0-5.72-.53-7.21-.95-2.92-1.01-4.59-3.33-4.59-4.76s.3-1.85.59-2.61c.54-1.24,1.96-2.08,2.62-2.73.48-.41,1.6-1.01,2.56-1.49h.05ZM1141.6,311.54c-1.78-1.31-2.26-.66-4.34-1.42-2.38-.77-4.47-.41-5.89-.71-.66-.18-1.67-.3-2.56-.3-.41.53-1.19,1.13-1.85,1.78-.54.66-1.01,1.49-1.01,2.5,0,.18.06.36.06.53.18,1.19.59,1.37,1.55,2.15.71.65,1.78,1.07,5.12,1.54.48.06.89.3,1.31.3,1.19,0,2.51-.06,3.52-.06,3.33,0,5.48-2.02,5.48-3.87,0-.89-.23-1.55-1.37-2.43h-.01ZM1128.43,285.69c-.44.99-.76,2-.96,3.03,0,.48-.23,1.01-.23,1.72,0,1.24.3,2.5.48,3.21.24.89.71,2.56,1.01,3.21.3.66,1.19,1.72,1.37,1.96.18.3,1.78,1.13,3.63,1.55.41.06.66.12.96.12.66,0,1.13-.18,2.08-.59,1.43-.66,2.51-1.37,3.22-3.03.66-1.6.54-2.02.71-3.62.06-.89.3-1.67.3-2.56,0-.48-.05-.96-.23-1.42-.41-1.24-.59-2.68-1.37-3.8-.89-1.37-1.73-2.02-2.74-2.73-.66-.42-1.19-.36-2.08-.36-.41,0-.78-.18-1.49-.18-.41,0-.96.12-1.55.3-1.85.71-2.44,1.85-3.1,3.21v-.02Z"/>
<path class="cls-2" d="M1175.2,280.09c.96-.36,1.78-.53,2.56-.53.59,0,.89.41.89,1.19,0,.36-.06.71-.18,1.13-.41,1.6-1.43,3.98-2.56,5.88-1.25,1.9-.89,1.85-1.55,2.79-.71,1.01-.23.66-.71,1.72-.41,1.01-1.25,2.43-2.15,3.87-.96,1.42-.96,2.26-2.09,4.22-1.25,2.08-1.25,2.5-2.26,4.64-.89,2.13-.71,1.72-1.37,3.87-.66,2.08-1.43,3.45-2.08,4.81-.66,1.42-.96,1.78-1.25,3.15-.3,1.42-.36.71-.71,2.2-.23,1.49-.71,1.6-2.68,2.15-1.61.41-2.26.65-2.92.65-.18,0-.18-.06-.36-.06-.41-.06-.66-.23-.66-.53s.18-.71.48-1.25c.41-.65,2.09-1.67,3.1-3.98.41-.78,1.01-1.78,1.67-2.68.66-.89.71-1.85,1.43-3.09.66-1.37.41-2.2.66-3.62.12-.59.18-1.07.18-1.37,0-.48-.12-.71-.3-1.13-.41-.71-.96-2.68-1.61-3.8-.66-.96-1.01-2.43-1.43-3.33-.48-.71-.83-1.42-1.37-2.32-.66-.89-.83-1.49-1.37-2.73-.48-1.13-1.14-2.68-1.55-3.39-.54-.89-.12-.96-1.25-2.26-1.01-1.19-2.51-2.13-2.51-2.91,0-1.01,1.78-1.42,4.11-2.56,1.43-.78,1.43-.89,2.26-.89.66,0,1.49,1.07,2.15,2.2.66,1.13,1.31,2.91,1.78,3.87.48,1.07.06,1.49.66,2.08.54.89.41,1.42,1.31,2.68.9,1.26,1.49,3.09,2.15,4.76l1.55,3.57c.06-.23.48-2.2,1.37-3.45.89-1.37,1.55-2.97,2.03-4.1,0-.6,1.25-3.09,1.55-3.8.66-1.85.66-2.5.83-3.27.18-.48.12-.83.12-1.07,0-.3,0-.48-.06-.6-.18-.48-.59-.53-.59-1.42,0-.78,1.6-.96,2.74-1.24l-.03-.03Z"/>
</g>
<g>
<path class="cls-1" d="M876.4,101.8c1.46.56,1.53,1.78,1.42,3.05-.05.61-.17,1.25-.44,1.78-5.16,10.02-12.38,17.96-22.99,22.42-.54.24-1.21.2-1.82.29-9.53-.02-19.07-.03-28.6-.03-.78,0-1.68-.22-2.22.46-.19.24-.27.54-.27.85,0,7.05-.05,14.12.04,21.17.08,6.17.25,12.35.54,18.51.32,7.05,3.65,11.12,10.41,13.12,4.01.71,6.23.71,10.41,0,9.1-1.73,17.18-5.9,25.13-10.35,16.27-9.13,32.52-18.34,48.84-27.35,2.44-1.36,3.43-2.73,3.41-5.64-.12-34.59-.09-69.16-.09-103.75,0-1.61.12-3.22,0-4.81-.46-5.36,1.26-9.98,4.65-14.03,5.84-6.95,12.43-12.96,20.85-16.71,1.15-.42,1.8-.42,2.97.12,2.5,1.44,2.63,3.97,2.7,6.39.1,3.58-.07,7.17-.12,10.74-.59,50.16-.42,100.32-.46,150.49,0,2.86.29,5.66,1.32,8.35,1.19,3.08,3.46,4.69,6.71,5.08,3.29.41,6.35-.19,9.29-1.81,6.76-3.71,12.96-8.17,18.87-13.08,10.77-8.97,20.41-19.1,30.07-29.18,6.54-6.81,13.53-13.03,21.36-18.32,5.35-3.61,10.99-6.63,17.2-8.47,6.06-1.53,9.88-1.2,14.08-.36,4.55.68,8.39,2.85,11.97,5.58,6.8,5.19,11.85,11.86,16.17,19.15,2.96,5,5.72,10.1,8.23,15.34,2.62,5.47,5.66,10.69,8.78,15.88,2.13,3.51,4.54,6.78,7.63,9.51,5.86,5.19,11.94,5.86,18.8,2.15,3.4-1.83,6.4-4.22,9.19-6.88,3.92-3.76,7.76-7.63,11.62-11.47,1.94-1.92,3.97-3.71,6.38-5.05,1.92-1.07,3.91-1.46,6.06-.76,3.46,1.1,4.65,3.14,3.95,6.76-.65,3.34-2.05,6.36-3.85,9.17-10.85,16.93-25.56,29.33-44.19,37.01-3.53,1.46-7.2,2.47-10.99,3.05-3.99.68-6.84,1-11.72-.05-2.33-.58-4.3-1.83-6.2-3.22-6.86-5.03-12.33-11.34-17.01-18.39-3.48-5.25-6.49-10.78-9.65-16.22-3.35-5.76-6.84-11.44-11.21-16.51-3.41-3.97-7.18-7.49-12.53-8.71-3.13-.68-5.35-.36-8.24.05-4.96,1.05-9.22,3.44-13.07,6.66-11.95,9.98-23.84,20.05-35.86,29.96-9.07,7.47-18.78,14.1-28.46,20.73-7.5,5.42-15.79,7.34-15.79,7.34-3.82.95-9.22.63-11.65-.1-8.98-2.1-14.08-8.03-16.39-16.64-1.05-3.93-1.49-7.95-1.53-12.03-.03-5.29-.05-10.56-.07-15.85.05-.78-.57-1.1-1.25-.71-19.55,10.29-38.6,21.47-57.96,32.08-10.83,5.95-22.21,10.51-34.34,13.15-1.22.27-2.72.51-4.48.71-3.72.64-7.22.64-11.14,0-11.67-1.85-17.97-10.35-19.33-22.15-.27-2.32-.32-4.68-.32-7.03-.01-51.03,0-102.04-.07-153.06,0-4.56,1.24-8.49,3.99-12.03,4.93-6.32,10.97-11.39,17.8-15.51,1.36-.83,2.84-1.51,4.47-1.71,2.84-.36,4.14.59,4.52,3.52.22,1.71.17,3.46.17,5.19-.07,29.15-.15,58.31-.2,87.46,0,.86.03,1.75.07,2.61.05,1.29,1.17,2.29,2.46,2.2.24,0,.46-.03.7-.03,17.08,0,34.15-.03,51.23-.05l.04.02Z"/>
<path class="cls-1" d="M723.16,213.89c-1.68-1.27-1.81-3.19-1.92-5.02.07-2.83-.03-5.46.07-8.22,0-5.71.29-10.78.29-16.22.03-18.17.07-36.33-.03-54.48-.01-3.9,1.03-7.3,3.25-10.39,4.97-6.95,11.43-12.29,18.75-16.59,1.87-1.1,3.84-1.69,6.15-1.24,1.7.34,2.33,1.24,2.48,2.69.15,1.34.25,2.71.22,4.07-.44,25.45-.13,50.91-.12,76.36,0,4.71-1.14,8.81-4.12,12.34-5.79,6.83-12.23,12.95-20.58,16.64-1.51.8-2.79,1.44-4.43.07v-.02Z"/>
<path class="cls-1" d="M685.32,124.85c-.03-.51-.03-1.03-.15-1.53-2.16-9.07-8.22-14.4-16.69-17.4-.12-.05-1.41-.42-3.11-.83h-.05c-3.35-.53-6.2-.53-9.68-.05h-.14c-2.63.34-4.87,1.58-6.96,3.13-5.72,4.25-10.29,9.58-14.08,15.57-.92,1.46-1.67,3.02-2.02,4.75-.61,3.05.09,4.83,2.82,6.07,1.75.8,3.52,1.54,5.52,1.85,3.5.53,7.05.98,10.36,2.39,4.93,2.08,6.28,4.83,4.84,10.02-.92,3.25-2.61,6.12-4.57,8.83-6.3,8.81-13.91,16.34-22.59,22.81-3.41,2.54-7.25,4.19-11.36,5.27-1.61.42-3.28.71-4.91,1.05-.03,0-4.06.66-8.3,0-3.77-.83-6.98-2.78-9.95-5.15-4.38-3.51-7.98-7.74-11.21-12.29-7.17-10.07-15.01-19.61-22.64-29.33-5.6-7.15-12.3-13.18-19.61-18.52-3.06-2.22-6.34-4.08-9.99-5.19-1.88-.63-3.13-.83-3.13-.83-2.26-.42-3.21-.42-5.43-.42-.07,0-2.54,0-4.31.49-5.23,1.15-9.3,4.27-13.06,7.85-4.04,3.85-7.4,8.27-10.62,12.8-4.14,5.83-8.17,11.73-12.33,17.54-5.24,7.34-10.97,14.27-18.05,19.98-5.69,4.59-11.65,8.73-18.78,10.81-4.16,1.41-9.39.7-12.57.37-4.45-.63-8.4-2.08-12.34-3.68-6.57-2.66-12.47-6.51-18.27-10.51-5.08-3.51-10.04-7.22-15.42-10.25-4.91-2.78-9.91-5.39-15.57-6.39-2.67-.59-4.57-.8-4.57-.8-3.5-.44-2.05-.44-6.05-.44-.05,0-2.87,0-6.03.44-2.5.41-5.01.66-7.45,1.24-7.44,1.71-14.01,5.32-20.33,9.44-4.65,3.03-9.17,6.25-13.92,9.13-9.63,5.81-19.78,10.35-30.99,12.22-.03,0-.07.02-.1.02-3.89.53-6.44.53-10.29-.08-.02,0-.05,0-.07-.02-9.09-2.25-12.57-9.24-12.46-16.59.08-6.15,2.14-11.73,6.62-16.05,10.12-9.78,22.16-15.78,36.14-17.83,9.59-1.29,18.82-.8,18.87-.8,10.26.66,20.22,2.46,29.24,7.78.63.37,1.95,1.12,3.48,1.58.8.24,2.16.36,2.97.24.81-.12,1.46-.24,2.12-.56,9.29-4.19,15.98-11.12,21.75-19.34,1-1.44,1.44-3.12,1.51-4.9.13-3.58.47-7.17.44-10.74-.26-32.13.19-64.26.26-96.41,0-1.36.03-2.73-.17-4.07-.41-2.54-1.87-3.58-4.47-3.29-1.77.2-3.31,1-4.79,1.91-5.72,3.52-10.95,7.66-15.44,12.68-4.13,4.61-6.16,9.86-6.1,16.2.24,20.52.19,41.03.24,61.55,0,2.56.08,5.12-.65,7.61-.02.08-.05.17-.1.24-.53.78-1.36.76-2.19.76-9.08-.3-15.76-1.27-24.49-.17h-.1c-4.87.53-9.63,1.64-14.33,2.92-27.29,7.37-49.5,22.4-66.81,44.62-5.72,7.34-10.61,15.35-12.97,24.34-1.36,5.17-6.49,8.3-14.13,8.63-4.02,0-7.64.02-11.65-.76-9.54-1.85-17.86-6.39-25.83-11.66-5.88-3.9-11.72-7.85-17.59-11.71-6.13-4.03-12.82-6.63-20.17-7.32h-.19.14c-5.72-.75-12.5-.93-17.24,0-3.41.68-6.76,1.49-10.02,2.88-5.82,2.47-11.14,5.78-16.37,9.25-6.35,4.24-12.68,8.52-19.55,11.93-6.42,3.19-12.97,5.97-20.12,7.1-3.96.61-8.1.93-11.95.03-5.94-1.24-10.8-4-12.46-10.22-2.21-8.22-.56-15.74,5.52-21.9,5.71-5.78,12.4-10.2,19.83-13.47,5.65-2.47,11.5-4.24,17.66-4.83.05,0,.1-.03.15-.03,13.86-2,21.82-1.36,36.53,2.64,3.84,1.59,7.74,3,11.39,5.02,3.23,1.78,6.4,1.59,9.46-.34,6.64-4.17,12.94-8.74,17.36-15.39,1.15-1.88,1.48-2.19,2.84-5.63.66-1.95-.2-3.3-1.78-4.49-2.38-1.78-4.84-3.39-7.46-4.8-6.98-3.76-14.49-5.78-22.31-6.74h-.1c-7.22-.53-14.23-.85-21.36.02-9.09,1.03-14.35,2.24-14.45,2.25-3.04.78-6.13,1.39-9.1,2.37-26.19,8.66-47.72,23.67-63.32,46.64-2.92,4.3-5.47,8.81-7.86,13.42-3.12,6-5.08,12.35-5.52,19.08-.8,12.2,4.16,20.4,15.95,24.54,1.73.61,3.55.95,5.33,1.42.03,0,.07,0,.1.02,5.91.8,10.36,1.1,15.5,0,12.01-1.95,23.15-6.15,33.59-12.42,6.25-3.75,12.24-7.85,18.44-11.68,6.22-3.83,12.58-7.35,20.11-7.9,2.84-.22,5.09-.24,6.79.03,6.08.93,11.12,4.61,16.2,7.88,6.86,4.42,13.59,9.05,20.39,13.52,4.55,2.98,9.14,6.44,14.2,8.49,3.97,1.59,9.36,3.22,13.69,3.81,2.31.32,2.67.64,8.27.63,5.25-.03,7.3-.27,13.69-1.59,8.27-1.69,15.71-5.66,22.26-10.64,1.29-.98,2.39-2.22,4.09-2.88.39-.15.85,0,1.05.36,4.28,7.66,11.48,10.96,19.87,12.39,2.65.46,5.47.46,5.52.46,4.42,0,3.82,0,7.88-.44h.08c3.12-.29,6.1-1.27,9.12-2.07,12.19-3.19,23.08-9.15,33.62-15.85,4.06-2.58,8.05-5.27,12.16-7.74,4.86-2.93,10-5.25,15.64-6.32,1.04-.29,6.44-.93,9.73-.15.03,0,.05,0,.08.02,4.62,1.1,8.76,3.27,12.7,5.83,6.32,4.1,12.53,8.35,18.8,12.54,5.76,3.85,11.53,7.68,17.97,10.3,4.87,1.98,8.88,3.52,14.93,4.47,2.6.34,5.4.63,9.22.63,5.09,0,6.67,0,10.49-.63,5.35-.75,9.66-2.46,14.4-5.03,10.87-5.93,21.33-12.44,30.65-20.69,8.44-7.46,16.47-15.3,24.47-23.22,2.89-2.86,5.99-5.54,9.03-8.25,5.26-4.71,10.17-4.86,16.22-.64,3.99,2.8,7.36,6.22,10.58,9.8,7.38,8.15,14.3,16.71,21.38,25.13,4.94,5.88,10.12,11.49,15.81,16.66,3.04,2.76,6.4,4.9,10.44,5.9.07.02,1.65.37,4.5.69,2.55.32,4.14,0,8.2-.69,2.82-.42,5.5-1.29,8.09-2.41,28.65-12.42,52.49-30.98,71.27-55.91,3.99-5.29,7.4-10.95,9.8-17.17.04-.1,1.22-3.29,1.28-3.46.9-2.71,1.59-5.46,1.7-8.32.19-1.27,0-3.32,0-3.51l-.05.08Z"/>
<path class="cls-2" d="M738.09,47.84c-7.4,0-13.79,6.15-13.79,13.54s6.2,13.57,13.61,13.57c3.21,0,5.91-.95,8.22-2.85v13.57c1.78-.42,3.79-.95,5.37-1.63v-22.84c0-7.39-5.99-13.37-13.4-13.37Z"/>
<path class="cls-2" d="M736.96,0c-24.04,0-43.64,19.73-43.64,43.72s18.97,44.18,44.27,43.23c-12.11-1.93-24.69-12.57-24.69-25.2,0-14,11.38-25.37,25.42-25.37s25.21,11.3,25.21,25.32v16.1c10.21-7.95,16.97-20.44,16.97-34.37,0-24-19.5-43.43-43.52-43.43h-.02Z"/>
</g>
</g>
</g>
</svg>
\ No newline at end of file \ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_2" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1178.66 321.84">
<defs>
<style>
.cls-1 {
fill: #f8971f;
}
.cls-2 {
fill: #393641;
}
</style>
</defs>
<g id="Layer_1-2" data-name="Layer 1">
<g>
<g>
<path class="cls-2" d="M.01,267.67c0-.89.96-1.01,1.85-1.42.96-.41,1.14-.3,2.15-.96.96-.66,1.97-.66,2.74-1.07.18-.06.3-.12.36-.12.53,0,1.01.6,1.31,1.85.41,1.37,1.31,3.32,1.73,5.17.23,1.85.53,2.15.96,3.27.23,1.13.78,2.86.96,3.33.48,1.55,1.49,6.18,1.78,6.6.53,1.19.59,1.96.78,3.09.18,1.24.18,2.38.59,3.03.48.66.89,1.37,1.31,3.21.18.78.84,2.68,1.25,2.68.48,0,1.55-2.26,2.21-4.22.66-1.96.89-2.26,1.25-3.09.3-.89.89-2.2,1.07-3.21.18-1.01,1.19-3.15,1.6-4.16.41-1.01.96-2.79,1.43-4.05.41-1.24.96-3.15,1.25-4.4.3-1.24.12-2.79.3-3.69.18-1.13-.12-1.49.59-2.38.59-.89,2.62-1.42,3.58-2.2.3-.3.66-.48,1.07-.48.66,0,1.19.42,1.43,1.37.41,1.49.3,2.68.78,4.05.48,1.37.53,4.34,1.07,5.06.66.71.78,1.55,1.19,2.68.18,1.07,1.25,5.06,1.73,6.66.41,1.6,1.31,3.03,1.31,3.69,0,.53,0,.6.3,1.31,0,.18.3.48.3.66.41.78.12,1.78,1.01,2.73.84.96,1.78,4.58,1.9,4.58.3,0,1.31-3.45,2.08-5.11.71-1.72.48-3.03,1.25-4.4.66-1.37,1.07-3.51,1.55-4.4.41-.83,1.14-3.75,1.43-5.11.06-.41.12-.71.12-1.13v-.83c0-.53.12-1.07.3-1.6.41-.89.48-1.72.48-2.61,0-2.15.06-2.5.06-2.73,0-.53-.12-.77-.59-1.42-.3-.41-.48-.71-.48-.89,0-.3.48-.66,1.37-1.07,1.49-.66,2.08-.71,2.97-1.19.41-.18.96-.48,1.43-.48.66,0,1.14.36,1.14,1.72v.41c-.18,2.86-1.31,6.48-1.85,7.14-.53.71-.78,2.91-1.25,4.51-.66,1.6-1.19,2.91-1.6,4.4-.41,1.49-.48,2.73-1.01,3.15-.66.42-1.07,2.26-1.73,4.58-.53,2.08-1.49,3.75-1.9,4.64-.41.89-.66,3.15-1.31,4.34-.78,1.6-.53,3.03-.71,4.51,0,1.49-1.96,1.96-3.22,2.91-.66.53-1.19.77-1.73.77s-.84-.36-.89-1.01c-.18-1.37-.89-2.2-1.14-3.57-.3-1.37-1.07-3.27-1.49-4.88-.66-1.6-1.67-3.69-1.85-4.94-.3-1.25-1.31-3.98-2.08-6.07-.71-2.08-1.19-4.05-1.37-4.81,0-.78-.48-2.08-.89-2.73-.23-.3-.48-1.19-.66-1.96-.12-.42-.23-.96-.3-1.49-.3.48-.53.96-.78,1.49-.41.89-.89,2.13-1.31,3.51-.78,2.79-1.49,5.06-2.03,5.52-.66.48-.59.89-.78,1.67-.19.78-.71,1.97-1.6,4.52-.48,1.6-1.96,5.17-2.15,6.13-.18.89-.3,2.15-.59,3.33-.41,1.19-.84,1.72-1.78,2.38-1.01.66-1.73,2.02-2.92,2.68-.18.12-.36.18-.53.18-.71,0-1.07-1.07-1.37-2.73-.3-2.02-1.6-4.76-1.78-5.41-.3-.6-.78-3.57-.96-4.34-.23-.89-.84-1.67-1.14-3.03-.41-1.37-.53-2.91-1.43-4.76-.78-1.85-2.15-7.37-2.44-8.61-.36-1.19-1.31-3.45-1.49-4.4-.18-.96-.89-2.5-1.37-3.15-.48-.66-.78-1.01-1.55-1.55-.66-.53-1.19-.23-1.25-1.37v-.26Z"/>
<path class="cls-2" d="M84.72,306.37c-.96.3-1.9.53-2.8.53-.41,0-.66.06-1.07-.12-.89-.3-1.01-.83-1.01-3.27,0-1.25-.3-2.26-.3-3.15,0-1.9-.06-2.97-.06-3.92,0-.66.06-1.19.12-1.6.06-.3.12-.66.12-.96,0-.53-.06-1.07-.06-1.55,0-.3,0-.48.06-.6.06-.3.18-.78.18-1.01,0-.3-.18-1.72-.23-2.86-.06-.96-.53-2.5-1.9-3.27-1.37-.78-.84-.78-2.38-1.07-.18-.06-.41-.06-.71-.06-1.25,0-2.21.66-3.58,1.6-1.6,1.19-1.9,2.2-2.56,2.91-.66.89-1.14,1.49-1.37,3.62-.23,1.85-.36,2.68-.36,4.1v1.25c.06,1.37.12,2.2.12,4.28,0,1.19.71,2.02.71,2.91,0,.41-.12.71-.36.96-.41.42-1.73.78-3.58,1.72-1.6.89-2.21,1.13-2.51,1.13-.06,0-.12,0-.18-.06-.18-.18-.23-.53-.23-1.19,0-.3,0-.53.06-.96v-3.27c0-1.6.36-2.79.36-4.51-.18-1.42-.23-2.68-.3-4.16,0-1.37,0-2.15.18-3.98.06-.48.06-1.01.06-1.49,0-.78-.06-1.55-.06-2.26,0-.53.06-1.13.12-1.67.06-.42.12-.78.12-1.19,0-1.19-.23-2.31-.23-3.45,0-.89.06-1.13.06-1.55,0-.66-.06-1.31-.06-2.02,0-.53.06-1.07.12-1.72.06-.42.06-.71.06-1.01,0-.89-.18-1.31-.18-2.2.06-1.19.12-1.78.12-2.26,0-.66-.06-1.13-.06-1.78,0-1.49-.66-2.5-.66-2.97,0-.71.48-.48,1.96-1.42,1.49-.89,1.9-.83,3.1-1.49.41-.18.66-.23.71-.23.66,0,.96.71,1.25,1.9.18.53.23,1.07.23,1.72,0,.89-.12,1.78-.18,2.43v5.06c0,1.24-.23,1.42-.23,1.85,0,.18.06.36.12.78.12.42.18.83.18,1.19,0,.78-.18,1.6-.18,2.97,0,2.08.06,6.48.06,6.78,0,.23,1.01-1.24,2.86-2.68,1.85-1.42,3.63-2.2,4.77-2.26,1.14-.06,1.9-.78,3.1-.78,1.37,0,3.22.41,4.47,1.31,1.31.83,3.34,3.45,3.34,7.31,0,1.37.06,2.43.06,3.45,0,.83-.06,1.67-.18,2.5-.18.48-.12.96-.12,1.37,0,1.37.3,2.43.3,3.33,0,.71-.12,1.37-.12,2.02,0,.48.06.89.23,1.19.48.96,1.01,1.72,1.01,2.5,0,.89-1.07.89-2.51,1.31v-.04Z"/>
<path class="cls-2" d="M99.26,294.66c.18.48.36,2.38,1.01,3.57.66,1.13,2.08,2.79,2.86,3.27.78.53,2.21,1.24,3.45,1.55,1.14.23,2.92.71,3.93.71,1.25-.06,2.97-.6,3.63-.89.66-.23,1.67-.78,2.08-1.19.41-.42.96-1.24,1.6-1.24.41,0,.84.41.84,1.07,0,.3-.12.53-.36.83-.48.48-.96.96-1.9,1.6-.78.59-1.01.78-2.56,1.55-1.49.78-3.7,1.24-5.36,1.42-.89.06-1.43.12-2.08.12s-1.19-.06-1.73-.12c-1.14-.18-2.08-.3-2.97-.3-.71,0-1.01-.48-2.15-.96-1.14-.48-2.74-1.07-4.11-2.5-1.31-1.31-2.26-4.28-2.44-5.35-.3-1.13-.23-2.15-.3-3.03-.06-.41-.06-.71-.06-1.13,0-.66.06-1.24.23-1.78.3-.96.53-2.2,1.01-3.45.48-1.19,1.96-2.91,2.68-3.62.71-.66,1.67-1.37,2.56-2.26,1.01-.89,2.51-1.6,4.47-2.13.96-.23,2.08-.3,3.1-.3s1.85.06,2.51.06c1.14,0,2.26.3,3.04.71.66.41,1.78,1.13,2.26,1.67.48.48,1.14,1.6,1.6,2.5.3.66.53,1.67.53,2.32,0,.18,0,.36-.06.42-.18.48-.3,2.26-.96,2.73-.53.53-.48.23-1.14.89-.66.48-3.93.83-4.89.83h-4.77c-1.37,0-1.25.06-2.62.23-.53.06-1.14.06-1.78.06h-1.14c-.06.78-.06,1.42-.06,1.85v.3ZM111.65,286.81c0-1.72-.53-2.86-1.19-3.57-.66-.71-.96-.78-1.6-1.07-.18-.06-.53-.12-.96-.12-.48,0-.96.06-1.37.12-.78.18-1.37.36-2.56.78-1.25.41-1.9,1.6-3.04,3.45-1.01,1.6-1.25,2.61-1.43,3.87,2.08,0,3.75-.06,4.77-.06.78,0,1.49.18,2.15.18.23,0,.41,0,.53-.06.66-.3,1.96-.18,2.86-.42,1.85-.48,1.85-1.96,1.85-3.09h-.01Z"/>
<path class="cls-2" d="M125.71,281.34c1.25-.41,2.68-1.01,3.58-1.25.53-.18.89-.36,1.31-.36.3,0,.53.18.66.6.18.3.12.83.12,1.49s-.06,1.19.12,1.49c.06.12.06.36.06.66,0,.71-.12,1.67-.12,2.31,0,.06.96-1.13,2.15-2.38,1.25-1.37,2.51-1.96,3.4-2.61,1.01-.66,1.9-.83,3.15-1.01.18,0,.41-.06.59-.06,1.19,0,2.51.48,3.15,1.13.48.48.71.96.71,1.37,0,.53-.23,1.07-.71,1.6-.78,1.01-.89,2.08-1.07,2.79-.18.53-.41.83-.78.83s-.66-.3-.84-.83c-.23-.66-.71-1.31-1.14-1.85-.41-.48-1.31-.89-2.21-.89-.96.06-1.37.23-2.26,1.01-.89.78-1.6,1.42-2.15,2.2-.66.78-1.9,1.9-2.21,3.51-.12.66-.18,1.37-.18,2.02s.06,1.24.12,2.13v.71c0,1.49-.3,2.2-.3,3.33v.23c.18,1.6.48,3.51.48,4.76v.42c-.18,1.24-1.25,1.19-2.26,1.85-.96.66-2.38.77-3.1,1.24-.06.06-.18.12-.36.12-.41,0-.53-.66-.71-1.42v-.48c0-.96.18-2.32.18-3.75v-.83c-.06-1.97-.23-3.98-.23-5.41,0-.66,0-1.31.06-2.2.18-1.19.12-2.15.12-3.27,0-.96,0-1.85.06-3.33.06-.42.06-.66.06-.89,0-.66-.18-1.13-.36-1.6-.41-1.13-.71-1.24-.71-1.9,0-.48.48-1.07,1.6-1.49v-.02Z"/>
<path class="cls-2" d="M153.71,294.66c.18.48.36,2.38,1.01,3.57.66,1.13,2.08,2.79,2.86,3.27.78.53,2.21,1.24,3.45,1.55,1.14.23,2.92.71,3.93.71,1.25-.06,2.97-.6,3.63-.89.66-.23,1.67-.78,2.08-1.19.41-.42.96-1.24,1.6-1.24.41,0,.84.41.84,1.07,0,.3-.12.53-.36.83-.48.48-.96.96-1.9,1.6-.78.59-1.01.78-2.56,1.55-1.49.78-3.7,1.24-5.36,1.42-.89.06-1.43.12-2.08.12s-1.19-.06-1.73-.12c-1.14-.18-2.08-.3-2.97-.3-.71,0-1.01-.48-2.15-.96-1.14-.48-2.74-1.07-4.11-2.5-1.31-1.31-2.26-4.28-2.44-5.35-.3-1.13-.23-2.15-.3-3.03-.06-.41-.06-.71-.06-1.13,0-.66.06-1.24.23-1.78.3-.96.53-2.2,1.01-3.45.48-1.19,1.96-2.91,2.68-3.62.71-.66,1.67-1.37,2.56-2.26,1.01-.89,2.51-1.6,4.47-2.13.96-.23,2.08-.3,3.1-.3s1.85.06,2.51.06c1.14,0,2.26.3,3.04.71.66.41,1.78,1.13,2.26,1.67.48.48,1.14,1.6,1.6,2.5.3.66.53,1.67.53,2.32,0,.18,0,.36-.06.42-.18.48-.3,2.26-.96,2.73-.53.53-.48.23-1.14.89-.66.48-3.93.83-4.89.83h-4.77c-1.37,0-1.25.06-2.62.23-.53.06-1.14.06-1.78.06h-1.14c-.06.78-.06,1.42-.06,1.85v.3ZM166.09,286.81c0-1.72-.53-2.86-1.19-3.57-.66-.71-.96-.78-1.6-1.07-.18-.06-.53-.12-.96-.12-.48,0-.96.06-1.37.12-.78.18-1.37.36-2.56.78-1.25.41-1.9,1.6-3.04,3.45-1.01,1.6-1.25,2.61-1.43,3.87,2.08,0,3.75-.06,4.77-.06.78,0,1.49.18,2.15.18.23,0,.41,0,.53-.06.66-.3,1.96-.18,2.86-.42,1.85-.48,1.85-1.96,1.85-3.09h-.01Z"/>
<path class="cls-1" d="M195.59,264.75h1.07c1.25.06,2.74.53,4.34.53.23,0,.48-.06.71-.06,1.9-.18,5.96.06,7.15-.23.89-.18,1.31-.18,2.21-.18h1.55c1.9-.06,3.63-.23,5.07-.3.66,0,1.01-.12,1.43-.12s.66.18.84.59c.06.06.06.23.06.42,0,.71-.48,1.6-.48,2.97s.18,2.56.18,3.92c-.06,2.08-.18,2.86-.84,2.91-.89,0-1.43-.23-1.6-1.37-.18-1.25-.23-.48-.41-1.67-.23-1.24-.96-2.2-1.43-2.86-.41-.59-2.51-1.19-3.33-1.55-.41-.18-.48-.12-.66-.12-.23,0-.41.06-1.31-.12-1.43-.18-.96-.06-1.9-.23-.23,0-.41-.06-.66-.06-.66,0-1.31.12-2.68.12-1.73,0-2.68.06-2.92.78-.3.71-.41,4.76-.41,8.26,0,1.97.18,3.75.18,5.11,0,1.07.02,1.9.06,2.5.06.53.36.6.89.6h1.25c.89.06,1.78.12,2.56.12.41,0,.71,0,1.01-.06.96-.18,2.15-.06,2.8-.3.41-.18,1.14-.18,1.9-.18h1.19c.89-.06,1.49-.6,2.21-.6.48,0,.96.3.96.71,0,.18-.12.36-.3.53-.78.78-.84.53-2.26,1.96-1.37,1.42-1.85,1.42-2.74,1.42s-1.96-.36-2.86-.53c-.9-.18-1.14-.06-2.8-.23-.48-.06-.96-.06-1.43-.06-1.14,0-2.03.12-2.26.41-.41.48-.48.83-.48,1.37,0,.41.06,1.01.06,1.72,0,1.19-.12,2.79-.12,4.16,0,.41,0,.83.06,1.6,0,.78-.18,1.42-.18,2.38,0,.23.06.48.06.78,0,1.49-.12,2.08-.12,2.73,0,.96.36,1.67.36,2.56,0,.36,0,.6-.06.71-.18.53-.96.71-2.44,1.13-1.9.48-2.86,1.07-3.81,1.07-.66,0-.66-.48-.66-1.13,0-1.13.36-1.07.41-2.43,0-1.42-.06-.96.12-2.5.12-1.55.18-3.03.18-4.52,0-1.01.12-1.67.12-2.31,0-.3-.06-.6-.12-1.01-.06-.18-.06-.36-.06-.66,0-.66.18-.96.18-1.85,0-.18-.06-.48-.06-.71-.06-1.13-.18-1.72-.18-2.38,0-.42.06-.71.12-1.19.06-.41.12-1.13.12-2.02,0-1.72-.12-4.16-.12-6.13,0-2.08-.23-3.21-.23-4.34,0-.48.06-1.01.18-1.6.12-.53.18-1.07.18-1.6,0-1.13-.23-2.08-.41-2.97,0-.18-.06-.18-.06-.36-.3-1.42-.96-1.96-.96-2.61,0-.89.71-.96,1.6-.96Z"/>
<path class="cls-1" d="M224.3,282.71c0-.71.84-.78,1.96-1.42,1.37-.89,2.03-.89,3.52-1.37.59-.18,1.01-.3,1.25-.3.66,0,.96.41.96,1.67,0,2.32.06,2.43-.12,4.58,0,2.32.06,2.91.12,4.1,0,.18.06.36.06.89,0,1.6-.3,3.15-.3,4.76,0,.48.06.96.12,1.42.3,2.15.23,2.97.3,4.46.06,1.6.41,2.43.41,3.09s-1.49,1.49-2.74,1.97c-1.14.48-2.21,1.13-3.1,1.13-.66,0-1.01-.6-1.01-1.49,0-.23,0-.41.06-.6.23-1.25.3-2.26.3-3.75,0-1.19.23-3.57.23-5.29,0-.41,0-.83-.06-1.13-.18-.66-.12-1.13-.12-1.67,0-1.67,0-2.15-.06-2.79l-.23-3.62c-.06-.66-.12-1.37-.3-2.5-.23-.89-.89-.96-1.14-1.6-.06-.23-.12-.36-.12-.53h.01ZM227.22,264.99c.06,0,.18-.06.23-.06.41-.12.71-.18.96-.18s.48,0,.66.06c.78.06,1.49.23,1.9.71.41.3.53.42.84,1.31.36.83.23.53.41,1.31.06.12.06.3.06.48,0,.53-.23.89-.48,1.42-.23.66-.59,1.01-.89,1.19-.41.18-1.37.59-2.26.59h-.18c-.71-.06-1.96-.41-2.62-1.07-.41-.42-.59-1.37-.59-2.26,0-.53.06-1.07.23-1.31.41-.89.84-1.9,1.73-2.2Z"/>
<path class="cls-1" d="M261.12,307.08c-.89,0-1.19-.3-1.49-2.13-.23-1.19-.36-2.73-.36-4.1,0-.83.06-1.6.18-2.26v-.3c.12-.66.18-1.13.18-1.42,0-.42-.06-.89-.06-1.78-.06-1.42-.12-2.38-.12-3.51v-.78c.06-.89.12-1.49.12-2.15,0-.41-.06-.83-.12-1.37-.23-1.42-.66-2.2-1.31-2.97-.66-.78-1.85-1.13-2.62-1.31-.96,0-2.92,1.19-3.57,1.55-1.37.66-3.04,1.78-3.81,2.91-.78,1.13-1.43,2.38-1.6,3.75-.24,1.42-.41,2.97-.41,4.64s.06,2.2.06,2.91c0,.42,0,.66-.06,1.07,0,1.85.23,3.69.41,4.58,0,1.13-.96,1.67-1.61,1.96-.41.18-.48.18-.71.18s-.53,0-1.07.18c-1.01.23-2.03.59-2.56.59-.12,0-.18,0-.23-.06-.24-.18-.36-.48-.36-1.01,0-.23,0-.6.06-1.01.18-1.01.3-2.15.3-3.75v-1.78c0-1.37-.06-2.38-.06-3.51,0-2.38.18-2.5.18-4.94s.23-1.6.23-2.86c0-.23.06-.48.06-.71,0-1.13-.18-2.02-.36-2.91-.18-1.01-.66-1.72-.66-2.61,0-.42.18-1.07,1.07-1.25,1.67-.18,3.4-.89,4.41-.89s1.37.53,1.37,1.07c0,1.25.12,2.02.12,2.91-.05.71-.05,1.37-.05,1.78v.71l.89-.89,1.85-1.6c1.37-1.07,1.67-1.07,2.8-1.85,1.19-.78,2.03-1.13,3.75-1.78.89-.3,1.85-.48,2.92-.48,1.14,0,2.15.23,3.1.66,1.67.78,2.86,1.49,3.58,3.33.71,1.85.71,2.91.71,4.64,0,1.85-.06,2.2-.06,3.57,0,1.01-.41,1.78-.41,2.68,0,.23,0,.41.06.53.18.48.12.96.12,1.37v4.94c0,1.24.18,1.85.59,2.32.24.41.36.78.36.96,0,.53-.48.83-1.01,1.07-1.37.66-3.88,1.07-4.77,1.13h-.01Z"/>
<path class="cls-1" d="M295.97,306.25c-.59.3-2.68.78-3.58.78-.78,0-1.49-.78-1.9-1.49-.41-.71-.41-1.19-.96-1.85-.12-.18-.3-.23-.48-.23-.71,0-1.73.89-2.62,1.37-1.37.89-1.91.89-2.8,1.31-.89.3-1.19.23-1.96.48-.89.3-1.49.18-2.62.23-1.14,0-3.1-.36-4.29-1.55-1.37-1.37-1.55-2.08-2.03-2.73-.3-.41-.3-.59-.3-1.01,0-.3,0-.48-.06-.66-.06-.12-.06-.42-.06-.83,0-.89.12-2.13.78-3.09.78-1.25,1.43-1.9,2.09-2.56.89-.66,1.55-.59,2.44-1.07.89-.48,2.33-.71,3.22-1.13.96-.48,2.26-.41,3.15-.83,1.01-.41,1.85-.41,2.74-.89,1.01-.42,2.03-.6,2.56-1.24.23-.3.18-1.67.18-2.38,0-.89-.41-1.96-.66-2.86-.3-.89-1.01-1.42-1.67-1.72-.71-.3-1.19-.48-1.67-.48-.66,0-1.19.23-2.15.89-.89.53-1.85.77-2.51,1.55-.54.78-.89.83-1.14,1.72-.18.71-.23,1.85-.54,2.73-.12.3-.3.41-.48.41-.41,0-.84-.3-1.07-.53-.89-.48-1.96-1.07-2.15-1.96-.05-.12-.05-.3-.05-.48,0-.41.05-.6.48-1.24.41-.78,1.78-1.85,2.44-2.26.66-.42,1.31-.53,2.03-1.07.66-.66,1.14-.48,2.74-1.19.78-.42,3.15-.6,4.89-.6,1.85,0,3.99.53,4.89,1.24.89.66,1.55,1.72,2.08,1.9.41.23.3,1.07.59,1.72.41.66.48,1.9.54,2.79,0,1.6-.06,3.03-.06,4.64,0,1.97-.41,3.45-.41,4.64,0,.96-.12,1.49-.12,1.96,0,.18,0,.36.06,1.78,0,.23,0,.42.06.6.18.78.3,1.37.54,2.02.18.71,1.49,1.55,1.49,1.96,0,.78-.78.89-1.67,1.19v.02ZM289.18,292.63c-.18-.18-1.78.3-2.44.48-.66.3-1.73.12-2.74.3-.89.18-2.08.3-2.97.6-1.85.66-2.21,1.9-2.21,3.51,0,.42.06.78.06,1.19.04.52.2,1.19.48,2.02.41,1.24.71,1.6,1.43,2.13.71.66,1.14.78,2.03.96.41.06.71.06.96.06.3,0,.48.06.89-.12.66-.23,1.25-.53,2.26-1.19,1.01-.53,2.08-1.31,2.15-1.72.05-.3.36-.66.36-1.31v-3.8c0-.89.23-.96.23-1.37-.18-.66-.06-1.42-.48-1.72h0Z"/>
<path class="cls-1" d="M326.17,307.08c-.89,0-1.19-.3-1.49-2.13-.23-1.19-.36-2.73-.36-4.1,0-.83.06-1.6.18-2.26v-.3c.12-.66.18-1.13.18-1.42,0-.42-.05-.89-.05-1.78-.06-1.42-.12-2.38-.12-3.51v-.78c.06-.89.12-1.49.12-2.15,0-.41-.06-.83-.12-1.37-.23-1.42-.66-2.2-1.31-2.97-.66-.78-1.85-1.13-2.62-1.31-.96,0-2.92,1.19-3.58,1.55-1.37.66-3.04,1.78-3.81,2.91-.78,1.13-1.43,2.38-1.61,3.75-.23,1.42-.41,2.97-.41,4.64s.06,2.2.06,2.91c0,.42,0,.66-.06,1.07,0,1.85.23,3.69.41,4.58,0,1.13-.96,1.67-1.6,1.96-.41.18-.48.18-.71.18s-.54,0-1.07.18c-1.01.23-2.03.59-2.56.59-.12,0-.18,0-.24-.06-.23-.18-.36-.48-.36-1.01,0-.23,0-.6.06-1.01.18-1.01.3-2.15.3-3.75v-1.78c0-1.37-.05-2.38-.05-3.51,0-2.38.18-2.5.18-4.94s.23-1.6.23-2.86c0-.23.06-.48.06-.71,0-1.13-.18-2.02-.36-2.91-.18-1.01-.66-1.72-.66-2.61,0-.42.18-1.07,1.07-1.25,1.67-.18,3.4-.89,4.41-.89s1.37.53,1.37,1.07c0,1.25.12,2.02.12,2.91-.06.71-.06,1.37-.06,1.78v.71l.89-.89,1.85-1.6c1.37-1.07,1.67-1.07,2.8-1.85,1.19-.78,2.03-1.13,3.75-1.78.89-.3,1.85-.48,2.92-.48,1.14,0,2.15.23,3.1.66,1.67.78,2.86,1.49,3.58,3.33.71,1.85.71,2.91.71,4.64,0,1.85-.06,2.2-.06,3.57,0,1.01-.41,1.78-.41,2.68,0,.23,0,.41.06.53.18.48.12.96.12,1.37v4.94c0,1.24.18,1.85.59,2.32.23.41.36.78.36.96,0,.53-.48.83-1.01,1.07-1.37.66-3.88,1.07-4.77,1.13h-.01Z"/>
<path class="cls-1" d="M361.14,288.42c0,.41-.23.83-.66.83s-.83-.18-.89-.71c-.06-.53-.54-.78-.78-1.42-.16-.44-.45-.97-.89-1.6-.41-.71-.59-.89-1.14-1.19-.66-.3-1.07-1.01-1.72-1.31-1.14-.48-2.26-.59-3.15-.59-.54,0-.96.06-1.37.12-1.14.18-2.33.89-3.34,1.67-1.19.96-1.72,2.08-2.15,3.69-.23.78-.12.6-.3,1.37-.18.78-.23,1.6-.3,2.5,0,.41-.06.83-.06,1.24,0,.48.06,1.07.18,1.78.23,1.24.54,1.37.78,2.26.24,1.01.48,1.55,1.25,2.91.89,1.37,2.08,1.6,2.51,2.08.41.42,1.19,1.01,2.08,1.24.78.23.84.53,2.44.78.41.06.66.12,1.07.12,1.01,0,1.9-.3,2.44-.36.48-.18,1.73-.23,2.21-.66.48-.41,1.72-.83,2.38-1.24.18-.18.41-.23.66-.23.3,0,.48.12.66.3.06.23.12.41.12.48,0,.41-.23.66-.48.96-.3.48-1.31.83-1.78,1.24-.41.41-.71.36-2.08,1.13-1.37.78-2.98,1.13-5.78,1.31-.48,0-.89.06-1.31.06-2.08,0-3.52-.36-4.17-.66-.78-.3-1.6-.12-2.62-.66-.96-.48-.41-.66-1.43-1.01-.96-.3-1.85-1.13-2.51-1.85-.66-.66-.84-1.01-1.91-2.73-.89-1.42-1.07-3.69-1.07-5.52.06-2.56.18-3.75.59-4.94.3-1.19,1.96-3.69,2.38-4.1.3-.3,2.38-2.26,2.92-2.61.78-.53,1.32-.41,2.74-1.42,1.37-.96,2.51-.78,3.88-1.19.59-.18,1.25-.23,1.91-.23s1.31.06,1.85.12c.23,0,.48.06.66.06,2.08.18,3.4.36,3.93.66.78.53,1.37.18,1.85.66.41.3.71.48.71,1.13,0,1.67-.41,2.38-.41,4.1,0,.48.12,1.07.12,1.49v-.06Z"/>
<path class="cls-1" d="M374.66,294.66c.18.48.36,2.38,1.01,3.57.66,1.13,2.08,2.79,2.86,3.27.78.53,2.21,1.24,3.45,1.55,1.14.23,2.92.71,3.93.71,1.25-.06,2.97-.6,3.63-.89.66-.23,1.67-.78,2.08-1.19.41-.42.96-1.24,1.61-1.24.41,0,.83.41.83,1.07,0,.3-.12.53-.36.83-.48.48-.96.96-1.91,1.6-.78.59-1.01.78-2.56,1.55-1.49.78-3.7,1.24-5.36,1.42-.89.06-1.43.12-2.09.12s-1.19-.06-1.72-.12c-1.14-.18-2.08-.3-2.98-.3-.71,0-1.01-.48-2.15-.96-1.14-.48-2.74-1.07-4.11-2.5-1.31-1.31-2.26-4.28-2.44-5.35-.3-1.13-.23-2.15-.3-3.03-.06-.41-.06-.71-.06-1.13,0-.66.06-1.24.23-1.78.3-.96.54-2.2,1.01-3.45.48-1.19,1.96-2.91,2.68-3.62.71-.66,1.67-1.37,2.56-2.26,1.01-.89,2.51-1.6,4.47-2.13.96-.23,2.08-.3,3.1-.3s1.85.06,2.51.06c1.14,0,2.26.3,3.04.71.66.41,1.78,1.13,2.26,1.67.48.48,1.14,1.6,1.61,2.5.3.66.53,1.67.53,2.32,0,.18,0,.36-.05.42-.18.48-.3,2.26-.96,2.73-.54.53-.48.23-1.14.89-.66.48-3.93.83-4.89.83h-4.77c-1.37,0-1.25.06-2.62.23-.54.06-1.14.06-1.78.06h-1.14c-.06.78-.06,1.42-.06,1.85v.3ZM387.04,286.81c0-1.72-.54-2.86-1.19-3.57-.66-.71-.96-.78-1.6-1.07-.18-.06-.54-.12-.96-.12-.48,0-.96.06-1.37.12-.78.18-1.37.36-2.56.78-1.25.41-1.91,1.6-3.04,3.45-1.01,1.6-1.25,2.61-1.43,3.87,2.08,0,3.75-.06,4.77-.06.78,0,1.49.18,2.15.18.24,0,.41,0,.54-.06.66-.3,1.96-.18,2.86-.42,1.85-.48,1.85-1.96,1.85-3.09h-.01Z"/>
<path class="cls-1" d="M449.42,276.17c0-1.01-.12-.78-.41-2.13-.41-1.37-.83-2.38-1.96-3.62-1.14-1.24-2.26-1.72-3.88-2.43-1.6-.66-2.38-.53-4.59-.71-.78-.06-1.31-.12-1.97-.12-1.14,0-2.09.18-3.33.71-1.85.78-2.62.66-3.63,1.78-1.01,1.19-2.62,2.2-3.63,3.62-.96,1.49-2.62,3.98-2.92,5.82-.23,1.6-.78,3.45-.78,5.77,0,.41.05.6.05,1.01.18,2.73,1.25,5.52,1.43,6.43.18.89,1.55,3.69,2.44,4.58.96.96,2.26,2.86,4.17,3.98,1.91,1.12,4.52,2.02,6.14,2.43.66.18,1.43.18,2.33.18,1.25,0,2.44-.06,3.63-.18,2.09-.18,3.27-1.01,4.89-1.67,1.61-.66,2.69-1.55,4.11-2.68,1.14-.89,1.6-1.49,2.26-1.49.12,0,.3.06.48.18.41.3.59.59.59.89s-.24.71-.71,1.19c-.96.89-1.07,1.24-1.96,1.9s-1.37,1.13-2.03,1.31c-.66.18-1.25.96-3.45,2.08-2.2,1.13-5.84,2.02-9.35,2.02s-4.41-.06-6.91-.71c-2.56-.66-4.06-1.01-5.96-1.9-1.91-.89-3.4-2.15-3.88-2.86-.48-.71-.41-1.42-1.31-1.96-.96-.48-1.96-.78-3.52-4.81-1.01-2.68-1.37-5.65-1.37-8.08,0-1.24.06-2.32.23-3.21.41-2.56,1.32-4.76,3.15-7.67,1.73-2.86,4.71-5.17,5.48-5.95.71-.89,1.49-1.13,2.44-1.31.96-.18.66-1.07,2.8-1.9,2.09-.78,6.14-2.38,9.29-2.38s6.32.23,8.4.66c1.37.23,3.27,1.07,4.52,1.07.71.23,1.43.71,1.43,1.49,0,.18-.06.18-.06.36-.24.96-.18,2.02-.36,3.45-.06.18-.06.36-.06.66,0,.96.3,1.55.3,2.91,0,1.67-.23,2.86-1.25,2.86s-1.25-.53-1.31-1.55h.03Z"/>
<path class="cls-1" d="M471.41,280.45c1.01-.41,2.44-.3,3.45-.78.36-.18.84-.23,1.37-.23.89,0,1.14.18,1.78.36,1.01.36,5.48,1.13,6.37,2.32.83,1.31,1.49,1.49,2.26,2.73.89,1.37,1.25,2.56,1.67,5.11.06.78.12,1.37.12,2.02,0,1.6-.23,2.73-.66,4.1-.54,1.85-.78,3.09-1.25,3.8-1.91,3.33-3.63,3.92-5.18,4.81-1.6,1.13-2.74,1.67-3.93,1.9-1.14.3-1.6.42-2.97.42s-5.12-.23-7.15-1.31c-1.85-.96-1.96-1.24-3.04-2.32-1.19-1.13-2.21-2.5-2.69-3.62-.23-1.13-.78-3.33-.78-5.24.06-1.37,0-2.43.41-4.28.3-1.85,1.32-2.97,2.21-4.4.96-1.6,2.92-3.09,3.88-3.87,1.01-.89,2.97-1.07,4.11-1.55h.01ZM467.3,287.29c-.41,1.19-.54,2.61-.54,4.7s.3,4.28.71,5.41c.41,1.13,1.43,2.79,2.08,3.51.41.41,2.26,2.43,2.97,2.56.96.41,1.96.96,2.74.96,1.6,0,2.33-.36,3.27-.78.78-.48,1.07-.18,1.91-1.19.89-1.01,1.49-1.72,1.78-3.45.23-1.37.83-2.32.83-3.51,0-.48,0-1.01-.05-1.67-.18-2.32-.96-5.06-1.55-5.82-.66-.71-.96-2.02-1.85-2.97-.89-1.13-1.72-1.67-2.68-2.31-.89-.66-2.56-.48-3.45-.48-1.14,0-1.67.6-2.86,1.31-2.21,1.37-3.04,2.56-3.34,3.75l.02-.02Z"/>
<path class="cls-1" d="M515.79,307.08c-.89,0-1.19-.3-1.49-2.13-.23-1.19-.36-2.73-.36-4.1,0-.83.06-1.6.18-2.26v-.3c.12-.66.18-1.13.18-1.42,0-.42-.06-.89-.06-1.78-.06-1.42-.12-2.38-.12-3.51v-.78c.06-.89.12-1.49.12-2.15,0-.41-.06-.83-.12-1.37-.23-1.42-.66-2.2-1.31-2.97-.66-.78-1.85-1.13-2.62-1.31-.96,0-2.92,1.19-3.58,1.55-1.37.66-3.04,1.78-3.81,2.91-.78,1.13-1.43,2.38-1.6,3.75-.23,1.42-.41,2.97-.41,4.64s.05,2.2.05,2.91c0,.42,0,.66-.05,1.07,0,1.85.23,3.69.41,4.58,0,1.13-.96,1.67-1.6,1.96-.41.18-.48.18-.71.18s-.54,0-1.07.18c-1.01.23-2.03.59-2.56.59-.12,0-.18,0-.23-.06-.23-.18-.36-.48-.36-1.01,0-.23,0-.6.06-1.01.18-1.01.3-2.15.3-3.75v-1.78c0-1.37-.06-2.38-.06-3.51,0-2.38.18-2.5.18-4.94s.23-1.6.23-2.86c0-.23.06-.48.06-.71,0-1.13-.18-2.02-.36-2.91-.18-1.01-.66-1.72-.66-2.61,0-.42.18-1.07,1.07-1.25,1.67-.18,3.4-.89,4.41-.89s1.37.53,1.37,1.07c0,1.25.12,2.02.12,2.91-.06.71-.06,1.37-.06,1.78v.71l.89-.89,1.85-1.6c1.37-1.07,1.67-1.07,2.8-1.85,1.19-.78,2.03-1.13,3.75-1.78.89-.3,1.85-.48,2.92-.48,1.14,0,2.15.23,3.09.66,1.67.78,2.86,1.49,3.58,3.33.71,1.85.71,2.91.71,4.64,0,1.85-.06,2.2-.06,3.57,0,1.01-.41,1.78-.41,2.68,0,.23,0,.41.06.53.18.48.12.96.12,1.37v4.94c0,1.24.18,1.85.59,2.32.23.41.36.78.36.96,0,.53-.48.83-1.01,1.07-1.37.66-3.88,1.07-4.77,1.13h-.01Z"/>
<path class="cls-1" d="M542.78,280.63c.89.3,1.55.18,2.33.83l.23.12c.71.48,1.07.71,1.07,1.67s-.71,1.6-.89,2.73c-.06.18-.06.3-.06.48s-.06.18-.06.23v.83c0,.71-.36.89-.78.89-.53,0-.78-.53-1.07-1.42-.66-1.97-1.55-2.97-3.7-3.87-.54-.3-1.19-.41-1.85-.41-.41,0-.71.06-.96.18-.71.23-1.6.66-2.15,1.37-.41.53-.66.96-.66,1.6,0,.23.06.48.18.71.41.78.96,1.24,1.91,1.78.96.66,1.72,1.13,2.38,1.42.66.23,1.49,1.49,2.26,1.67.71.18,1.55.41,2.08.71.54.23.78.83,1.43,1.37.71.48,1.6,1.19,2.08,1.96.48.89,1.01,1.42,1.01,2.79,0,2.08-.89,4.16-1.78,5.11-.78,1.01-1.07,1.37-2.08,2.08-1.01.78-2.44,1.13-3.15,1.42-.71.3-4.47.53-4.94.53s-2.44-.36-4.17-1.01c-1.72-.66-2.44-1.42-2.97-1.72-.48-.3-1.37-1.6-1.43-2.08,0-.66.41-.89,1.14-1.78.89-.96,1.6-2.08,2.03-2.08.48,0,.71.42,1.01,1.19.23.78.96,1.49,1.49,2.02.48.66,1.19,1.49,1.96,1.78,1.73.66,2.38,1.24,3.99,1.24.23,0,.48-.06.71-.06.89-.06,1.91-.53,2.56-1.42.66-.77.89-1.72.89-2.61,0-.83-.18-1.42-.54-1.72-.66-.66-1.25-1.49-2.15-1.9-.96-.41-2.56-1.37-3.1-1.55-.66-.18-1.37-1.55-2.26-1.72-.89-.23-2.03-.6-2.8-1.07l-.24-.18c-.71-.48-1.49-1.07-2.15-1.96-.54-.78-.78-1.6-.78-2.61,0-.78.18-1.55.48-2.38.71-1.72,2.15-2.68,3.27-3.57.96-.89,2.8-1.24,3.7-1.49.96-.18,2.74-.48,3.1-.48,1.37,0,2.51.12,3.4.36Z"/>
<path class="cls-1" d="M552.66,282.6c0-.3.12-.53.41-.71.96-.66,3.81-1.37,4.77-1.67.12-.06.3-.06.53-.06.66,0,1.07.3,1.32,1.42.05.18.05.53.05,1.01,0,1.37-.18,3.03-.18,4.4,0,1.13.06,1.85.06,2.61,0,.42,0,.71-.06,1.13-.06.42-.06.66-.06,1.07,0,.66.06,1.37.06,2.38s-.06,2.08-.06,3.09c0,.48,0,1.01.06,1.42.18,1.24.12,2.15.3,3.27.3,1.13.71,1.49,1.67,2.02.66.3,1.25.66,2.15.66.41,0,.89-.12,1.49-.3,1.49-.66,2.51-1.07,2.92-1.37.36-.23,2.86-2.5,3.34-3.57.23-.48.3-1.24.3-2.15s-.06-1.85-.06-2.32c0-.89.36-2.13.36-3.03-.06-.66-.23-1.31-.23-2.02.06-1.24.06-2.08.06-2.86,0-2.08-.12-3.27-.12-4.87,0-.53.12-1.13,1.25-1.42,1.6-.48,3.88-.48,4.59-.78.18-.06.36-.12.59-.12.41,0,.66.23.66.78v.23c-.18.96-.48,3.75-.66,5.17-.06.42-.06.83-.06,1.24,0,1.19.12,2.5.18,4.34,0,1.6-.18,2.86-.18,3.98,0,.96-.12,2.79-.12,4.46.18,1.13.12,2.43.3,3.09.18.66.78,1.31.78,1.6,0,.48-.41.71-1.31,1.13-.89.48-2.21,1.01-3.15,1.07h-.41c-.71,0-1.37-.18-1.61-1.13-.36-1.19-.41-3.33-.78-3.33-.23,0-1.73,1.37-2.38,1.85-.71.42-1.49,1.13-2.51,1.54-.96.48-2.44.96-4.29,1.19-.71.18-1.31.12-1.85.12-.78,0-1.72-.12-2.8-.36-1.85-.48-3.7-1.6-4.17-2.79-.66-1.25-.66-2.2-.89-3.39-.06-.18-.06-.36-.06-.6,0-.78.23-1.24.23-2.61-.06-1.13-.23-1.9-.23-2.79,0-.3.06-.59.06-.83,0-.3.3-.96.3-1.97v-1.31c0-.96.06-1.9.06-4.46-.06-1.13-.06-1.55-.3-2.08-.18-.71-.3-1.01-.3-1.42l-.02.04Z"/>
<path class="cls-1" d="M590.96,306.2c-1.01.36-2.62,1.78-3.52,1.78s-.83-1.13-.83-1.67v-1.55c-.06-.42-.06-.78-.06-1.19,0-1.24.12-2.68.12-3.8-.06-1.42-.48-2.86-.48-4.22.05-1.49.12-2.02.12-2.91,0-2.86.18-5.77.18-7.37,0-.53.12-.59.12-1.24,0-.41,0-.89-.18-2.26-.06-.53-.12-1.01-.12-1.49,0-1.19.12-2.13.18-2.43.18-.71.23-1.19.23-1.85,0-.3.06-.66-.12-1.07-.18-.41-.23-.89-.23-1.31,0-.53.12-1.07.12-1.78,0-1.13.06-3.51-.12-4.28-.18-.77-.78-2.13-.78-2.79,0-.96,1.01-1.42,1.67-1.85,1.01-.53,2.15-.42,3.15-1.07.53-.3,1.01-.42,1.31-.42.36,0,.59.18.78.6.12.48.18.96.18,1.37,0,.66-.06,1.19-.06,3.57,0,.48.06,1.01-.12,1.9-.3,1.9-.3,1.72-.3,3.15,0,1.13.36,1.9.36,3.8,0,.41,0,.89-.06,1.42-.18,1.42-.12,2.5-.12,3.62s0,2.08-.06,3.33c-.18,1.85-.18,3.21-.18,5.77,0,1.19.18,1.55.18,2.2,0,.71-.12,1.42-.12,2.08,0,1.13,0,2.43.18,3.57.06,1.19.12,2.43.12,4.16,0,.78.89,1.78.89,2.68,0,1.01-1.19,1.07-2.44,1.55Z"/>
<path class="cls-1" d="M602.05,277.72c0-1.6.23-2.13.96-2.68.71-.53,1.14-.66,2.26-1.78,1.01-.96,1.78-1.13,2.8-2.02.3-.3.66-.48,1.01-.48.41,0,.71.18.78.59,0,.71-.71,1.72-1.01,2.86-.23.78-.36,1.85-.36,2.79,0,.78-.18,2.15-.18,2.61,0,.3,0,.48.06.53.23.48.36.66.89.66.3,0,.54,0,.71-.06.41-.06.59-.06.89-.06.66,0,1.01.06,2.15.06.41,0,.71.06,1.14.06.36,0,.71-.06,1.07-.18.06-.06.18-.06.36-.06s.23.06.23.23c0,.36-.23.78-.71,1.31-.89,1.01-1.72,1.07-2.68,1.25h-3.52c-.18.18-.3.41-.41.66-.18.42-.36,1.01-.36,1.72v.71c0,.96-.12,1.37-.12,2.26,0,.3,0,.66.06,1.07,0,.41.06.71.06,1.13,0,1.01-.12,1.96-.12,2.68,0,.3,0,.53.06.66.18,1.13.23,1.25.23,2.15v1.19c0,.48,0,.96.18,1.67.23,1.37,0,1.49.48,2.61.48.96,1.37,2.02,3.04,2.43.3.06.66.06.89.06,1.14,0,1.72-.41,2.44-.66,1.01-.42,1.49-.78,2.03-1.19.3-.18.53-.23.71-.23.23,0,.48.12.71.36.05.06.05.12.05.23,0,.66-1.25,1.72-3.45,2.91-1.72.96-3.22,1.42-5.3,1.42-1.19,0-3.4-.3-4.77-1.24-1.72-1.13-2.51-2.02-2.8-3.03-.41-.89-.41-1.78-.48-2.97-.05-.96-.18-2.15-.18-3.27.06-.66.12-2.2.3-2.68,0-.89-.23-1.85-.23-2.97,0-.96.3-2.02.3-3.03,0-.3,0-.53-.06-.71-.06-.41-.06-.83-.06-1.31v-1.9c-.05-.23-.36-.36-.96-.36h-.89c-.89,0-1.37-.18-1.37-.48,0-.78,1.01-1.37,1.67-1.78.71-.48,1.43-.41,1.49-.66v-3.09h0Z"/>
<path class="cls-1" d="M622.55,282.71c0-.71.83-.78,1.96-1.42,1.37-.89,2.03-.89,3.52-1.37.59-.18,1.01-.3,1.25-.3.66,0,.96.41.96,1.67,0,2.32.05,2.43-.12,4.58,0,2.32.06,2.91.12,4.1,0,.18.05.36.05.89,0,1.6-.3,3.15-.3,4.76,0,.48.06.96.12,1.42.3,2.15.23,2.97.3,4.46.06,1.6.41,2.43.41,3.09s-1.49,1.49-2.74,1.97c-1.14.48-2.21,1.13-3.1,1.13-.66,0-1.01-.6-1.01-1.49,0-.23,0-.41.05-.6.24-1.25.3-2.26.3-3.75,0-1.19.23-3.57.23-5.29,0-.41,0-.83-.06-1.13-.18-.66-.12-1.13-.12-1.67,0-1.67,0-2.15-.06-2.79l-.23-3.62c-.06-.66-.12-1.37-.3-2.5-.23-.89-.89-.96-1.14-1.6-.06-.23-.12-.36-.12-.53h.01ZM625.46,264.99c.06,0,.18-.06.23-.06.41-.12.71-.18.96-.18s.48,0,.66.06c.78.06,1.49.23,1.91.71.41.3.54.42.83,1.31.36.83.23.53.41,1.31.06.12.06.3.06.48,0,.53-.24.89-.48,1.42-.23.66-.59,1.01-.89,1.19-.41.18-1.37.59-2.26.59h-.18c-.71-.06-1.96-.41-2.62-1.07-.41-.42-.59-1.37-.59-2.26,0-.53.06-1.07.23-1.31.41-.89.84-1.9,1.73-2.2Z"/>
<path class="cls-1" d="M659.36,307.08c-.89,0-1.19-.3-1.49-2.13-.23-1.19-.36-2.73-.36-4.1,0-.83.06-1.6.18-2.26v-.3c.12-.66.18-1.13.18-1.42,0-.42-.06-.89-.06-1.78-.05-1.42-.12-2.38-.12-3.51v-.78c.06-.89.12-1.49.12-2.15,0-.41-.06-.83-.12-1.37-.23-1.42-.66-2.2-1.31-2.97-.66-.78-1.85-1.13-2.62-1.31-.96,0-2.92,1.19-3.58,1.55-1.37.66-3.04,1.78-3.81,2.91-.78,1.13-1.43,2.38-1.6,3.75-.23,1.42-.41,2.97-.41,4.64s.06,2.2.06,2.91c0,.42,0,.66-.06,1.07,0,1.85.23,3.69.41,4.58,0,1.13-.96,1.67-1.6,1.96-.41.18-.48.18-.71.18s-.54,0-1.07.18c-1.01.23-2.03.59-2.56.59-.12,0-.18,0-.23-.06-.23-.18-.36-.48-.36-1.01,0-.23,0-.6.06-1.01.18-1.01.3-2.15.3-3.75v-1.78c0-1.37-.06-2.38-.06-3.51,0-2.38.18-2.5.18-4.94s.23-1.6.23-2.86c0-.23.06-.48.06-.71,0-1.13-.18-2.02-.36-2.91-.18-1.01-.66-1.72-.66-2.61,0-.42.18-1.07,1.07-1.25,1.67-.18,3.4-.89,4.41-.89s1.37.53,1.37,1.07c0,1.25.12,2.02.12,2.91-.06.71-.06,1.37-.06,1.78v.71l.89-.89,1.85-1.6c1.37-1.07,1.67-1.07,2.8-1.85,1.19-.78,2.03-1.13,3.75-1.78.89-.3,1.85-.48,2.92-.48,1.14,0,2.15.23,3.1.66,1.67.78,2.86,1.49,3.57,3.33.71,1.85.71,2.91.71,4.64,0,1.85-.06,2.2-.06,3.57,0,1.01-.41,1.78-.41,2.68,0,.23,0,.41.06.53.18.48.12.96.12,1.37v4.94c0,1.24.18,1.85.59,2.32.23.41.36.78.36.96,0,.53-.48.83-1.01,1.07-1.37.66-3.88,1.07-4.77,1.13h0Z"/>
<path class="cls-1" d="M676.76,308.93c-.06-.06-.66-.36-.71-.36-1.37-.3-2.68-1.13-2.68-2.26s.06-2.02,1.73-2.97c.96-.66,2.97-1.49,3.09-1.6-.06,0-1.6-.6-3.27-1.97-1.6-1.37-2.2-2.5-2.92-3.62-.66-1.13-.54-2.56-.71-3.33-.06-.06-.06-.3-.06-.6,0-1.42.59-4.4,1.55-6,1.14-1.85,2.33-2.97,3.52-3.69.96-.66,2.15-1.31,3.27-1.6,1.6-.23,3.27-.66,5.18-.89,2.33,0,4.59.3,5.96.96,1.43.66,1.91.53,3.1.83.41.12.83.18,1.37.18.41,0,.84-.06,1.49-.06.96,0,1.96-.71,2.03-.78.06-.06.18-.12.3-.12.41,0,.66.41.66.89,0,.18-.06.36-.12.41-.41.78-1.07,1.42-2.2,1.85-.78.3-.96.66-2.33.83.66.48.23.6.89,1.67.48.89.89,3.27.89,4.99,0,1.6-.48,3.15-1.14,4.58-.66,1.43-2.33,2.68-2.86,3.21-.41.53-1.96,1.31-2.86,1.72-.78.48-3.52,1.31-5.25,1.31-.3,0-.54,0-.71-.06-.54-.12-2.69-.12-3.45-.12-.89,0-1.78.78-1.85,1.31,0,.3.12.48.89.66.89,0,1.73.48,2.86.48,2.33,0,2.98.06,3.45.23.53.3,1.19.48,1.91.48.23,0,.41-.06,1.07-.06.96,0,2.33.3,3.1.6,2.44.89,3.58,1.49,4.52,3.92.18.42.23,1.07.23,1.72,0,1.24-.23,3.27-1.14,4.28-1.37,1.67-1.91,2.56-2.92,2.97-.96.41-.89.71-1.91,1.13-.71.3-3.52,1.19-6.44,1.37-.54.05-1.07.05-1.55.05-2.44,0-5.72-.53-7.21-.95-2.92-1.01-4.59-3.33-4.59-4.76s.3-1.85.59-2.61c.54-1.24,1.96-2.08,2.62-2.73.48-.41,1.6-1.01,2.56-1.49h.04ZM691.77,311.54c-1.78-1.31-2.26-.66-4.35-1.42-2.38-.77-4.47-.41-5.89-.71-.66-.18-1.67-.3-2.56-.3-.41.53-1.19,1.13-1.85,1.78-.53.66-1.01,1.49-1.01,2.5,0,.18.06.36.06.53.18,1.19.59,1.37,1.55,2.15.71.65,1.78,1.07,5.12,1.54.48.06.89.3,1.31.3,1.19,0,2.51-.06,3.52-.06,3.33,0,5.48-2.02,5.48-3.87,0-.89-.24-1.55-1.37-2.43h0ZM678.61,285.69c-.44.99-.76,2-.96,3.03,0,.48-.24,1.01-.24,1.72,0,1.24.3,2.5.48,3.21.23.89.71,2.56,1.01,3.21.3.66,1.19,1.72,1.37,1.96.18.3,1.78,1.13,3.63,1.55.41.06.66.12.96.12.66,0,1.14-.18,2.08-.59,1.43-.66,2.51-1.37,3.22-3.03.66-1.6.53-2.02.71-3.62.05-.89.3-1.67.3-2.56,0-.48-.06-.96-.23-1.42-.41-1.24-.59-2.68-1.37-3.8-.89-1.37-1.73-2.02-2.74-2.73-.66-.42-1.19-.36-2.09-.36-.41,0-.78-.18-1.49-.18-.41,0-.96.12-1.55.3-1.85.71-2.44,1.85-3.1,3.21v-.02Z"/>
<path class="cls-2" d="M756.52,306.37c-.89.3-1.78.53-2.56.53-.54,0-.96-.12-1.19-.36-.18-.18-.41-1.19-.41-2.32v-.6c.06-.41.06-.71.06-1.01,0-.66-.06-1.01-.06-3.33,0-.66,0-1.24.18-2.61,0-.18.18-1.42.18-2.56,0-.23-.05-.53-.05-.71-.06-.89-.12-1.55-.12-2.26,0-.41,0-.83.06-1.24.06-.3.06-.78.06-1.24,0-1.13-.06-2.2-.12-2.86,0-.89-.48-2.2-1.01-2.61-.54-.36-1.01-.53-1.55-.53s-1.07.12-1.78.18c-1.37.18-2.38,1.49-3.27,2.02-.89.66-1.37,1.42-1.91,2.32-.18.23-.66,1.31-.83,3.75-.06.96-.12,1.37-.12,1.67,0,.48.06.71.12,2.31v.78c0,1.9-.23,2.68-.23,4.28-.06,1.13-.12,1.78-.12,2.31,0,.36.06.78.18,1.24.18.66.3.96.3,1.37s-.18.71-.59.89c-1.25.66-4.71,1.13-4.95,1.13-.54,0-.78-.36-.78-1.13.18-1.9,0-4.28.23-5.65.18-.42.12-1.07.12-1.78,0-1.42-.12-3.21-.12-4.22s.06-1.67.06-2.43c0-.41,0-.83-.06-1.37-.05-.53-.05-.96-.05-1.37v-1.19c0-.42,0-.78-.06-1.24-.18-1.37-.12-1.72-.89-2.61-.71-1.01-2.2-1.19-2.68-1.24-.66,0-1.67.36-3.1,1.31-1.37.89-1.85,1.78-2.74,2.68-.89.89-1.37,1.31-1.37,2.91s-.3,2.61-.3,4.51-.48,5.11-.48,7.19c0,1.85.54,2.79.54,3.45,0,.06-.06.18-.06.23-.18.78-1.49,1.07-2.44,1.25-.96.23-2.33.78-2.56.78-.18,0-.66.23-1.14.23-.41,0-.66-.23-.71-.66v-.53c0-1.19.18-2.68.36-3.57.18-.89.18-3.33.18-7.14,0-1.19.06-2.68.12-3.8.18-1.6,0-2.68.18-3.8,0-.42.06-.83.06-1.24,0-.71-.06-1.37-.3-1.85-.3-.71-.59-1.78-.59-2.56,0-1.01.53-.53,2.2-1.31,1.25-.53,2.26-.66,3.04-.66h.66c.96.06.96.53,1.14,1.72.18,1.6.12,2.08.12,3.03,0,.12,0,.18.06.18.3,0,1.25-1.24,2.69-2.38,1.6-1.13,1.73-.96,3.04-1.6,1.25-.66,2.38-.78,3.27-.78.41,0,.96-.06,1.6-.06s1.31.06,1.96.36c1.01.48,3.09,1.49,3.4,2.26.18.53.41.96.66,1.24.18.18.3.41.41.66l.3-.36c.23-.23.59-.71,1.49-1.37,1.6-1.24,1.55-1.6,2.74-2.08,1.25-.48,1.73-.6,2.74-.83.84-.23,1.67-.36,2.56-.36.3,0,.66,0,.96.06,1.19.23,3.15.78,4.17,1.9.89,1.01,1.01,1.42,1.25,2.68.23,1.24.36,2.5.36,3.75,0,.96-.05,1.9-.12,2.68-.06.48-.06.78-.06,1.19,0,.66.06,1.13.06,1.78,0,.3,0,.71-.06,1.13-.18,1.37-.23,2.26-.23,3.15.06,1.96.12,3.75.12,4.51,0,.89.84,1.42.84,2.56,0,1.07-1.31.78-2.98,1.24h-.02Z"/>
<path class="cls-2" d="M772.18,294.66c.18.48.36,2.38,1.01,3.57.66,1.13,2.08,2.79,2.86,3.27.78.53,2.2,1.24,3.45,1.55,1.14.23,2.92.71,3.93.71,1.25-.06,2.97-.6,3.63-.89.66-.23,1.67-.78,2.09-1.19.41-.42.96-1.24,1.6-1.24.41,0,.83.41.83,1.07,0,.3-.12.53-.36.83-.48.48-.96.96-1.91,1.6-.78.59-1.01.78-2.56,1.55-1.49.78-3.7,1.24-5.36,1.42-.89.06-1.43.12-2.08.12s-1.19-.06-1.73-.12c-1.14-.18-2.08-.3-2.98-.3-.71,0-1.01-.48-2.15-.96-1.14-.48-2.74-1.07-4.11-2.5-1.31-1.31-2.26-4.28-2.44-5.35-.3-1.13-.23-2.15-.3-3.03-.06-.41-.06-.71-.06-1.13,0-.66.06-1.24.23-1.78.3-.96.54-2.2,1.01-3.45.48-1.19,1.96-2.91,2.68-3.62.71-.66,1.67-1.37,2.56-2.26,1.01-.89,2.51-1.6,4.47-2.13.96-.23,2.09-.3,3.1-.3s1.85.06,2.51.06c1.14,0,2.26.3,3.04.71.66.41,1.78,1.13,2.26,1.67.48.48,1.14,1.6,1.6,2.5.3.66.54,1.67.54,2.32,0,.18,0,.36-.06.42-.18.48-.3,2.26-.96,2.73-.54.53-.48.23-1.14.89-.66.48-3.93.83-4.89.83h-4.77c-1.37,0-1.25.06-2.62.23-.54.06-1.14.06-1.78.06h-1.14c-.06.78-.06,1.42-.06,1.85v.3ZM784.57,286.81c0-1.72-.53-2.86-1.19-3.57-.66-.71-.96-.78-1.6-1.07-.18-.06-.54-.12-.96-.12-.48,0-.96.06-1.37.12-.78.18-1.37.36-2.56.78-1.25.41-1.91,1.6-3.04,3.45-1.01,1.6-1.25,2.61-1.43,3.87,2.09,0,3.75-.06,4.77-.06.78,0,1.49.18,2.15.18.23,0,.41,0,.53-.06.66-.3,1.96-.18,2.86-.42,1.85-.48,1.85-1.96,1.85-3.09h-.01Z"/>
<path class="cls-2" d="M802.52,294.66c.18.48.36,2.38,1.01,3.57.66,1.13,2.08,2.79,2.86,3.27.78.53,2.21,1.24,3.45,1.55,1.14.23,2.92.71,3.93.71,1.25-.06,2.97-.6,3.63-.89.66-.23,1.67-.78,2.08-1.19.41-.42.96-1.24,1.61-1.24.41,0,.83.41.83,1.07,0,.3-.12.53-.36.83-.48.48-.96.96-1.91,1.6-.78.59-1.01.78-2.56,1.55-1.49.78-3.7,1.24-5.36,1.42-.89.06-1.43.12-2.08.12s-1.19-.06-1.72-.12c-1.14-.18-2.08-.3-2.98-.3-.71,0-1.01-.48-2.15-.96-1.14-.48-2.74-1.07-4.11-2.5-1.31-1.31-2.26-4.28-2.44-5.35-.3-1.13-.23-2.15-.3-3.03-.06-.41-.06-.71-.06-1.13,0-.66.06-1.24.23-1.78.3-.96.54-2.2,1.01-3.45.48-1.19,1.96-2.91,2.68-3.62.71-.66,1.67-1.37,2.56-2.26,1.01-.89,2.51-1.6,4.47-2.13.96-.23,2.08-.3,3.1-.3s1.85.06,2.51.06c1.14,0,2.26.3,3.04.71.66.41,1.78,1.13,2.26,1.67.48.48,1.14,1.6,1.61,2.5.3.66.53,1.67.53,2.32,0,.18,0,.36-.06.42-.18.48-.3,2.26-.96,2.73-.54.53-.48.23-1.14.89-.66.48-3.93.83-4.89.83h-4.77c-1.37,0-1.25.06-2.62.23-.53.06-1.13.06-1.78.06h-1.14c-.06.78-.06,1.42-.06,1.85v.3ZM814.9,286.81c0-1.72-.54-2.86-1.19-3.57-.66-.71-.96-.78-1.6-1.07-.18-.06-.54-.12-.96-.12-.48,0-.96.06-1.37.12-.78.18-1.37.36-2.56.78-1.25.41-1.91,1.6-3.04,3.45-1.01,1.6-1.25,2.61-1.43,3.87,2.08,0,3.75-.06,4.77-.06.78,0,1.49.18,2.15.18.23,0,.41,0,.54-.06.66-.3,1.96-.18,2.86-.42,1.85-.48,1.85-1.96,1.85-3.09h-.01Z"/>
<path class="cls-2" d="M828.78,277.72c0-1.6.23-2.13.96-2.68.71-.53,1.14-.66,2.26-1.78,1.01-.96,1.78-1.13,2.8-2.02.3-.3.66-.48,1.01-.48.41,0,.71.18.78.59,0,.71-.71,1.72-1.01,2.86-.23.78-.36,1.85-.36,2.79,0,.78-.18,2.15-.18,2.61,0,.3,0,.48.06.53.23.48.36.66.89.66.3,0,.54,0,.71-.06.41-.06.59-.06.89-.06.66,0,1.01.06,2.15.06.41,0,.71.06,1.14.06.36,0,.71-.06,1.07-.18.05-.06.18-.06.36-.06s.23.06.23.23c0,.36-.23.78-.71,1.31-.89,1.01-1.72,1.07-2.68,1.25h-3.52c-.18.18-.3.41-.41.66-.18.42-.36,1.01-.36,1.72v.71c0,.96-.12,1.37-.12,2.26,0,.3,0,.66.06,1.07,0,.41.06.71.06,1.13,0,1.01-.12,1.96-.12,2.68,0,.3,0,.53.06.66.18,1.13.23,1.25.23,2.15v1.19c0,.48,0,.96.18,1.67.23,1.37,0,1.49.48,2.61.48.96,1.37,2.02,3.04,2.43.3.06.66.06.89.06,1.14,0,1.72-.41,2.44-.66,1.01-.42,1.49-.78,2.03-1.19.3-.18.54-.23.71-.23.24,0,.48.12.71.36.06.06.06.12.06.23,0,.66-1.25,1.72-3.45,2.91-1.73.96-3.22,1.42-5.3,1.42-1.19,0-3.4-.3-4.77-1.24-1.72-1.13-2.51-2.02-2.8-3.03-.41-.89-.41-1.78-.48-2.97-.06-.96-.18-2.15-.18-3.27.06-.66.12-2.2.3-2.68,0-.89-.23-1.85-.23-2.97,0-.96.3-2.02.3-3.03,0-.3,0-.53-.06-.71-.06-.41-.06-.83-.06-1.31v-1.9c-.06-.23-.36-.36-.96-.36h-.89c-.89,0-1.37-.18-1.37-.48,0-.78,1.01-1.37,1.67-1.78.71-.48,1.43-.41,1.49-.66v-3.09h.01Z"/>
<path class="cls-2" d="M863.82,280.63c.89.3,1.55.18,2.33.83l.24.12c.71.48,1.07.71,1.07,1.67s-.71,1.6-.89,2.73c-.06.18-.06.3-.06.48s-.06.18-.06.23v.83c0,.71-.36.89-.78.89-.54,0-.78-.53-1.07-1.42-.66-1.97-1.55-2.97-3.7-3.87-.54-.3-1.19-.41-1.85-.41-.41,0-.71.06-.96.18-.71.23-1.6.66-2.15,1.37-.41.53-.66.96-.66,1.6,0,.23.05.48.18.71.41.78.96,1.24,1.91,1.78.96.66,1.72,1.13,2.38,1.42.66.23,1.49,1.49,2.26,1.67.71.18,1.55.41,2.08.71.54.23.78.83,1.43,1.37.71.48,1.6,1.19,2.08,1.96.48.89,1.01,1.42,1.01,2.79,0,2.08-.89,4.16-1.78,5.11-.78,1.01-1.07,1.37-2.08,2.08-1.01.78-2.44,1.13-3.15,1.42-.71.3-4.46.53-4.94.53s-2.44-.36-4.17-1.01c-1.72-.66-2.44-1.42-2.97-1.72-.48-.3-1.37-1.6-1.43-2.08,0-.66.41-.89,1.14-1.78.89-.96,1.6-2.08,2.03-2.08.48,0,.71.42,1.01,1.19.23.78.96,1.49,1.49,2.02.48.66,1.19,1.49,1.96,1.78,1.73.66,2.38,1.24,3.99,1.24.23,0,.48-.06.71-.06.89-.06,1.91-.53,2.56-1.42.66-.77.89-1.72.89-2.61,0-.83-.18-1.42-.53-1.72-.66-.66-1.25-1.49-2.15-1.9-.96-.41-2.56-1.37-3.1-1.55-.66-.18-1.37-1.55-2.26-1.72-.89-.23-2.03-.6-2.8-1.07l-.23-.18c-.71-.48-1.49-1.07-2.15-1.96-.54-.78-.78-1.6-.78-2.61,0-.78.18-1.55.48-2.38.71-1.72,2.15-2.68,3.27-3.57.96-.89,2.8-1.24,3.7-1.49.96-.18,2.74-.48,3.1-.48,1.37,0,2.51.12,3.4.36Z"/>
<path class="cls-1" d="M887.46,266.6c1.01-.89,1.07-1.19,1.73-2.15.36-.48.71-.71,1.14-.71s.71.18.89.53c.3.48.84,1.01,2.44,1.42.71.18,1.55.36,2.44.36.41,0,.78-.06,1.19-.12.48-.06.84-.12,1.14-.12.66,0,1.14.12,2.03.12,1.14,0,2.51.12,3.75.12h.96c1.14,0,2.38.18,3.52.18.41,0,.66,0,.83-.06,1.14-.18,3.15-.23,3.99-.42.41-.18,1.61-.23,2.56-.23.66,0,1.19,0,1.43.18.23.12.36.3.36.53,0,.53-.48,1.37-1.14,2.26-.89,1.19-1.07,2.43-1.96,2.61-.89,0-1.07-.71-1.49-1.49-.41-.78-.78-.83-2.92-1.07-.54-.06-.96-.06-1.37-.06-1.14,0-1.55.18-2.08.18h-.66c-.66,0-1.14.12-1.14,1.31,0,1.42-.71,2.56-.71,3.03,0,.06.06.12.06.18.18.36.36.66.36,3.33.06,1.9.06,3.21.06,4.34v1.24c-.06,1.25-.06,2.38-.06,3.27,0,.71-.23,1.42-.23,1.9,0,.18,0,.3.06.36.18.53.41,2.73.41,3.75,0,.66.06,2.2.06,3.69,0,.71,0,1.37-.06,2.02-.12,1.13-.18,2.02-.18,2.61,0,.42,0,.78.06.96.18.89.3,2.02.54,2.91,0,1.01-1.49,1.97-2.51,2.38-1.14.48-1.85,1.13-2.56,1.6-.18.18-.48.23-.78.23-.54,0-1.01-.42-1.01-1.6,0-1.6-.48-4.58-.48-5.52,0-1.01.41-4.94.41-6.43s.12-2.56.12-3.92c0-.78.06-1.42.06-2.08,0-.42.06-.66-.12-1.07-.06-.41-.12-1.07-.12-2.02,0-1.6.12-3.57.3-3.87.06-.18.12-.36.12-.53,0-.66-.18-1.42-.36-1.9-.18-.66-.12-1.55-.18-2.5v-6.36c-.06-.53-.3-1.42-2.15-1.42s-2.26-.06-2.92-.06c-.54,0-1.67.18-2.8.18h-2.56c-.89,0-1.67,0-1.67-.42,0-.96.06-.77,1.19-1.67h.03Z"/>
<path class="cls-1" d="M921,294.66c.18.48.36,2.38,1.01,3.57.66,1.13,2.09,2.79,2.86,3.27.78.53,2.21,1.24,3.45,1.55,1.14.23,2.92.71,3.93.71,1.25-.06,2.98-.6,3.63-.89.66-.23,1.67-.78,2.08-1.19.41-.42.96-1.24,1.6-1.24.41,0,.84.41.84,1.07,0,.3-.12.53-.36.83-.48.48-.96.96-1.91,1.6-.78.59-1.01.78-2.56,1.55-1.49.78-3.7,1.24-5.36,1.42-.89.06-1.43.12-2.08.12s-1.19-.06-1.73-.12c-1.14-.18-2.08-.3-2.97-.3-.71,0-1.01-.48-2.15-.96-1.14-.48-2.74-1.07-4.11-2.5-1.31-1.31-2.26-4.28-2.44-5.35-.3-1.13-.23-2.15-.3-3.03-.06-.41-.06-.71-.06-1.13,0-.66.06-1.24.23-1.78.3-.96.54-2.2,1.01-3.45.48-1.19,1.96-2.91,2.68-3.62.71-.66,1.67-1.37,2.56-2.26,1.01-.89,2.51-1.6,4.47-2.13.96-.23,2.08-.3,3.1-.3s1.85.06,2.51.06c1.14,0,2.26.3,3.04.71.66.41,1.78,1.13,2.26,1.67.48.48,1.14,1.6,1.6,2.5.3.66.54,1.67.54,2.32,0,.18,0,.36-.06.42-.18.48-.3,2.26-.96,2.73-.53.53-.48.23-1.14.89-.66.48-3.93.83-4.89.83h-4.77c-1.37,0-1.25.06-2.62.23-.54.06-1.14.06-1.78.06h-1.14c-.06.78-.06,1.42-.06,1.85v.3ZM933.39,286.81c0-1.72-.54-2.86-1.19-3.57-.66-.71-.96-.78-1.6-1.07-.18-.06-.54-.12-.96-.12-.48,0-.96.06-1.37.12-.78.18-1.37.36-2.56.78-1.25.41-1.91,1.6-3.04,3.45-1.01,1.6-1.25,2.61-1.43,3.87,2.08,0,3.75-.06,4.77-.06.78,0,1.49.18,2.15.18.23,0,.41,0,.54-.06.66-.3,1.96-.18,2.86-.42,1.85-.48,1.85-1.96,1.85-3.09h0Z"/>
<path class="cls-1" d="M967.23,288.42c0,.41-.23.83-.66.83s-.83-.18-.89-.71c-.06-.53-.54-.78-.78-1.42-.16-.44-.45-.97-.89-1.6-.41-.71-.59-.89-1.14-1.19-.66-.3-1.07-1.01-1.73-1.31-1.14-.48-2.26-.59-3.15-.59-.54,0-.96.06-1.37.12-1.14.18-2.33.89-3.34,1.67-1.19.96-1.73,2.08-2.15,3.69-.24.78-.12.6-.3,1.37-.18.78-.23,1.6-.3,2.5,0,.41-.06.83-.06,1.24,0,.48.06,1.07.18,1.78.23,1.24.53,1.37.78,2.26.23,1.01.48,1.55,1.25,2.91.89,1.37,2.08,1.6,2.51,2.08.41.42,1.19,1.01,2.08,1.24.78.23.84.53,2.44.78.41.06.66.12,1.07.12,1.01,0,1.91-.3,2.44-.36.48-.18,1.73-.23,2.2-.66.48-.41,1.73-.83,2.38-1.24.18-.18.41-.23.66-.23.3,0,.48.12.66.3.06.23.12.41.12.48,0,.41-.23.66-.48.96-.3.48-1.31.83-1.78,1.24-.41.41-.71.36-2.08,1.13-1.37.78-2.97,1.13-5.78,1.31-.48,0-.89.06-1.31.06-2.08,0-3.52-.36-4.17-.66-.78-.3-1.61-.12-2.62-.66-.96-.48-.41-.66-1.43-1.01-.96-.3-1.85-1.13-2.51-1.85-.66-.66-.84-1.01-1.91-2.73-.89-1.42-1.07-3.69-1.07-5.52.06-2.56.18-3.75.59-4.94.3-1.19,1.96-3.69,2.38-4.1.3-.3,2.38-2.26,2.92-2.61.78-.53,1.31-.41,2.74-1.42,1.37-.96,2.51-.78,3.88-1.19.59-.18,1.25-.23,1.91-.23s1.31.06,1.85.12c.23,0,.48.06.66.06,2.08.18,3.4.36,3.93.66.78.53,1.37.18,1.85.66.41.3.71.48.71,1.13,0,1.67-.41,2.38-.41,4.1,0,.48.12,1.07.12,1.49v-.06Z"/>
<path class="cls-1" d="M998.93,306.37c-.96.3-1.91.53-2.8.53-.41,0-.66.06-1.07-.12-.89-.3-1.01-.83-1.01-3.27,0-1.25-.3-2.26-.3-3.15,0-1.9-.06-2.97-.06-3.92,0-.66.06-1.19.12-1.6.06-.3.12-.66.12-.96,0-.53-.06-1.07-.06-1.55,0-.3,0-.48.06-.6.06-.3.18-.78.18-1.01,0-.3-.18-1.72-.23-2.86-.06-.96-.54-2.5-1.91-3.27-1.37-.78-.83-.78-2.38-1.07-.18-.06-.41-.06-.71-.06-1.25,0-2.2.66-3.57,1.6-1.6,1.19-1.91,2.2-2.56,2.91-.66.89-1.14,1.49-1.37,3.62-.23,1.85-.36,2.68-.36,4.1v1.25c.06,1.37.12,2.2.12,4.28,0,1.19.71,2.02.71,2.91,0,.41-.12.71-.36.96-.41.42-1.73.78-3.58,1.72-1.6.89-2.2,1.13-2.51,1.13-.06,0-.12,0-.18-.06-.18-.18-.23-.53-.23-1.19,0-.3,0-.53.06-.96v-3.27c0-1.6.36-2.79.36-4.51-.18-1.42-.23-2.68-.3-4.16,0-1.37,0-2.15.18-3.98.06-.48.06-1.01.06-1.49,0-.78-.06-1.55-.06-2.26,0-.53.06-1.13.12-1.67.06-.42.12-.78.12-1.19,0-1.19-.23-2.31-.23-3.45,0-.89.05-1.13.05-1.55,0-.66-.05-1.31-.05-2.02,0-.53.05-1.07.12-1.72.06-.42.06-.71.06-1.01,0-.89-.18-1.31-.18-2.2.05-1.19.12-1.78.12-2.26,0-.66-.06-1.13-.06-1.78,0-1.49-.66-2.5-.66-2.97,0-.71.48-.48,1.96-1.42,1.49-.89,1.91-.83,3.09-1.49.41-.18.66-.23.71-.23.66,0,.96.71,1.25,1.9.18.53.23,1.07.23,1.72,0,.89-.12,1.78-.18,2.43v5.06c0,1.24-.23,1.42-.23,1.85,0,.18.06.36.12.78.12.42.18.83.18,1.19,0,.78-.18,1.6-.18,2.97,0,2.08.06,6.48.06,6.78,0,.23,1.01-1.24,2.86-2.68,1.85-1.42,3.63-2.2,4.77-2.26,1.14-.06,1.91-.78,3.1-.78,1.37,0,3.22.41,4.47,1.31,1.31.83,3.34,3.45,3.34,7.31,0,1.37.06,2.43.06,3.45,0,.83-.06,1.67-.18,2.5-.18.48-.12.96-.12,1.37,0,1.37.3,2.43.3,3.33,0,.71-.12,1.37-.12,2.02,0,.48.06.89.23,1.19.48.96,1.01,1.72,1.01,2.5,0,.89-1.07.89-2.51,1.31v-.04Z"/>
<path class="cls-1" d="M1029.36,307.08c-.89,0-1.19-.3-1.49-2.13-.23-1.19-.36-2.73-.36-4.1,0-.83.06-1.6.18-2.26v-.3c.12-.66.18-1.13.18-1.42,0-.42-.05-.89-.05-1.78-.06-1.42-.12-2.38-.12-3.51v-.78c.06-.89.12-1.49.12-2.15,0-.41-.06-.83-.12-1.37-.23-1.42-.66-2.2-1.31-2.97-.66-.78-1.85-1.13-2.62-1.31-.96,0-2.92,1.19-3.58,1.55-1.37.66-3.04,1.78-3.81,2.91-.78,1.13-1.43,2.38-1.61,3.75-.23,1.42-.41,2.97-.41,4.64s.06,2.2.06,2.91c0,.42,0,.66-.06,1.07,0,1.85.23,3.69.41,4.58,0,1.13-.96,1.67-1.6,1.96-.41.18-.48.18-.71.18s-.54,0-1.07.18c-1.01.23-2.03.59-2.56.59-.12,0-.18,0-.24-.06-.23-.18-.36-.48-.36-1.01,0-.23,0-.6.06-1.01.18-1.01.3-2.15.3-3.75v-1.78c0-1.37-.05-2.38-.05-3.51,0-2.38.18-2.5.18-4.94s.23-1.6.23-2.86c0-.23.06-.48.06-.71,0-1.13-.18-2.02-.36-2.91-.18-1.01-.66-1.72-.66-2.61,0-.42.18-1.07,1.07-1.25,1.67-.18,3.4-.89,4.41-.89s1.37.53,1.37,1.07c0,1.25.12,2.02.12,2.91-.06.71-.06,1.37-.06,1.78v.71l.89-.89,1.85-1.6c1.37-1.07,1.67-1.07,2.8-1.85,1.19-.78,2.03-1.13,3.75-1.78.89-.3,1.85-.48,2.92-.48,1.14,0,2.15.23,3.1.66,1.67.78,2.86,1.49,3.57,3.33.72,1.85.72,2.91.72,4.64,0,1.85-.06,2.2-.06,3.57,0,1.01-.41,1.78-.41,2.68,0,.23,0,.41.06.53.18.48.12.96.12,1.37v4.94c0,1.24.18,1.85.59,2.32.23.41.36.78.36.96,0,.53-.48.83-1.01,1.07-1.37.66-3.88,1.07-4.77,1.13h0Z"/>
<path class="cls-1" d="M1051.76,280.45c1.01-.41,2.44-.3,3.45-.78.36-.18.84-.23,1.37-.23.89,0,1.14.18,1.78.36,1.01.36,5.48,1.13,6.37,2.32.83,1.31,1.49,1.49,2.26,2.73.89,1.37,1.25,2.56,1.67,5.11.06.78.12,1.37.12,2.02,0,1.6-.23,2.73-.66,4.1-.53,1.85-.78,3.09-1.25,3.8-1.91,3.33-3.63,3.92-5.18,4.81-1.61,1.13-2.74,1.67-3.93,1.9-1.14.3-1.6.42-2.97.42s-5.12-.23-7.15-1.31c-1.85-.96-1.96-1.24-3.04-2.32-1.19-1.13-2.21-2.5-2.68-3.62-.24-1.13-.78-3.33-.78-5.24.06-1.37,0-2.43.41-4.28.3-1.85,1.32-2.97,2.21-4.4.96-1.6,2.92-3.09,3.88-3.87,1.01-.89,2.98-1.07,4.11-1.55h0ZM1047.65,287.29c-.41,1.19-.54,2.61-.54,4.7s.3,4.28.71,5.41c.41,1.13,1.43,2.79,2.08,3.51.41.41,2.26,2.43,2.98,2.56.96.41,1.96.96,2.74.96,1.6,0,2.33-.36,3.27-.78.78-.48,1.07-.18,1.91-1.19.89-1.01,1.49-1.72,1.78-3.45.23-1.37.84-2.32.84-3.51,0-.48,0-1.01-.06-1.67-.18-2.32-.96-5.06-1.55-5.82-.66-.71-.96-2.02-1.85-2.97-.89-1.13-1.72-1.67-2.68-2.31-.89-.66-2.56-.48-3.45-.48-1.14,0-1.67.6-2.86,1.31-2.2,1.37-3.04,2.56-3.34,3.75l.02-.02Z"/>
<path class="cls-1" d="M1080.12,306.2c-1.01.36-2.62,1.78-3.52,1.78s-.84-1.13-.84-1.67v-1.55c-.06-.42-.06-.78-.06-1.19,0-1.24.12-2.68.12-3.8-.06-1.42-.48-2.86-.48-4.22.06-1.49.12-2.02.12-2.91,0-2.86.18-5.77.18-7.37,0-.53.12-.59.12-1.24,0-.41,0-.89-.18-2.26-.05-.53-.12-1.01-.12-1.49,0-1.19.12-2.13.18-2.43.18-.71.24-1.19.24-1.85,0-.3.05-.66-.12-1.07-.18-.41-.23-.89-.23-1.31,0-.53.12-1.07.12-1.78,0-1.13.06-3.51-.12-4.28-.18-.77-.78-2.13-.78-2.79,0-.96,1.01-1.42,1.67-1.85,1.01-.53,2.15-.42,3.15-1.07.54-.3,1.01-.42,1.31-.42.36,0,.59.18.78.6.12.48.18.96.18,1.37,0,.66-.06,1.19-.06,3.57,0,.48.06,1.01-.12,1.9-.3,1.9-.3,1.72-.3,3.15,0,1.13.36,1.9.36,3.8,0,.41,0,.89-.06,1.42-.18,1.42-.12,2.5-.12,3.62s0,2.08-.06,3.33c-.18,1.85-.18,3.21-.18,5.77,0,1.19.18,1.55.18,2.2,0,.71-.12,1.42-.12,2.08,0,1.13,0,2.43.18,3.57.06,1.19.12,2.43.12,4.16,0,.78.89,1.78.89,2.68,0,1.01-1.19,1.07-2.44,1.55Z"/>
<path class="cls-1" d="M1098.59,280.45c1.01-.41,2.44-.3,3.45-.78.36-.18.83-.23,1.37-.23.89,0,1.14.18,1.78.36,1.01.36,5.48,1.13,6.37,2.32.83,1.31,1.49,1.49,2.26,2.73.89,1.37,1.25,2.56,1.67,5.11.06.78.12,1.37.12,2.02,0,1.6-.23,2.73-.66,4.1-.53,1.85-.78,3.09-1.25,3.8-1.91,3.33-3.63,3.92-5.18,4.81-1.61,1.13-2.74,1.67-3.93,1.9-1.14.3-1.61.42-2.98.42s-5.12-.23-7.15-1.31c-1.85-.96-1.96-1.24-3.04-2.32-1.19-1.13-2.21-2.5-2.68-3.62-.24-1.13-.78-3.33-.78-5.24.06-1.37,0-2.43.41-4.28.3-1.85,1.31-2.97,2.2-4.4.96-1.6,2.92-3.09,3.88-3.87,1.01-.89,2.98-1.07,4.11-1.55h0ZM1094.48,287.29c-.41,1.19-.54,2.61-.54,4.7s.3,4.28.71,5.41c.41,1.13,1.43,2.79,2.08,3.51.41.41,2.26,2.43,2.98,2.56.96.41,1.96.96,2.74.96,1.6,0,2.33-.36,3.27-.78.78-.48,1.07-.18,1.91-1.19.89-1.01,1.49-1.72,1.78-3.45.23-1.37.84-2.32.84-3.51,0-.48,0-1.01-.06-1.67-.18-2.32-.96-5.06-1.55-5.82-.66-.71-.96-2.02-1.85-2.97-.89-1.13-1.73-1.67-2.68-2.31-.89-.66-2.56-.48-3.45-.48-1.14,0-1.67.6-2.86,1.31-2.2,1.37-3.04,2.56-3.34,3.75l.02-.02Z"/>
<path class="cls-1" d="M1126.58,308.93c-.06-.06-.66-.36-.72-.36-1.37-.3-2.68-1.13-2.68-2.26s.06-2.02,1.73-2.97c.96-.66,2.97-1.49,3.1-1.6-.06,0-1.61-.6-3.27-1.97-1.61-1.37-2.21-2.5-2.92-3.62-.66-1.13-.54-2.56-.71-3.33-.06-.06-.06-.3-.06-.6,0-1.42.59-4.4,1.55-6,1.14-1.85,2.33-2.97,3.52-3.69.96-.66,2.15-1.31,3.27-1.6,1.61-.23,3.27-.66,5.18-.89,2.33,0,4.59.3,5.96.96,1.43.66,1.9.53,3.09.83.41.12.84.18,1.37.18.41,0,.84-.06,1.49-.06.96,0,1.96-.71,2.03-.78.06-.06.18-.12.3-.12.41,0,.66.41.66.89,0,.18-.06.36-.12.41-.41.78-1.07,1.42-2.21,1.85-.78.3-.96.66-2.33.83.66.48.23.6.89,1.67.48.89.89,3.27.89,4.99,0,1.6-.48,3.15-1.14,4.58-.66,1.42-2.33,2.68-2.86,3.21-.41.53-1.96,1.31-2.86,1.72-.78.48-3.52,1.31-5.25,1.31-.3,0-.54,0-.71-.06-.54-.12-2.68-.12-3.45-.12-.89,0-1.78.78-1.85,1.31,0,.3.12.48.89.66.89,0,1.73.48,2.86.48,2.33,0,2.97.06,3.45.23.54.3,1.19.48,1.91.48.23,0,.41-.06,1.07-.06.96,0,2.33.3,3.1.6,2.44.89,3.58,1.49,4.52,3.92.18.42.23,1.07.23,1.72,0,1.24-.23,3.27-1.14,4.28-1.37,1.67-1.91,2.56-2.92,2.97-.96.41-.89.71-1.91,1.13-.71.3-3.52,1.19-6.44,1.37-.53.05-1.07.05-1.55.05-2.44,0-5.72-.53-7.21-.95-2.92-1.01-4.59-3.33-4.59-4.76s.3-1.85.59-2.61c.54-1.24,1.96-2.08,2.62-2.73.48-.41,1.6-1.01,2.56-1.49h.05ZM1141.6,311.54c-1.78-1.31-2.26-.66-4.34-1.42-2.38-.77-4.47-.41-5.89-.71-.66-.18-1.67-.3-2.56-.3-.41.53-1.19,1.13-1.85,1.78-.54.66-1.01,1.49-1.01,2.5,0,.18.06.36.06.53.18,1.19.59,1.37,1.55,2.15.71.65,1.78,1.07,5.12,1.54.48.06.89.3,1.31.3,1.19,0,2.51-.06,3.52-.06,3.33,0,5.48-2.02,5.48-3.87,0-.89-.23-1.55-1.37-2.43h-.01ZM1128.43,285.69c-.44.99-.76,2-.96,3.03,0,.48-.23,1.01-.23,1.72,0,1.24.3,2.5.48,3.21.24.89.71,2.56,1.01,3.21.3.66,1.19,1.72,1.37,1.96.18.3,1.78,1.13,3.63,1.55.41.06.66.12.96.12.66,0,1.13-.18,2.08-.59,1.43-.66,2.51-1.37,3.22-3.03.66-1.6.54-2.02.71-3.62.06-.89.3-1.67.3-2.56,0-.48-.05-.96-.23-1.42-.41-1.24-.59-2.68-1.37-3.8-.89-1.37-1.73-2.02-2.74-2.73-.66-.42-1.19-.36-2.08-.36-.41,0-.78-.18-1.49-.18-.41,0-.96.12-1.55.3-1.85.71-2.44,1.85-3.1,3.21v-.02Z"/>
<path class="cls-1" d="M1175.2,280.09c.96-.36,1.78-.53,2.56-.53.59,0,.89.41.89,1.19,0,.36-.06.71-.18,1.13-.41,1.6-1.43,3.98-2.56,5.88-1.25,1.9-.89,1.85-1.55,2.79-.71,1.01-.23.66-.71,1.72-.41,1.01-1.25,2.43-2.15,3.87-.96,1.42-.96,2.26-2.09,4.22-1.25,2.08-1.25,2.5-2.26,4.64-.89,2.13-.71,1.72-1.37,3.87-.66,2.08-1.43,3.45-2.08,4.81-.66,1.42-.96,1.78-1.25,3.15-.3,1.42-.36.71-.71,2.2-.23,1.49-.71,1.6-2.68,2.15-1.61.41-2.26.65-2.92.65-.18,0-.18-.06-.36-.06-.41-.06-.66-.23-.66-.53s.18-.71.48-1.25c.41-.65,2.09-1.67,3.1-3.98.41-.78,1.01-1.78,1.67-2.68.66-.89.71-1.85,1.43-3.09.66-1.37.41-2.2.66-3.62.12-.59.18-1.07.18-1.37,0-.48-.12-.71-.3-1.13-.41-.71-.96-2.68-1.61-3.8-.66-.96-1.01-2.43-1.43-3.33-.48-.71-.83-1.42-1.37-2.32-.66-.89-.83-1.49-1.37-2.73-.48-1.13-1.14-2.68-1.55-3.39-.54-.89-.12-.96-1.25-2.26-1.01-1.19-2.51-2.13-2.51-2.91,0-1.01,1.78-1.42,4.11-2.56,1.43-.78,1.43-.89,2.26-.89.66,0,1.49,1.07,2.15,2.2.66,1.13,1.31,2.91,1.78,3.87.48,1.07.06,1.49.66,2.08.54.89.41,1.42,1.31,2.68.9,1.26,1.49,3.09,2.15,4.76l1.55,3.57c.06-.23.48-2.2,1.37-3.45.89-1.37,1.55-2.97,2.03-4.1,0-.6,1.25-3.09,1.55-3.8.66-1.85.66-2.5.83-3.27.18-.48.12-.83.12-1.07,0-.3,0-.48-.06-.6-.18-.48-.59-.53-.59-1.42,0-.78,1.6-.96,2.74-1.24l-.03-.03Z"/>
</g>
<g>
<path class="cls-2" d="M876.4,101.8c1.46.56,1.53,1.78,1.42,3.05-.05.61-.17,1.25-.44,1.78-5.16,10.02-12.38,17.96-22.99,22.42-.54.24-1.21.2-1.82.29-9.53-.02-19.07-.03-28.6-.03-.78,0-1.68-.22-2.22.46-.19.24-.27.54-.27.85,0,7.05-.05,14.12.04,21.17.08,6.17.25,12.35.54,18.51.32,7.05,3.65,11.12,10.41,13.12,4.01.71,6.23.71,10.41,0,9.1-1.73,17.18-5.9,25.13-10.35,16.27-9.13,32.52-18.34,48.84-27.35,2.44-1.36,3.43-2.73,3.41-5.64-.12-34.59-.09-69.16-.09-103.75,0-1.61.12-3.22,0-4.81-.46-5.36,1.26-9.98,4.65-14.03,5.84-6.95,12.43-12.96,20.85-16.71,1.15-.42,1.8-.42,2.97.12,2.5,1.44,2.63,3.97,2.7,6.39.1,3.58-.07,7.17-.12,10.74-.59,50.16-.42,100.32-.46,150.49,0,2.86.29,5.66,1.32,8.35,1.19,3.08,3.46,4.69,6.71,5.08,3.29.41,6.35-.19,9.29-1.81,6.76-3.71,12.96-8.17,18.87-13.08,10.77-8.97,20.41-19.1,30.07-29.18,6.54-6.81,13.53-13.03,21.36-18.32,5.35-3.61,10.99-6.63,17.2-8.47,6.06-1.53,9.88-1.2,14.08-.36,4.55.68,8.39,2.85,11.97,5.58,6.8,5.19,11.85,11.86,16.17,19.15,2.96,5,5.72,10.1,8.23,15.34,2.62,5.47,5.66,10.69,8.78,15.88,2.13,3.51,4.54,6.78,7.63,9.51,5.86,5.19,11.94,5.86,18.8,2.15,3.4-1.83,6.4-4.22,9.19-6.88,3.92-3.76,7.76-7.63,11.62-11.47,1.94-1.92,3.97-3.71,6.38-5.05,1.92-1.07,3.91-1.46,6.06-.76,3.46,1.1,4.65,3.14,3.95,6.76-.65,3.34-2.05,6.36-3.85,9.17-10.85,16.93-25.56,29.33-44.19,37.01-3.53,1.46-7.2,2.47-10.99,3.05-3.99.68-6.84,1-11.72-.05-2.33-.58-4.3-1.83-6.2-3.22-6.86-5.03-12.33-11.34-17.01-18.39-3.48-5.25-6.49-10.78-9.65-16.22-3.35-5.76-6.84-11.44-11.21-16.51-3.41-3.97-7.18-7.49-12.53-8.71-3.13-.68-5.35-.36-8.24.05-4.96,1.05-9.22,3.44-13.07,6.66-11.95,9.98-23.84,20.05-35.86,29.96-9.07,7.47-18.78,14.1-28.46,20.73-7.5,5.42-15.79,7.34-15.79,7.34-3.82.95-9.22.63-11.65-.1-8.98-2.1-14.08-8.03-16.39-16.64-1.05-3.93-1.49-7.95-1.53-12.03-.03-5.29-.05-10.56-.07-15.85.05-.78-.57-1.1-1.25-.71-19.55,10.29-38.6,21.47-57.96,32.08-10.83,5.95-22.21,10.51-34.34,13.15-1.22.27-2.72.51-4.48.71-3.72.64-7.22.64-11.14,0-11.67-1.85-17.97-10.35-19.33-22.15-.27-2.32-.32-4.68-.32-7.03-.01-51.03,0-102.04-.07-153.06,0-4.56,1.24-8.49,3.99-12.03,4.93-6.32,10.97-11.39,17.8-15.51,1.36-.83,2.84-1.51,4.47-1.71,2.84-.36,4.14.59,4.52,3.52.22,1.71.17,3.46.17,5.19-.07,29.15-.15,58.31-.2,87.46,0,.86.03,1.75.07,2.61.05,1.29,1.17,2.29,2.46,2.2.24,0,.46-.03.7-.03,17.08,0,34.15-.03,51.23-.05l.04.02Z"/>
<path class="cls-2" d="M723.16,213.89c-1.68-1.27-1.81-3.19-1.92-5.02.07-2.83-.03-5.46.07-8.22,0-5.71.29-10.78.29-16.22.03-18.17.07-36.33-.03-54.48-.01-3.9,1.03-7.3,3.25-10.39,4.97-6.95,11.43-12.29,18.75-16.59,1.87-1.1,3.84-1.69,6.15-1.24,1.7.34,2.33,1.24,2.48,2.69.15,1.34.25,2.71.22,4.07-.44,25.45-.13,50.91-.12,76.36,0,4.71-1.14,8.81-4.12,12.34-5.79,6.83-12.23,12.95-20.58,16.64-1.51.8-2.79,1.44-4.43.07v-.02Z"/>
<path class="cls-2" d="M685.32,124.85c-.03-.51-.03-1.03-.15-1.53-2.16-9.07-8.22-14.4-16.69-17.4-.12-.05-1.41-.42-3.11-.83h-.05c-3.35-.53-6.2-.53-9.68-.05h-.14c-2.63.34-4.87,1.58-6.96,3.13-5.72,4.25-10.29,9.58-14.08,15.57-.92,1.46-1.67,3.02-2.02,4.75-.61,3.05.09,4.83,2.82,6.07,1.75.8,3.52,1.54,5.52,1.85,3.5.53,7.05.98,10.36,2.39,4.93,2.08,6.28,4.83,4.84,10.02-.92,3.25-2.61,6.12-4.57,8.83-6.3,8.81-13.91,16.34-22.59,22.81-3.41,2.54-7.25,4.19-11.36,5.27-1.61.42-3.28.71-4.91,1.05-.03,0-4.06.66-8.3,0-3.77-.83-6.98-2.78-9.95-5.15-4.38-3.51-7.98-7.74-11.21-12.29-7.17-10.07-15.01-19.61-22.64-29.33-5.6-7.15-12.3-13.18-19.61-18.52-3.06-2.22-6.34-4.08-9.99-5.19-1.88-.63-3.13-.83-3.13-.83-2.26-.42-3.21-.42-5.43-.42-.07,0-2.54,0-4.31.49-5.23,1.15-9.3,4.27-13.06,7.85-4.04,3.85-7.4,8.27-10.62,12.8-4.14,5.83-8.17,11.73-12.33,17.54-5.24,7.34-10.97,14.27-18.05,19.98-5.69,4.59-11.65,8.73-18.78,10.81-4.16,1.41-9.39.7-12.57.37-4.45-.63-8.4-2.08-12.34-3.68-6.57-2.66-12.47-6.51-18.27-10.51-5.08-3.51-10.04-7.22-15.42-10.25-4.91-2.78-9.91-5.39-15.57-6.39-2.67-.59-4.57-.8-4.57-.8-3.5-.44-2.05-.44-6.05-.44-.05,0-2.87,0-6.03.44-2.5.41-5.01.66-7.45,1.24-7.44,1.71-14.01,5.32-20.33,9.44-4.65,3.03-9.17,6.25-13.92,9.13-9.63,5.81-19.78,10.35-30.99,12.22-.03,0-.07.02-.1.02-3.89.53-6.44.53-10.29-.08-.02,0-.05,0-.07-.02-9.09-2.25-12.57-9.24-12.46-16.59.08-6.15,2.14-11.73,6.62-16.05,10.12-9.78,22.16-15.78,36.14-17.83,9.59-1.29,18.82-.8,18.87-.8,10.26.66,20.22,2.46,29.24,7.78.63.37,1.95,1.12,3.48,1.58.8.24,2.16.36,2.97.24.81-.12,1.46-.24,2.12-.56,9.29-4.19,15.98-11.12,21.75-19.34,1-1.44,1.44-3.12,1.51-4.9.13-3.58.47-7.17.44-10.74-.26-32.13.19-64.26.26-96.41,0-1.36.03-2.73-.17-4.07-.41-2.54-1.87-3.58-4.47-3.29-1.77.2-3.31,1-4.79,1.91-5.72,3.52-10.95,7.66-15.44,12.68-4.13,4.61-6.16,9.86-6.1,16.2.24,20.52.19,41.03.24,61.55,0,2.56.08,5.12-.65,7.61-.02.08-.05.17-.1.24-.53.78-1.36.76-2.19.76-9.08-.3-15.76-1.27-24.49-.17h-.1c-4.87.53-9.63,1.64-14.33,2.92-27.29,7.37-49.5,22.4-66.81,44.62-5.72,7.34-10.61,15.35-12.97,24.34-1.36,5.17-6.49,8.3-14.13,8.63-4.02,0-7.64.02-11.65-.76-9.54-1.85-17.86-6.39-25.83-11.66-5.88-3.9-11.72-7.85-17.59-11.71-6.13-4.03-12.82-6.63-20.17-7.32h-.19.14c-5.72-.75-12.5-.93-17.24,0-3.41.68-6.76,1.49-10.02,2.88-5.82,2.47-11.14,5.78-16.37,9.25-6.35,4.24-12.68,8.52-19.55,11.93-6.42,3.19-12.97,5.97-20.12,7.1-3.96.61-8.1.93-11.95.03-5.94-1.24-10.8-4-12.46-10.22-2.21-8.22-.56-15.74,5.52-21.9,5.71-5.78,12.4-10.2,19.83-13.47,5.65-2.47,11.5-4.24,17.66-4.83.05,0,.1-.03.15-.03,13.86-2,21.82-1.36,36.53,2.64,3.84,1.59,7.74,3,11.39,5.02,3.23,1.78,6.4,1.59,9.46-.34,6.64-4.17,12.94-8.74,17.36-15.39,1.15-1.88,1.48-2.19,2.84-5.63.66-1.95-.2-3.3-1.78-4.49-2.38-1.78-4.84-3.39-7.46-4.8-6.98-3.76-14.49-5.78-22.31-6.74h-.1c-7.22-.53-14.23-.85-21.36.02-9.09,1.03-14.35,2.24-14.45,2.25-3.04.78-6.13,1.39-9.1,2.37-26.19,8.66-47.72,23.67-63.32,46.64-2.92,4.3-5.47,8.81-7.86,13.42-3.12,6-5.08,12.35-5.52,19.08-.8,12.2,4.16,20.4,15.95,24.54,1.73.61,3.55.95,5.33,1.42.03,0,.07,0,.1.02,5.91.8,10.36,1.1,15.5,0,12.01-1.95,23.15-6.15,33.59-12.42,6.25-3.75,12.24-7.85,18.44-11.68,6.22-3.83,12.58-7.35,20.11-7.9,2.84-.22,5.09-.24,6.79.03,6.08.93,11.12,4.61,16.2,7.88,6.86,4.42,13.59,9.05,20.39,13.52,4.55,2.98,9.14,6.44,14.2,8.49,3.97,1.59,9.36,3.22,13.69,3.81,2.31.32,2.67.64,8.27.63,5.25-.03,7.3-.27,13.69-1.59,8.27-1.69,15.71-5.66,22.26-10.64,1.29-.98,2.39-2.22,4.09-2.88.39-.15.85,0,1.05.36,4.28,7.66,11.48,10.96,19.87,12.39,2.65.46,5.47.46,5.52.46,4.42,0,3.82,0,7.88-.44h.08c3.12-.29,6.1-1.27,9.12-2.07,12.19-3.19,23.08-9.15,33.62-15.85,4.06-2.58,8.05-5.27,12.16-7.74,4.86-2.93,10-5.25,15.64-6.32,1.04-.29,6.44-.93,9.73-.15.03,0,.05,0,.08.02,4.62,1.1,8.76,3.27,12.7,5.83,6.32,4.1,12.53,8.35,18.8,12.54,5.76,3.85,11.53,7.68,17.97,10.3,4.87,1.98,8.88,3.52,14.93,4.47,2.6.34,5.4.63,9.22.63,5.09,0,6.67,0,10.49-.63,5.35-.75,9.66-2.46,14.4-5.03,10.87-5.93,21.33-12.44,30.65-20.69,8.44-7.46,16.47-15.3,24.47-23.22,2.89-2.86,5.99-5.54,9.03-8.25,5.26-4.71,10.17-4.86,16.22-.64,3.99,2.8,7.36,6.22,10.58,9.8,7.38,8.15,14.3,16.71,21.38,25.13,4.94,5.88,10.12,11.49,15.81,16.66,3.04,2.76,6.4,4.9,10.44,5.9.07.02,1.65.37,4.5.69,2.55.32,4.14,0,8.2-.69,2.82-.42,5.5-1.29,8.09-2.41,28.65-12.42,52.49-30.98,71.27-55.91,3.99-5.29,7.4-10.95,9.8-17.17.04-.1,1.22-3.29,1.28-3.46.9-2.71,1.59-5.46,1.7-8.32.19-1.27,0-3.32,0-3.51l-.05.08Z"/>
<path class="cls-1" d="M738.09,47.84c-7.4,0-13.79,6.15-13.79,13.54s6.2,13.57,13.61,13.57c3.21,0,5.91-.95,8.22-2.85v13.57c1.78-.42,3.79-.95,5.37-1.63v-22.84c0-7.39-5.99-13.37-13.4-13.37Z"/>
<path class="cls-1" d="M736.96,0c-24.04,0-43.64,19.73-43.64,43.72s18.97,44.18,44.27,43.23c-12.11-1.93-24.69-12.57-24.69-25.2,0-14,11.38-25.37,25.42-25.37s25.21,11.3,25.21,25.32v16.1c10.21-7.95,16.97-20.44,16.97-34.37,0-24-19.5-43.43-43.52-43.43h-.02Z"/>
</g>
</g>
</g>
</svg>
\ No newline at end of file \ No newline at end of file
No preview for this file type
...@@ -79,6 +79,10 @@ Default CSS ...@@ -79,6 +79,10 @@ Default CSS
--transition: .5s; --transition: .5s;
} }
.primary-text{
color: var(--mainColor);
}
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
background: #ffffff; background: #ffffff;
} }
...@@ -100,8 +104,10 @@ body { ...@@ -100,8 +104,10 @@ body {
color: var(--blackColor); color: var(--blackColor);
font-size: var(--fontSize); font-size: var(--fontSize);
font-family: var(--fontFamily); font-family: var(--fontFamily);
} }
.h1, .h1,
.h2, .h2,
.h3, .h3,
...@@ -154,6 +160,7 @@ p { ...@@ -154,6 +160,7 @@ p {
font-size: var(--fontSize); font-size: var(--fontSize);
margin-bottom: 15px; margin-bottom: 15px;
line-height: 1.7; line-height: 1.7;
text-align: justify;
} }
p:last-child { p:last-child {
...@@ -227,7 +234,7 @@ p:last-child { ...@@ -227,7 +234,7 @@ p:last-child {
/*section-title*/ /*section-title*/
.section-title { .section-title {
max-width: 720px; /* max-width: 720px; */
text-align: center; text-align: center;
position: relative; position: relative;
padding-bottom: 15px; padding-bottom: 15px;
...@@ -250,7 +257,7 @@ p:last-child { ...@@ -250,7 +257,7 @@ p:last-child {
} }
.section-title p { .section-title p {
max-width: 600px; /* max-width: 600px; */
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
margin-top: 12px; margin-top: 12px;
...@@ -2976,6 +2983,7 @@ What We Do Area CSS ...@@ -2976,6 +2983,7 @@ What We Do Area CSS
.what-we-do-content { .what-we-do-content {
padding-left: 10px; padding-left: 10px;
text-align: justify;
} }
.what-we-do-content .sub-title { .what-we-do-content .sub-title {
...@@ -3345,13 +3353,25 @@ Free Quote Area CSS ...@@ -3345,13 +3353,25 @@ Free Quote Area CSS
.free-quote-inner { .free-quote-inner {
position: relative; position: relative;
z-index: 1; z-index: 1;
background-color: var(--blackColor); background-image: url('../public/images/pagbanner.webp');
/* border-radius: 20px; */ background-size: cover;
padding-top: 50px; background-position: center;
padding-left: 50px; padding: 50px;
padding-right: 50px; overflow: hidden;
padding-bottom: 50px;
} }
/*
.free-quote-inner::before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: var(--mainColor);
opacity: 0.4;
z-index: -1;
} */
.free-quote-inner .section-title h2 { .free-quote-inner .section-title h2 {
color: var(--whiteColor); color: var(--whiteColor);
...@@ -4168,6 +4188,7 @@ Products Details Area CSS ...@@ -4168,6 +4188,7 @@ Products Details Area CSS
position: relative; position: relative;
top: -4px; top: -4px;
} }
.products-details-desc .social-share li a { .products-details-desc .social-share li a {
line-height: 1; line-height: 1;
font-size: 18px; font-size: 18px;
...@@ -6089,9 +6110,9 @@ Contact Area CSS ...@@ -6089,9 +6110,9 @@ Contact Area CSS
} }
.contact-content .single-contact-info-box .icon { .contact-content .single-contact-info-box .icon {
width: 80px; width: 60px;
height: 80px; height: 60px;
font-size: 40px; font-size: 30px;
position: relative; position: relative;
border-radius: 50%; border-radius: 50%;
text-align: center; text-align: center;
...@@ -7472,7 +7493,7 @@ Footer Area CSS ...@@ -7472,7 +7493,7 @@ Footer Area CSS
} }
.single-footer-widget .footer-contact-info ul li { .single-footer-widget .footer-contact-info ul li {
color: #d4d1d1; color: #000000;
margin-bottom: 10px; margin-bottom: 10px;
} }
...@@ -8160,22 +8181,26 @@ h3.sub-title { ...@@ -8160,22 +8181,26 @@ h3.sub-title {
height: 50vh; height: 50vh;
/* max-width: fit-content; */ /* max-width: fit-content; */
} }
.fuctional-areas p{
.fuctional-areas p {
text-align: justify; text-align: justify;
} }
.area-tab p{
.area-tab p {
text-align: justify; text-align: justify;
} }
.area-tab .react-tabs__tab-list .react-tabs__tab{
.area-tab .react-tabs__tab-list .react-tabs__tab {
background-color: #a99c8d78; background-color: #a99c8d78;
padding: 3px 12px; padding: 3px 12px;
margin-bottom: 10px; margin-bottom: 10px;
border-radius: 5px; border-radius: 5px;
font-weight: 100; font-weight: 100;
} }
.area-tab .react-tabs__tab--selected{
.area-tab .react-tabs__tab--selected {
background-color: red; background-color: red;
border-bottom: 1px solid var(--mainColor)!important; border-bottom: 1px solid var(--mainColor) !important;
} }
.area_expertise { .area_expertise {
...@@ -8739,17 +8764,49 @@ ul.pagination.custom-pagination { ...@@ -8739,17 +8764,49 @@ ul.pagination.custom-pagination {
display: block; display: block;
} }
.virtual-fiance-bg{ .virtual-fiance-bg {
background-image: url(/images/banner/back-ground.webp); background-image: url(/images/banner/back-ground.webp);
} }
.section-title-overview { .section-title-overview {
border-bottom: 1px solid var(--mainColor); border-bottom: 1px solid var(--mainColor);
margin-bottom: 10px; margin-bottom: 10px;
} }
.download-content h2{ .download-content h2 {
font-size: 4vh; font-size: 4vh;
color: var(--mainColor2)
}
.variant-box {
border-bottom: 2px solid #f8971f;
background-color: #feead2b8;
border-radius: 10px;
padding: 50px 25px;
display: flex;
flex-direction: column;
height: 100%;
transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
transform: translateY(0);
color: inherit; /* Keeps base color until hover */
} }
.variant-box:hover {
background-color: var(--mainColor);
transform: translateY(-8px);
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
color: #fff; /* Applies to body text by default */
}
.variant-box:hover h5
{
color: #fff;
}
.variant-box:hover p{
color: #fff;
}
@media (max-width: 1200px) { @media (max-width: 1200px) {
.client-servicing-grid { .client-servicing-grid {
grid-template-columns: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr);
...@@ -8827,6 +8884,7 @@ ul.pagination.custom-pagination { ...@@ -8827,6 +8884,7 @@ ul.pagination.custom-pagination {
width: 100%; width: 100%;
min-height: 56px; min-height: 56px;
} }
.hamburger-btn { .hamburger-btn {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
...@@ -8841,6 +8899,7 @@ ul.pagination.custom-pagination { ...@@ -8841,6 +8899,7 @@ ul.pagination.custom-pagination {
right: 16px; right: 16px;
z-index: 1003; z-index: 1003;
} }
.hamburger-btn span { .hamburger-btn span {
display: block; display: block;
height: 3px; height: 3px;
...@@ -8850,15 +8909,19 @@ ul.pagination.custom-pagination { ...@@ -8850,15 +8909,19 @@ ul.pagination.custom-pagination {
border-radius: 2px; border-radius: 2px;
transition: all 0.3s; transition: all 0.3s;
} }
.hamburger-btn.open span:nth-child(1) { .hamburger-btn.open span:nth-child(1) {
transform: translateY(7px) rotate(45deg); transform: translateY(7px) rotate(45deg);
} }
.hamburger-btn.open span:nth-child(2) { .hamburger-btn.open span:nth-child(2) {
opacity: 0; opacity: 0;
} }
.hamburger-btn.open span:nth-child(3) { .hamburger-btn.open span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg); transform: translateY(-7px) rotate(-45deg);
} }
.mobile-menu { .mobile-menu {
display: none; display: none;
position: fixed; position: fixed;
...@@ -8870,26 +8933,36 @@ ul.pagination.custom-pagination { ...@@ -8870,26 +8933,36 @@ ul.pagination.custom-pagination {
z-index: 1001; z-index: 1001;
overflow-y: auto; overflow-y: auto;
padding-top: 60px; padding-top: 60px;
box-shadow: 0 2px 16px rgba(0,0,0,0.08); box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
} }
.mobile-menu.show { .mobile-menu.show {
display: block; display: block;
animation: fadeInMenu 0.2s; animation: fadeInMenu 0.2s;
} }
@keyframes fadeInMenu { @keyframes fadeInMenu {
from { opacity: 0; } from {
to { opacity: 1; } opacity: 0;
}
to {
opacity: 1;
}
} }
.mobile-menu ul { .mobile-menu ul {
list-style: none; list-style: none;
padding: 0 0 32px 0; padding: 0 0 32px 0;
margin: 0; margin: 0;
} }
.mobile-menu ul > li {
.mobile-menu ul>li {
border-bottom: 1px solid #eee; border-bottom: 1px solid #eee;
padding: 0; padding: 0;
} }
.mobile-menu ul > li > a,
.mobile-menu ul>li>a,
.mobile-dropdown-btn { .mobile-dropdown-btn {
display: flex; display: flex;
align-items: center; align-items: center;
...@@ -8905,10 +8978,12 @@ ul.pagination.custom-pagination { ...@@ -8905,10 +8978,12 @@ ul.pagination.custom-pagination {
outline: none; outline: none;
transition: background 0.2s; transition: background 0.2s;
} }
.mobile-menu ul > li > a:hover,
.mobile-menu ul>li>a:hover,
.mobile-dropdown-btn:hover { .mobile-dropdown-btn:hover {
background: #f5f5f5; background: #f5f5f5;
} }
.mobile-dropdown-btn .arrow { .mobile-dropdown-btn .arrow {
margin-left: auto; margin-left: auto;
border: solid #888; border: solid #888;
...@@ -8918,9 +8993,11 @@ ul.pagination.custom-pagination { ...@@ -8918,9 +8993,11 @@ ul.pagination.custom-pagination {
transform: rotate(45deg); transform: rotate(45deg);
transition: transform 0.2s; transition: transform 0.2s;
} }
.mobile-dropdown-btn .arrow.open { .mobile-dropdown-btn .arrow.open {
transform: rotate(-135deg); transform: rotate(-135deg);
} }
.mobile-dropdown { .mobile-dropdown {
display: none; display: none;
background: #fafbfc; background: #fafbfc;
...@@ -8929,16 +9006,20 @@ ul.pagination.custom-pagination { ...@@ -8929,16 +9006,20 @@ ul.pagination.custom-pagination {
border-top: 1px solid #eee; border-top: 1px solid #eee;
border-bottom: 1px solid #eee; border-bottom: 1px solid #eee;
} }
.mobile-dropdown.show { .mobile-dropdown.show {
display: block; display: block;
animation: fadeInMenu 0.2s; animation: fadeInMenu 0.2s;
} }
.mobile-dropdown li { .mobile-dropdown li {
border-bottom: 1px solid #eee; border-bottom: 1px solid #eee;
} }
.mobile-dropdown li:last-child { .mobile-dropdown li:last-child {
border-bottom: none; border-bottom: none;
} }
.mobile-dropdown a { .mobile-dropdown a {
display: block; display: block;
padding: 15px 40px; padding: 15px 40px;
...@@ -8948,9 +9029,11 @@ ul.pagination.custom-pagination { ...@@ -8948,9 +9029,11 @@ ul.pagination.custom-pagination {
text-decoration: none; text-decoration: none;
transition: background 0.2s; transition: background 0.2s;
} }
.mobile-dropdown a:hover { .mobile-dropdown a:hover {
background: #f0f0f0; background: #f0f0f0;
} }
.mobile-dropdown-btn.inner { .mobile-dropdown-btn.inner {
padding-left: 40px; padding-left: 40px;
font-size: 1rem; font-size: 1rem;
...@@ -8965,19 +9048,23 @@ ul.pagination.custom-pagination { ...@@ -8965,19 +9048,23 @@ ul.pagination.custom-pagination {
align-items: center; align-items: center;
transition: background 0.2s; transition: background 0.2s;
} }
.mobile-dropdown-btn.inner .arrow { .mobile-dropdown-btn.inner .arrow {
margin-left: auto; margin-left: auto;
border-color: #bbb; border-color: #bbb;
} }
.mobile-dropdown.inner { .mobile-dropdown.inner {
background: #f7f7f7; background: #f7f7f7;
border-top: none; border-top: none;
border-bottom: none; border-bottom: none;
padding: 0; padding: 0;
} }
.mobile-dropdown.inner.show { .mobile-dropdown.inner.show {
display: block; display: block;
} }
.mobile-dropdown.inner li a { .mobile-dropdown.inner li a {
padding-left: 56px; padding-left: 56px;
font-size: 0.98rem; font-size: 0.98rem;
...@@ -8994,6 +9081,7 @@ ul.pagination.custom-pagination { ...@@ -8994,6 +9081,7 @@ ul.pagination.custom-pagination {
.navbar-area { .navbar-area {
display: none !important; display: none !important;
} }
.mobile-hamburger-wrapper { .mobile-hamburger-wrapper {
display: block; display: block;
width: 100%; width: 100%;
...@@ -9003,6 +9091,7 @@ ul.pagination.custom-pagination { ...@@ -9003,6 +9091,7 @@ ul.pagination.custom-pagination {
min-height: 56px; min-height: 56px;
} }
} }
@media (min-width: 992px) { @media (min-width: 992px) {
.mobile-hamburger-wrapper { .mobile-hamburger-wrapper {
display: none !important; display: none !important;
...@@ -9021,12 +9110,14 @@ ul.pagination.custom-pagination { ...@@ -9021,12 +9110,14 @@ ul.pagination.custom-pagination {
position: relative; position: relative;
z-index: 1003; z-index: 1003;
} }
.mobile-logo-link { .mobile-logo-link {
display: flex; display: flex;
align-items: center; align-items: center;
height: 32px; height: 32px;
min-width: 120px; min-width: 120px;
} }
.mobile-logo-link img { .mobile-logo-link img {
height: 28px; height: 28px;
width: auto; width: auto;
...@@ -9034,6 +9125,7 @@ ul.pagination.custom-pagination { ...@@ -9034,6 +9125,7 @@ ul.pagination.custom-pagination {
object-fit: contain; object-fit: contain;
display: block; display: block;
} }
.hamburger-btn { .hamburger-btn {
margin-left: auto; margin-left: auto;
background: none; background: none;
...@@ -9041,10 +9133,12 @@ ul.pagination.custom-pagination { ...@@ -9041,10 +9133,12 @@ ul.pagination.custom-pagination {
outline: none; outline: none;
box-shadow: none; box-shadow: none;
} }
.hamburger-btn span { .hamburger-btn span {
background: #23243a; background: #23243a;
border-radius: 2px; border-radius: 2px;
} }
.mobile-menu { .mobile-menu {
display: none; display: none;
position: fixed; position: fixed;
...@@ -9056,32 +9150,43 @@ ul.pagination.custom-pagination { ...@@ -9056,32 +9150,43 @@ ul.pagination.custom-pagination {
z-index: 1001; z-index: 1001;
overflow-y: auto; overflow-y: auto;
padding-top: 60px; padding-top: 60px;
box-shadow: 0 8px 32px rgba(35,36,58,0.10); box-shadow: 0 8px 32px rgba(35, 36, 58, 0.10);
border-radius: 0 0 18px 18px; border-radius: 0 0 18px 18px;
border: 1px solid #e6e8ec; border: 1px solid #e6e8ec;
transition: box-shadow 0.2s; transition: box-shadow 0.2s;
} }
.mobile-menu.show { .mobile-menu.show {
display: block; display: block;
animation: fadeInMenu 0.2s; animation: fadeInMenu 0.2s;
} }
@keyframes fadeInMenu { @keyframes fadeInMenu {
from { opacity: 0; } from {
to { opacity: 1; } opacity: 0;
}
to {
opacity: 1;
}
} }
.mobile-menu ul { .mobile-menu ul {
list-style: none; list-style: none;
padding: 0; padding: 0;
margin: 0; margin: 0;
} }
.mobile-menu ul > li {
.mobile-menu ul>li {
border-bottom: 1px solid #e6e8ec; border-bottom: 1px solid #e6e8ec;
padding: 0; padding: 0;
} }
.mobile-menu ul > li:last-child {
.mobile-menu ul>li:last-child {
border-bottom: none; border-bottom: none;
} }
.mobile-menu ul > li > a,
.mobile-menu ul>li>a,
.mobile-dropdown-btn { .mobile-dropdown-btn {
display: flex; display: flex;
align-items: center; align-items: center;
...@@ -9099,13 +9204,15 @@ ul.pagination.custom-pagination { ...@@ -9099,13 +9204,15 @@ ul.pagination.custom-pagination {
border-radius: 0; border-radius: 0;
letter-spacing: 0.01em; letter-spacing: 0.01em;
} }
.mobile-menu ul > li > a:hover,
.mobile-menu ul>li>a:hover,
.mobile-dropdown-btn:hover, .mobile-dropdown-btn:hover,
.mobile-menu ul > li > a:focus, .mobile-menu ul>li>a:focus,
.mobile-dropdown-btn:focus { .mobile-dropdown-btn:focus {
background: #f3f4f8; background: #f3f4f8;
color: #ff9000; color: #ff9000;
} }
.mobile-dropdown-btn .arrow { .mobile-dropdown-btn .arrow {
margin-left: auto; margin-left: auto;
border: solid #b0b3c6; border: solid #b0b3c6;
...@@ -9115,9 +9222,11 @@ ul.pagination.custom-pagination { ...@@ -9115,9 +9222,11 @@ ul.pagination.custom-pagination {
transform: rotate(45deg); transform: rotate(45deg);
transition: transform 0.2s; transition: transform 0.2s;
} }
.mobile-dropdown-btn .arrow.open { .mobile-dropdown-btn .arrow.open {
transform: rotate(-135deg); transform: rotate(-135deg);
} }
.mobile-dropdown { .mobile-dropdown {
display: none; display: none;
background: #f3f4f8; background: #f3f4f8;
...@@ -9127,16 +9236,20 @@ ul.pagination.custom-pagination { ...@@ -9127,16 +9236,20 @@ ul.pagination.custom-pagination {
border-bottom: 1px solid #e6e8ec; border-bottom: 1px solid #e6e8ec;
border-radius: 0 0 14px 14px; border-radius: 0 0 14px 14px;
} }
.mobile-dropdown.show { .mobile-dropdown.show {
display: block; display: block;
animation: fadeInMenu 0.2s; animation: fadeInMenu 0.2s;
} }
.mobile-dropdown li { .mobile-dropdown li {
border-bottom: 1px solid #e6e8ec; border-bottom: 1px solid #e6e8ec;
} }
.mobile-dropdown li:last-child { .mobile-dropdown li:last-child {
border-bottom: none; border-bottom: none;
} }
.mobile-dropdown a { .mobile-dropdown a {
display: block; display: block;
padding: 15px 40px; padding: 15px 40px;
...@@ -9148,11 +9261,13 @@ ul.pagination.custom-pagination { ...@@ -9148,11 +9261,13 @@ ul.pagination.custom-pagination {
border-radius: 0; border-radius: 0;
font-weight: 500; font-weight: 500;
} }
.mobile-dropdown a:hover, .mobile-dropdown a:hover,
.mobile-dropdown a:focus { .mobile-dropdown a:focus {
background: #e9eaf3; background: #e9eaf3;
color: #ff9000; color: #ff9000;
} }
.mobile-dropdown-btn.inner { .mobile-dropdown-btn.inner {
padding-left: 40px; padding-left: 40px;
font-size: 1rem; font-size: 1rem;
...@@ -9168,15 +9283,18 @@ ul.pagination.custom-pagination { ...@@ -9168,15 +9283,18 @@ ul.pagination.custom-pagination {
transition: background 0.18s, color 0.18s; transition: background 0.18s, color 0.18s;
border-radius: 0; border-radius: 0;
} }
.mobile-dropdown-btn.inner .arrow { .mobile-dropdown-btn.inner .arrow {
margin-left: auto; margin-left: auto;
border-color: #b0b3c6; border-color: #b0b3c6;
} }
.mobile-dropdown-btn.inner:hover, .mobile-dropdown-btn.inner:hover,
.mobile-dropdown-btn.inner:focus { .mobile-dropdown-btn.inner:focus {
background: #e9eaf3; background: #e9eaf3;
color: #ff9000; color: #ff9000;
} }
.mobile-dropdown.inner { .mobile-dropdown.inner {
background: #f8f9fb; background: #f8f9fb;
border-top: none; border-top: none;
...@@ -9184,20 +9302,135 @@ ul.pagination.custom-pagination { ...@@ -9184,20 +9302,135 @@ ul.pagination.custom-pagination {
padding: 0; padding: 0;
border-radius: 0 0 10px 10px; border-radius: 0 0 10px 10px;
} }
.mobile-dropdown.inner.show { .mobile-dropdown.inner.show {
display: block; display: block;
} }
.mobile-dropdown.inner li a { .mobile-dropdown.inner li a {
padding-left: 56px; padding-left: 56px;
font-size: 0.98rem; font-size: 0.98rem;
border-radius: 0; border-radius: 0;
font-weight: 500; font-weight: 500;
} }
.mobile-dropdown.inner li:last-child a { .mobile-dropdown.inner li:last-child a {
padding-bottom: 15px; padding-bottom: 15px;
} }
/* Remove extra bottom padding from last menu item */ /* Remove extra bottom padding from last menu item */
.mobile-menu ul > li:last-child > a { .mobile-menu ul>li:last-child>a {
padding-bottom: 16px; padding-bottom: 16px;
} }
} }
/* === Container === */
.custom-card {
position: relative;
width: 100%;
overflow: hidden;
border-radius: 12px;
background-color: #fff;
transition: transform 0.4s ease;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.custom-card:hover {
transform: translateY(-10px);
}
/* === Card Title (above image) === */
.card-title {
text-align: center;
font-weight: bold;
margin-bottom: 10px;
font-size: 1.2rem;
color: #222;
}
/* === Image Container === */
.card-image {
position: relative;
height: 300px;
overflow: hidden;
border-radius: 10px;
}
/* === Image === */
.card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: opacity 0.4s ease, transform 0.4s ease;
opacity: 1; /* ✅ Fully visible by default */
}
/* 🔦 Image dims only on hover */
.custom-card:hover .card-image img {
opacity: 0.4;
transform: scale(1.05);
}
/* === Overlay === */
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
transition: opacity 0.4s ease;
opacity: 0.3;
}
.custom-card:hover .overlay {
opacity: 0.1;
}
/* === Card Content === */
.card-content {
position: absolute;
top: 50%;
left: 50%;
width: 100%;
z-index: 2;
transform: translate(-50%, -50%);
text-align: center;
color: #fff;
opacity: 0; /* 🙈 Hidden initially */
transition: opacity 0.4s ease, transform 0.4s ease;
padding: 0 15px;
}
/* 👀 Content visible on hover */
.custom-card:hover .card-content {
opacity: 1;
transform: translate(-50%, -50%) scale(1.05);
}
/* === Optional: Make text more readable === */
.card-content h5,
.card-content .Description p {
text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
text-align: center;
}
.card-badge {
position: absolute;
top: 15px;
left: 15px;
background: #f8971f; /* Orange or theme color */
color: #fff;
padding: 6px 12px;
border-radius: 4px;
font-weight: bold;
font-size: 0.85rem;
z-index: 3;
transition: opacity 0.3s ease, transform 0.3s ease;
}
/* 🙈 Hide badge on hover */
.custom-card:hover .card-badge {
opacity: 0;
transform: scale(0.9);
}
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!