hi coded
diff --git a/Components/Paragraph.js b/Components/Paragraph.js
new file mode 100644
index 0000000..4348296
--- /dev/null
+++ b/Components/Paragraph.js
@@ -0,0 +1,11 @@
+import { Component } from 'react';
+
+class Paragraph extends Component {
+    render () {
+        return (
+            <p style={{width: "100%", textAlign: "left", paddingLeft: "15%", paddingRight: "15%", fontSize: "120%"}}>{this.props.children}</p>
+        );
+    }
+}
+
+export default Paragraph;
\ No newline at end of file
diff --git a/package.json b/package.json
index 3fe3917..54c158e 100644
--- a/package.json
+++ b/package.json
@@ -11,7 +11,8 @@
   "dependencies": {
     "next": "11.1.2",
     "react": "17.0.2",
-    "react-dom": "17.0.2"
+    "react-dom": "17.0.2",
+    "react-hcaptcha": "^0.1.1"
   },
   "devDependencies": {
     "eslint": "7.32.0",
diff --git a/pages/api/rsmv/complete.js b/pages/api/rsmv/complete.js
new file mode 100644
index 0000000..3259967
--- /dev/null
+++ b/pages/api/rsmv/complete.js
@@ -0,0 +1,17 @@
+import Axios from 'axios';
+
+export default async (req, res) => {
+    let code = await Axios.post('http://localhost:3000/api/rsmv/validate', {code:req.body.code});
+    if (code.status != 200) {
+        return res.send(404);
+    }
+    if (code.data.user  != req.body.uid) return res.send(401)
+    if (code.data.guild != req.body.gid) return res.send(401)
+    if (code.data.role  != req.body.rid) return res.send(401)
+
+    let secret = "slwu0rZV5W6WdmGtgI16du8Ar2tQGMr3Q9dE6u3poKiVODNV9SweaA3buawgkTmTuITXDWOUpBcTFA0qWrUvoshi1JB180WOFwA7"
+    let resp = await Axios.get(
+        `http://192.168.102.5:10000/role/gid/${req.body.gid}/rid/${req.body.rid}/user/${req.body.uid}/secret/${secret}/code/${req.body.code}`
+    )
+    return res.send(resp.status);
+}
diff --git a/pages/api/rsmv/validate.js b/pages/api/rsmv/validate.js
new file mode 100644
index 0000000..7359a68
--- /dev/null
+++ b/pages/api/rsmv/validate.js
@@ -0,0 +1,28 @@
+import MongoClient from 'mongodb';
+
+
+const url = 'mongodb://rsm:LJMy*orVFAATQ5PaX7EKXq74&HCDFaLE@192.168.101.2:27017/rsm';
+const db = 'rsm';
+const collection = 'rsmv-tokens'
+
+export default (req, res) => {
+    return new Promise((resolve, reject) => {
+        MongoClient.connect(url, async function(err, client) {
+            let db_response = await client.db(db).collection(collection).findOne({code: req.body.code});
+
+            if (!db_response) return resolve(res.status(404).end());
+            if (db_response.timestamp + (1800) >= Date.now()) return resolve(res.status(410));
+
+            let props = {
+                user: db_response.user,
+                role: db_response.role,
+                role_name: db_response.role_name,
+                guild: db_response.guild,
+                guild_name: db_response.guild_name,
+                guild_icon_url: db_response.guild_icon_url,
+                guild_size: db_response.guild_size
+            }
+            return resolve(res.status(200).send(props));
+        })
+    })
+}
\ No newline at end of file
diff --git a/pages/api/rsmv/verifyTkn.js b/pages/api/rsmv/verifyTkn.js
new file mode 100644
index 0000000..7e9d06f
--- /dev/null
+++ b/pages/api/rsmv/verifyTkn.js
@@ -0,0 +1,12 @@
+import Axios from 'axios';
+import qs from 'querystring';
+
+export default async (req, res) => {
+    const chk = await Axios.post('https://hcaptcha.com/siteverify', qs.stringify({
+            response: req.body.tkn,
+            secret: '0x19C699BFfce07b2a026121DE6702706BB2d51D6c',
+            sitekey: '85074411-fa13-4d9b-b901-53095c6d1fc6'
+        }))
+
+    return res.send({ success: chk.data.success });
+}
\ No newline at end of file
diff --git a/pages/rsmv/failure.js b/pages/rsmv/failure.js
new file mode 100644
index 0000000..31b721b
--- /dev/null
+++ b/pages/rsmv/failure.js
@@ -0,0 +1,25 @@
+import { Component } from 'react'
+import Styles from '../../styles/rsmv/rsmv.module.scss'
+
+class Failed extends Component {
+    constructor(props) {
+        super(props)
+    }
+
+    render() {
+        return (
+        <div className={Styles.container}>
+
+            <div className={Styles.ServerHeader}>
+                <h4>
+                    Verification failed<br />
+                    Please try again, and if the error persists please contact us at <a href="mailto:verification@clicksminuteper.net" target="_blank">verification@clicksminuteper.net</a>
+                </h4> 
+            </div>
+        </div>
+        )
+    }
+
+}
+
+export default Failed;
\ No newline at end of file
diff --git a/pages/rsmv/index.js b/pages/rsmv/index.js
new file mode 100644
index 0000000..cdb9a3c
--- /dev/null
+++ b/pages/rsmv/index.js
@@ -0,0 +1,129 @@
+import { Component } from 'react';
+import Styles from '../../styles/rsmv/rsmv.module.css'
+import HCaptcha from '@hcaptcha/react-hcaptcha';
+import Axios from 'axios';
+import Router from 'next/router';
+import React from 'react';
+
+
+class RSMV extends Component {
+
+    constructor(props) {
+        super(props);
+        this.v = false;
+        this.state = {
+
+        }
+    }
+
+    async handleVerificationSuccess(cls, token) {
+        const chk = await Axios.put('/api/rsmv/verifyTkn', { tkn: token.toString() })
+        if(chk.data.success == true) {
+            return cls.v = true;
+        } else {
+            return;
+        }
+
+    }
+
+    async componentDidMount() {
+        this.setState({
+            cores: window.navigator.hardwareConcurrency,
+            userAgent: window.navigator.userAgent,
+            platform: window.navigator.platform,
+            language: window.navigator.language,
+            memory: window.navigator.deviceMemory,
+        })
+    }
+
+    async submitForm(cls) {
+        if (!cls.v) {
+            return Router.push('/rsmv/failure','/rsmv')
+        }
+        let code = await Axios.post('/api/rsmv/complete', {
+            uid:cls.props.uID,
+            rid:cls.props.rID,
+            gid:cls.props.gID,
+            code:cls.props.code
+        });
+        console.log(code.status)
+        if (code.status === 200 ) return Router.push('/rsmv/success','/rsmv')
+        else return Router.push('/rsmv/failure','/rsmv')
+    }
+
+    render() {
+        return <>
+            <div className={Styles.container}>
+                <div className={Styles.ServerHeader}>
+                    <div className={Styles.ServerHeaderCenter}>
+                        <img src={this.props.guild_icon_url} className={Styles.ServerHeaderImage}/>
+                    </div>
+                </div>
+                <div className={Styles.ServerHeader}>
+                    <div className={Styles.ServerHeaderCenter}>
+                        <h1>{this.props.guild_name}</h1>
+                        <h3>{this.props.memberCount} members</h3>
+                    </div>
+                </div>
+                <div className={Styles.ServerHeader}>
+                    <h4>
+                        Complete the check below to join {this.props.guild_name}.
+                    </h4>
+                </div>
+                <div className={Styles.form}>
+                    <HCaptcha
+                        id="Captchas mitigate problems"
+                        sitekey="85074411-fa13-4d9b-b901-53095c6d1fc6"
+                        onVerify={token => this.handleVerificationSuccess(this, token)}
+                    />
+                    <div className={Styles.buttonContainer}>
+                        <button type="button" className={Styles.button} onClick={(success) => this.submitForm(this)}>Proceed</button>
+                    </div>
+                </div>
+                <div className={Styles.BottomText}>
+                    <p>This is an automatic check performed by RSM.<br/>
+                        <br/>
+                        By clicking Proceed, you will be given the <highlight>{this.props.role_name}</highlight> role in <highlight>{this.props.guild_name}</highlight>.<br/>
+                        {/* <br/>
+                        By Proceeding, you consent to our use of cookies described in our <highlight>policy</highlight>. */}
+                    </p>
+                </div>
+            </div>
+        </>
+    }
+}
+
+export default RSMV;
+export async function getServerSideProps(ctx) {
+    if(!ctx.query.code) {
+        return {
+            redirect: {
+                destination: '/rsmv/faliure',
+                permanent: true
+            }
+        }
+    }
+    let code = await Axios.post('http://localhost:3000/api/rsmv/validate', {code:ctx.query.code});
+    let headers = ctx.req.headers;
+    if (code.status != 200 ) {
+        return {
+            redirect: {
+                destination: '/rsmv/faliure',
+                permanent: true
+            }
+        }
+    }
+    return {
+        props: {
+            uID:code.data.user,
+            rID:code.data.role,
+            role_name:code.data.role_name,
+            gID:code.data.guild,
+            guild_name:code.data.guild_name,
+            guild_icon_url:code.data.guild_icon_url,
+            memberCount:code.data.guild_size,
+            headers: headers,
+            code: ctx.query.code
+        }
+    }
+}
\ No newline at end of file
diff --git a/pages/rsmv/success.js b/pages/rsmv/success.js
new file mode 100644
index 0000000..66d2003
--- /dev/null
+++ b/pages/rsmv/success.js
@@ -0,0 +1,29 @@
+import { Component } from 'react'
+import Styles from '../../styles/pages/rsmv.module.scss'
+
+class Success extends Component {
+    constructor(props) {
+        super(props)
+    }
+
+
+
+    render() {
+        return (
+        <>
+        <div className={Styles.container}>
+            <div className={Styles.ServerHeader}>
+                <h4>
+                    Thank you for verifying.<br />
+                    You can now close this tab or window.
+                </h4>
+            </div>
+        </div>
+        <div style={{height:"38vh"}}></div>
+        </>
+        )
+    }
+
+}
+
+export default Success;
\ No newline at end of file
diff --git a/public/Features/ClicksForms/Anonymous.svg b/public/Features/ClicksForms/Anonymous.svg
new file mode 100644
index 0000000..b590b05
--- /dev/null
+++ b/public/Features/ClicksForms/Anonymous.svg
@@ -0,0 +1,45 @@
+<svg width="1196" height="896" viewBox="0 0 1196 896" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g filter="url(#filter0_bd)">
+<rect x="4" width="1188" height="888" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
+</g>
+<g opacity="0.25">
+<g clip-path="url(#clip0)">
+<circle cx="599.285" cy="445.285" r="353.474" stroke="#F27878" stroke-width="68.9695"/>
+<path d="M704.053 349.378C704.053 406.57 657.308 453.334 599.149 453.334C540.989 453.334 494.245 406.57 494.245 349.378C494.245 292.186 540.989 245.422 599.149 245.422C657.308 245.422 704.053 292.186 704.053 349.378Z" stroke="#F27878" stroke-width="68.9695"/>
+<path d="M844.74 738.149C844.74 686.344 818.866 636.66 772.809 600.027C726.752 563.395 664.285 542.815 599.15 542.815C534.016 542.815 471.549 563.395 425.492 600.027C379.435 636.66 353.561 686.344 353.561 738.149L427.237 738.149C427.237 701.885 445.35 667.107 477.59 641.464C509.83 615.821 553.556 601.416 599.15 601.416C644.744 601.416 688.471 615.821 720.711 641.464C752.951 667.107 771.063 701.885 771.063 738.149H844.74Z" fill="#F27878"/>
+</g>
+<rect x="206.578" y="759.947" width="1000.37" height="107.626" rx="53.8128" transform="rotate(-45 206.578 759.947)" fill="#F27878" stroke="#CCDCF3" stroke-width="38.6229"/>
+</g>
+<g filter="url(#filter1_d)">
+<path d="M159.621 361.895H104.543L93.0195 395H67.3359L121.047 252.812H143.215L197.023 395H171.242L159.621 361.895ZM111.477 341.973H152.688L132.082 282.988L111.477 341.973ZM228.273 289.336L228.957 301.543C236.77 292.103 247.023 287.383 259.719 287.383C281.724 287.383 292.922 299.98 293.312 325.176V395H269.582V326.543C269.582 319.837 268.117 314.889 265.188 311.699C262.323 308.444 257.603 306.816 251.027 306.816C241.457 306.816 234.328 311.146 229.641 319.805V395H205.91V289.336H228.273ZM313.137 341.191C313.137 330.84 315.188 321.53 319.289 313.262C323.391 304.928 329.152 298.548 336.574 294.121C343.996 289.629 352.525 287.383 362.16 287.383C376.418 287.383 387.974 291.973 396.828 301.152C405.747 310.332 410.565 322.507 411.281 337.676L411.379 343.242C411.379 353.659 409.361 362.969 405.324 371.172C401.353 379.375 395.624 385.723 388.137 390.215C380.715 394.707 372.121 396.953 362.355 396.953C347.447 396.953 335.5 392.005 326.516 382.109C317.596 372.148 313.137 358.9 313.137 342.363V341.191ZM336.867 343.242C336.867 354.115 339.113 362.643 343.605 368.828C348.098 374.948 354.348 378.008 362.355 378.008C370.363 378.008 376.581 374.883 381.008 368.633C385.5 362.383 387.746 353.236 387.746 341.191C387.746 330.514 385.435 322.051 380.812 315.801C376.255 309.551 370.038 306.426 362.16 306.426C354.413 306.426 348.26 309.518 343.703 315.703C339.146 321.823 336.867 331.003 336.867 343.242ZM453.469 289.336L454.152 301.543C461.965 292.103 472.219 287.383 484.914 287.383C506.919 287.383 518.117 299.98 518.508 325.176V395H494.777V326.543C494.777 319.837 493.312 314.889 490.383 311.699C487.518 308.444 482.798 306.816 476.223 306.816C466.652 306.816 459.523 311.146 454.836 319.805V395H431.105V289.336H453.469ZM579.738 361.016L601.223 289.336H626.516L584.523 411.016C578.078 428.789 567.141 437.676 551.711 437.676C548.26 437.676 544.452 437.09 540.285 435.918V417.559L544.777 417.852C550.767 417.852 555.259 416.745 558.254 414.531C561.314 412.383 563.723 408.737 565.48 403.594L568.898 394.512L531.789 289.336H557.375L579.738 361.016ZM662.551 289.336L663.234 300.371C670.656 291.712 680.812 287.383 693.703 287.383C707.831 287.383 717.499 292.786 722.707 303.594C730.389 292.786 741.197 287.383 755.129 287.383C766.783 287.383 775.441 290.605 781.105 297.051C786.835 303.496 789.764 313.001 789.895 325.566V395H766.164V326.25C766.164 319.544 764.699 314.629 761.77 311.504C758.84 308.379 753.99 306.816 747.219 306.816C741.815 306.816 737.388 308.281 733.938 311.211C730.552 314.076 728.176 317.852 726.809 322.539L726.906 395H703.176V325.469C702.85 313.034 696.503 306.816 684.133 306.816C674.628 306.816 667.889 310.69 663.918 318.438V395H640.188V289.336H662.551ZM809.816 341.191C809.816 330.84 811.867 321.53 815.969 313.262C820.07 304.928 825.832 298.548 833.254 294.121C840.676 289.629 849.204 287.383 858.84 287.383C873.098 287.383 884.654 291.973 893.508 301.152C902.427 310.332 907.245 322.507 907.961 337.676L908.059 343.242C908.059 353.659 906.04 362.969 902.004 371.172C898.033 379.375 892.303 385.723 884.816 390.215C877.395 394.707 868.801 396.953 859.035 396.953C844.126 396.953 832.18 392.005 823.195 382.109C814.276 372.148 809.816 358.9 809.816 342.363V341.191ZM833.547 343.242C833.547 354.115 835.793 362.643 840.285 368.828C844.777 374.948 851.027 378.008 859.035 378.008C867.043 378.008 873.26 374.883 877.688 368.633C882.18 362.383 884.426 353.236 884.426 341.191C884.426 330.514 882.115 322.051 877.492 315.801C872.935 309.551 866.717 306.426 858.84 306.426C851.092 306.426 844.94 309.518 840.383 315.703C835.826 321.823 833.547 331.003 833.547 343.242ZM992.141 384.648C985.174 392.852 975.279 396.953 962.453 396.953C950.995 396.953 942.303 393.6 936.379 386.895C930.52 380.189 927.59 370.488 927.59 357.793V289.336H951.32V357.5C951.32 370.911 956.887 377.617 968.02 377.617C979.543 377.617 987.323 373.483 991.359 365.215V289.336H1015.09V395H992.727L992.141 384.648ZM1098.49 366.289C1098.49 362.057 1096.73 358.835 1093.21 356.621C1089.76 354.408 1084 352.454 1075.93 350.762C1067.86 349.069 1061.12 346.921 1055.71 344.316C1043.87 338.587 1037.94 330.286 1037.94 319.414C1037.94 310.299 1041.78 302.682 1049.46 296.562C1057.15 290.443 1066.91 287.383 1078.76 287.383C1091.39 287.383 1101.58 290.508 1109.33 296.758C1117.14 303.008 1121.05 311.113 1121.05 321.074H1097.32C1097.32 316.517 1095.62 312.741 1092.24 309.746C1088.85 306.686 1084.36 305.156 1078.76 305.156C1073.55 305.156 1069.29 306.361 1065.97 308.77C1062.71 311.178 1061.09 314.401 1061.09 318.438C1061.09 322.083 1062.62 324.915 1065.68 326.934C1068.74 328.952 1074.92 331.003 1084.23 333.086C1093.54 335.104 1100.83 337.546 1106.11 340.41C1111.44 343.21 1115.38 346.595 1117.92 350.566C1120.53 354.538 1121.83 359.355 1121.83 365.02C1121.83 374.525 1117.89 382.24 1110.01 388.164C1102.13 394.023 1091.82 396.953 1079.05 396.953C1070.4 396.953 1062.68 395.391 1055.91 392.266C1049.14 389.141 1043.87 384.844 1040.09 379.375C1036.31 373.906 1034.43 368.014 1034.43 361.699H1057.47C1057.8 367.298 1059.91 371.628 1063.82 374.688C1067.73 377.682 1072.9 379.18 1079.35 379.18C1085.6 379.18 1090.35 378.008 1093.61 375.664C1096.86 373.255 1098.49 370.13 1098.49 366.289ZM409.719 568.746H352.492V629H327.785V486.812H418.117V506.734H352.492V549.02H409.719V568.746ZM428.859 575.191C428.859 564.84 430.91 555.53 435.012 547.262C439.113 538.928 444.875 532.548 452.297 528.121C459.719 523.629 468.247 521.383 477.883 521.383C492.141 521.383 503.697 525.973 512.551 535.152C521.47 544.332 526.288 556.507 527.004 571.676L527.102 577.242C527.102 587.659 525.083 596.969 521.047 605.172C517.076 613.375 511.346 619.723 503.859 624.215C496.438 628.707 487.844 630.953 478.078 630.953C463.169 630.953 451.223 626.005 442.238 616.109C433.319 606.148 428.859 592.9 428.859 576.363V575.191ZM452.59 577.242C452.59 588.115 454.836 596.643 459.328 602.828C463.82 608.948 470.07 612.008 478.078 612.008C486.086 612.008 492.303 608.883 496.73 602.633C501.223 596.383 503.469 587.236 503.469 575.191C503.469 564.514 501.158 556.051 496.535 549.801C491.978 543.551 485.76 540.426 477.883 540.426C470.135 540.426 463.983 543.518 459.426 549.703C454.868 555.823 452.59 565.003 452.59 577.242ZM602.492 545.016C599.367 544.495 596.145 544.234 592.824 544.234C581.952 544.234 574.628 548.401 570.852 556.734V629H547.121V523.336H569.777L570.363 535.152C576.092 525.973 584.035 521.383 594.191 521.383C597.577 521.383 600.376 521.839 602.59 522.75L602.492 545.016ZM639.797 523.336L640.48 534.371C647.902 525.712 658.059 521.383 670.949 521.383C685.077 521.383 694.745 526.786 699.953 537.594C707.635 526.786 718.443 521.383 732.375 521.383C744.029 521.383 752.688 524.605 758.352 531.051C764.081 537.496 767.01 547.001 767.141 559.566V629H743.41V560.25C743.41 553.544 741.945 548.629 739.016 545.504C736.086 542.379 731.236 540.816 724.465 540.816C719.061 540.816 714.634 542.281 711.184 545.211C707.798 548.076 705.422 551.852 704.055 556.539L704.152 629H680.422V559.469C680.096 547.034 673.749 540.816 661.379 540.816C651.874 540.816 645.135 544.69 641.164 552.438V629H617.434V523.336H639.797ZM850.734 600.289C850.734 596.057 848.977 592.835 845.461 590.621C842.01 588.408 836.249 586.454 828.176 584.762C820.103 583.069 813.365 580.921 807.961 578.316C796.112 572.587 790.188 564.286 790.188 553.414C790.188 544.299 794.029 536.682 801.711 530.562C809.393 524.443 819.159 521.383 831.008 521.383C843.638 521.383 853.827 524.508 861.574 530.758C869.387 537.008 873.293 545.113 873.293 555.074H849.562C849.562 550.517 847.87 546.741 844.484 543.746C841.099 540.686 836.607 539.156 831.008 539.156C825.799 539.156 821.535 540.361 818.215 542.77C814.96 545.178 813.332 548.401 813.332 552.438C813.332 556.083 814.862 558.915 817.922 560.934C820.982 562.952 827.167 565.003 836.477 567.086C845.786 569.104 853.078 571.546 858.352 574.41C863.69 577.21 867.629 580.595 870.168 584.566C872.772 588.538 874.074 593.355 874.074 599.02C874.074 608.525 870.135 616.24 862.258 622.164C854.38 628.023 844.061 630.953 831.301 630.953C822.642 630.953 814.927 629.391 808.156 626.266C801.385 623.141 796.112 618.844 792.336 613.375C788.56 607.906 786.672 602.014 786.672 595.699H809.719C810.044 601.298 812.16 605.628 816.066 608.688C819.973 611.682 825.148 613.18 831.594 613.18C837.844 613.18 842.596 612.008 845.852 609.664C849.107 607.255 850.734 604.13 850.734 600.289Z" fill="#F27878"/>
+</g>
+<path d="M137.27 164H130.307V124.806H83.5884V164H76.6816V82.2422H83.5884V118.966H130.307V82.2422H137.27V164ZM164.055 164H157.316V103.243H164.055V164ZM156.137 85.6675C156.137 84.3947 156.549 83.3278 157.373 82.4668C158.196 81.5684 159.319 81.1191 160.742 81.1191C162.164 81.1191 163.287 81.5684 164.111 82.4668C164.972 83.3278 165.402 84.3947 165.402 85.6675C165.402 86.9403 164.972 88.0072 164.111 88.8682C163.287 89.7292 162.164 90.1597 160.742 90.1597C159.319 90.1597 158.196 89.7292 157.373 88.8682C156.549 88.0072 156.137 86.9403 156.137 85.6675ZM179.665 133.06C179.665 123.626 181.761 116.121 185.954 110.543C190.184 104.928 195.912 102.12 203.137 102.12C211.335 102.12 217.587 105.358 221.892 111.834V77.75H228.574V164H222.285L222.004 155.914C217.699 162.053 211.372 165.123 203.024 165.123C196.024 165.123 190.371 162.315 186.066 156.7C181.799 151.048 179.665 143.43 179.665 133.846V133.06ZM186.459 134.239C186.459 141.988 188.013 148.109 191.12 152.601C194.227 157.056 198.607 159.283 204.26 159.283C212.533 159.283 218.41 155.633 221.892 148.333V119.808C218.41 111.909 212.57 107.96 204.372 107.96C198.719 107.96 194.321 110.187 191.176 114.642C188.032 119.059 186.459 125.592 186.459 134.239ZM269.79 165.123C264.624 165.123 259.944 163.85 255.751 161.305C251.596 158.759 248.358 155.222 246.037 150.692C243.716 146.125 242.556 141.015 242.556 135.362V132.948C242.556 127.108 243.679 121.848 245.925 117.169C248.208 112.49 251.372 108.821 255.415 106.163C259.458 103.468 263.837 102.12 268.554 102.12C275.929 102.12 281.769 104.647 286.074 109.701C290.416 114.717 292.587 121.586 292.587 130.309V134.071H249.238V135.362C249.238 142.25 251.203 147.997 255.134 152.601C259.102 157.168 264.081 159.452 270.07 159.452C273.664 159.452 276.827 158.797 279.56 157.486C282.33 156.176 284.838 154.08 287.084 151.197L291.296 154.398C286.354 161.548 279.186 165.123 269.79 165.123ZM268.554 107.848C263.5 107.848 259.233 109.701 255.751 113.407C252.307 117.113 250.211 122.092 249.462 128.343H285.905V127.613C285.718 121.773 284.052 117.019 280.908 113.351C277.763 109.682 273.645 107.848 268.554 107.848ZM372.717 156.307C368.674 162.184 362.216 165.123 353.344 165.123C346.868 165.123 341.945 163.251 338.576 159.508C335.207 155.727 333.485 150.149 333.41 142.774V103.243H340.092V141.932C340.092 153.5 344.772 159.283 354.13 159.283C363.863 159.283 370.021 155.259 372.604 147.21V103.243H379.343V164H372.829L372.717 156.307ZM433.249 148.558C433.249 145.226 431.901 142.55 429.206 140.528C426.548 138.507 422.524 136.935 417.133 135.812C411.743 134.651 407.55 133.341 404.555 131.881C401.598 130.383 399.389 128.568 397.929 126.434C396.507 124.3 395.795 121.717 395.795 118.685C395.795 113.893 397.798 109.944 401.804 106.837C405.809 103.692 410.938 102.12 417.189 102.12C423.965 102.12 429.393 103.805 433.474 107.174C437.591 110.506 439.65 114.867 439.65 120.257H432.912C432.912 116.701 431.415 113.744 428.42 111.385C425.463 109.027 421.719 107.848 417.189 107.848C412.772 107.848 409.216 108.84 406.521 110.824C403.863 112.77 402.534 115.316 402.534 118.46C402.534 121.493 403.638 123.851 405.847 125.536C408.093 127.183 412.154 128.699 418.032 130.084C423.946 131.469 428.364 132.948 431.284 134.52C434.241 136.092 436.431 137.983 437.854 140.191C439.276 142.4 439.987 145.077 439.987 148.221C439.987 153.35 437.91 157.449 433.754 160.519C429.637 163.588 424.246 165.123 417.583 165.123C410.507 165.123 404.761 163.42 400.344 160.013C395.964 156.569 393.774 152.227 393.774 146.986H400.512C400.774 150.917 402.421 153.986 405.454 156.195C408.523 158.366 412.566 159.452 417.583 159.452C422.262 159.452 426.043 158.422 428.925 156.363C431.808 154.304 433.249 151.703 433.249 148.558ZM478.676 165.123C473.51 165.123 468.831 163.85 464.638 161.305C460.483 158.759 457.245 155.222 454.924 150.692C452.603 146.125 451.442 141.015 451.442 135.362V132.948C451.442 127.108 452.565 121.848 454.812 117.169C457.095 112.49 460.258 108.821 464.301 106.163C468.344 103.468 472.724 102.12 477.441 102.12C484.816 102.12 490.655 104.647 494.96 109.701C499.303 114.717 501.474 121.586 501.474 130.309V134.071H458.125V135.362C458.125 142.25 460.09 147.997 464.021 152.601C467.989 157.168 472.967 159.452 478.957 159.452C482.551 159.452 485.714 158.797 488.447 157.486C491.217 156.176 493.725 154.08 495.971 151.197L500.183 154.398C495.241 161.548 488.072 165.123 478.676 165.123ZM477.441 107.848C472.387 107.848 468.12 109.701 464.638 113.407C461.194 117.113 459.098 122.092 458.349 128.343H494.792V127.613C494.605 121.773 492.939 117.019 489.794 113.351C486.65 109.682 482.532 107.848 477.441 107.848ZM542.634 108.971C541.211 108.709 539.695 108.578 538.085 108.578C533.893 108.578 530.336 109.757 527.417 112.115C524.534 114.436 522.475 117.824 521.24 122.279V164H514.558V103.243H521.127L521.24 112.901C524.796 105.714 530.505 102.12 538.366 102.12C540.238 102.12 541.717 102.363 542.802 102.85L542.634 108.971ZM559.704 103.243L559.929 113.631C562.212 109.888 565.057 107.043 568.464 105.096C571.87 103.112 575.633 102.12 579.75 102.12C586.264 102.12 591.112 103.954 594.294 107.623C597.476 111.292 599.086 116.795 599.123 124.132V164H592.441V124.076C592.403 118.648 591.243 114.605 588.959 111.947C586.713 109.289 583.101 107.96 578.122 107.96C573.967 107.96 570.279 109.27 567.06 111.891C563.878 114.474 561.52 117.974 559.985 122.391V164H553.303V103.243H559.704ZM654.882 164C654.208 162.091 653.778 159.264 653.591 155.521C651.232 158.591 648.219 160.968 644.55 162.652C640.919 164.299 637.063 165.123 632.983 165.123C627.143 165.123 622.408 163.495 618.776 160.238C615.183 156.981 613.386 152.863 613.386 147.884C613.386 141.97 615.838 137.29 620.742 133.846C625.683 130.402 632.552 128.68 641.35 128.68H653.535V121.773C653.535 117.431 652.187 114.024 649.492 111.554C646.834 109.046 642.941 107.792 637.812 107.792C633.133 107.792 629.258 108.989 626.188 111.385C623.119 113.781 621.584 116.664 621.584 120.033L614.846 119.977C614.846 115.147 617.092 110.973 621.584 107.455C626.076 103.898 631.598 102.12 638.149 102.12C644.925 102.12 650.259 103.823 654.152 107.23C658.083 110.599 660.104 115.316 660.217 121.38V150.13C660.217 156.008 660.834 160.406 662.07 163.326V164H654.882ZM633.769 159.171C638.261 159.171 642.267 158.085 645.786 155.914C649.342 153.743 651.925 150.842 653.535 147.21V133.846H641.518C634.817 133.921 629.576 135.156 625.795 137.552C622.014 139.911 620.124 143.167 620.124 147.323C620.124 150.729 621.378 153.556 623.886 155.802C626.432 158.048 629.726 159.171 633.769 159.171ZM684.306 103.243L684.531 113.126C686.777 109.457 689.584 106.706 692.954 104.872C696.323 103.037 700.066 102.12 704.184 102.12C713.767 102.12 719.851 106.051 722.434 113.912C724.605 110.131 727.506 107.23 731.137 105.208C734.768 103.15 738.774 102.12 743.154 102.12C756.181 102.12 762.826 109.233 763.088 123.458V164H756.35V123.963C756.312 118.535 755.133 114.511 752.812 111.891C750.528 109.27 746.785 107.96 741.582 107.96C736.752 108.035 732.672 109.607 729.34 112.677C726.009 115.709 724.156 119.415 723.781 123.795V164H717.043V123.458C717.006 118.255 715.77 114.38 713.337 111.834C710.941 109.251 707.235 107.96 702.219 107.96C697.989 107.96 694.357 109.177 691.325 111.61C688.293 114.006 686.047 117.581 684.587 122.335V164H677.849V103.243H684.306ZM803.686 165.123C798.52 165.123 793.841 163.85 789.648 161.305C785.493 158.759 782.255 155.222 779.934 150.692C777.613 146.125 776.452 141.015 776.452 135.362V132.948C776.452 127.108 777.575 121.848 779.821 117.169C782.105 112.49 785.268 108.821 789.311 106.163C793.354 103.468 797.734 102.12 802.451 102.12C809.825 102.12 815.665 104.647 819.97 109.701C824.313 114.717 826.484 121.586 826.484 130.309V134.071H783.134V135.362C783.134 142.25 785.1 147.997 789.03 152.601C792.998 157.168 797.977 159.452 803.967 159.452C807.561 159.452 810.724 158.797 813.457 157.486C816.227 156.176 818.735 154.08 820.981 151.197L825.192 154.398C820.251 161.548 813.082 165.123 803.686 165.123ZM802.451 107.848C797.397 107.848 793.129 109.701 789.648 113.407C786.204 117.113 784.108 122.092 783.359 128.343H819.802V127.613C819.615 121.773 817.949 117.019 814.804 113.351C811.66 109.682 807.542 107.848 802.451 107.848ZM875.954 148.558C875.954 145.226 874.606 142.55 871.911 140.528C869.253 138.507 865.229 136.935 859.838 135.812C854.448 134.651 850.255 133.341 847.26 131.881C844.303 130.383 842.094 128.568 840.634 126.434C839.212 124.3 838.5 121.717 838.5 118.685C838.5 113.893 840.503 109.944 844.509 106.837C848.514 103.692 853.643 102.12 859.895 102.12C866.67 102.12 872.098 103.805 876.179 107.174C880.297 110.506 882.355 114.867 882.355 120.257H875.617C875.617 116.701 874.12 113.744 871.125 111.385C868.168 109.027 864.424 107.848 859.895 107.848C855.477 107.848 851.921 108.84 849.226 110.824C846.568 112.77 845.239 115.316 845.239 118.46C845.239 121.493 846.343 123.851 848.552 125.536C850.798 127.183 854.86 128.699 860.737 130.084C866.652 131.469 871.069 132.948 873.989 134.52C876.946 136.092 879.136 137.983 880.559 140.191C881.981 142.4 882.692 145.077 882.692 148.221C882.692 153.35 880.615 157.449 876.459 160.519C872.342 163.588 866.951 165.123 860.288 165.123C853.212 165.123 847.466 163.42 843.049 160.013C838.669 156.569 836.479 152.227 836.479 146.986H843.217C843.479 150.917 845.126 153.986 848.159 156.195C851.228 158.366 855.271 159.452 860.288 159.452C864.967 159.452 868.748 158.422 871.63 156.363C874.513 154.304 875.954 151.703 875.954 148.558ZM940.361 150.018L941.372 155.24L942.719 149.737L957.319 103.243H963.046L977.478 149.344L979.05 155.746L980.341 149.85L992.807 103.243H999.77L982.082 164H976.354L960.744 115.821L960.014 112.508L959.284 115.877L943.955 164H938.227L920.595 103.243H927.502L940.361 150.018ZM1020.04 164H1013.3V103.243H1020.04V164ZM1012.12 85.6675C1012.12 84.3947 1012.54 83.3278 1013.36 82.4668C1014.18 81.5684 1015.31 81.1191 1016.73 81.1191C1018.15 81.1191 1019.27 81.5684 1020.1 82.4668C1020.96 83.3278 1021.39 84.3947 1021.39 85.6675C1021.39 86.9403 1020.96 88.0072 1020.1 88.8682C1019.27 89.7292 1018.15 90.1597 1016.73 90.1597C1015.31 90.1597 1014.18 89.7292 1013.36 88.8682C1012.54 88.0072 1012.12 86.9403 1012.12 85.6675ZM1048.79 87.689V103.243H1061.37V108.746H1048.79V149.232C1048.79 152.601 1049.39 155.109 1050.59 156.756C1051.82 158.403 1053.86 159.227 1056.71 159.227C1057.83 159.227 1059.65 159.04 1062.16 158.666L1062.44 164.168C1060.68 164.805 1058.28 165.123 1055.25 165.123C1050.64 165.123 1047.29 163.794 1045.2 161.136C1043.1 158.441 1042.05 154.492 1042.05 149.288V108.746H1030.88V103.243H1042.05V87.689H1048.79ZM1081.98 113.519C1084.19 109.888 1087.01 107.08 1090.46 105.096C1093.9 103.112 1097.66 102.12 1101.74 102.12C1108.26 102.12 1113.1 103.954 1116.29 107.623C1119.47 111.292 1121.08 116.795 1121.12 124.132V164H1114.43V124.076C1114.4 118.648 1113.24 114.605 1110.95 111.947C1108.71 109.289 1105.09 107.96 1100.11 107.96C1095.96 107.96 1092.27 109.27 1089.05 111.891C1085.87 114.474 1083.51 117.974 1081.98 122.391V164H1075.29V77.75H1081.98V113.519Z" fill="black"/>
+<path d="M50.3462 803V747.746H40.2949V742.243H50.3462V734.887C50.3462 728.673 51.9185 723.9 55.063 720.568C58.245 717.237 62.6623 715.571 68.3149 715.571C70.8605 715.571 73.2376 715.889 75.4463 716.525L74.9409 722.141C73.0692 721.691 71.029 721.467 68.8203 721.467C65.1143 721.467 62.2318 722.627 60.1729 724.948C58.1139 727.232 57.0845 730.489 57.0845 734.719V742.243H71.5718V747.746H57.0845V803H50.3462ZM79.8823 771.723C79.8823 765.883 81.0054 760.624 83.2515 755.944C85.535 751.265 88.7357 747.634 92.8535 745.051C97.0088 742.43 101.707 741.12 106.948 741.12C115.034 741.12 121.585 743.965 126.601 749.655C131.617 755.308 134.125 762.814 134.125 772.172V773.576C134.125 779.453 132.984 784.75 130.7 789.467C128.454 794.147 125.272 797.759 121.154 800.305C117.036 802.85 112.338 804.123 107.06 804.123C99.0116 804.123 92.4604 801.297 87.4067 795.644C82.3905 789.954 79.8823 782.43 79.8823 773.071V771.723ZM86.6206 773.576C86.6206 780.839 88.4924 786.809 92.2358 791.489C96.0168 796.131 100.958 798.452 107.06 798.452C113.125 798.452 118.028 796.131 121.772 791.489C125.553 786.809 127.443 780.651 127.443 773.015V771.723C127.443 767.081 126.582 762.832 124.86 758.977C123.138 755.121 120.724 752.145 117.617 750.048C114.51 747.915 110.953 746.848 106.948 746.848C100.958 746.848 96.0729 749.206 92.292 753.923C88.5111 758.602 86.6206 764.742 86.6206 772.341V773.576ZM176.127 747.971C174.705 747.709 173.189 747.578 171.579 747.578C167.386 747.578 163.83 748.757 160.91 751.115C158.028 753.436 155.969 756.824 154.733 761.279V803H148.051V742.243H154.621L154.733 751.901C158.29 744.714 163.999 741.12 171.86 741.12C173.732 741.12 175.21 741.363 176.296 741.85L176.127 747.971ZM263.613 773.239C263.613 782.71 261.516 790.235 257.324 795.812C253.131 801.353 247.516 804.123 240.478 804.123C232.167 804.123 225.804 801.203 221.386 795.363V826.359H214.704V742.243H220.937L221.274 750.834C225.654 744.358 231.999 741.12 240.31 741.12C247.572 741.12 253.262 743.872 257.38 749.375C261.535 754.877 263.613 762.514 263.613 772.285V773.239ZM256.875 772.06C256.875 764.311 255.284 758.19 252.102 753.698C248.92 749.206 244.484 746.96 238.793 746.96C234.676 746.96 231.138 747.952 228.181 749.936C225.223 751.92 222.958 754.803 221.386 758.583V787.727C222.996 791.208 225.298 793.866 228.293 795.7C231.288 797.535 234.825 798.452 238.906 798.452C244.558 798.452 248.957 796.206 252.102 791.713C255.284 787.184 256.875 780.633 256.875 772.06ZM306.625 747.971C305.203 747.709 303.687 747.578 302.077 747.578C297.884 747.578 294.328 748.757 291.408 751.115C288.526 753.436 286.467 756.824 285.231 761.279V803H278.549V742.243H285.119L285.231 751.901C288.788 744.714 294.497 741.12 302.358 741.12C304.23 741.12 305.708 741.363 306.794 741.85L306.625 747.971ZM324.819 803H318.081V742.243H324.819V803ZM316.901 724.667C316.901 723.395 317.313 722.328 318.137 721.467C318.96 720.568 320.083 720.119 321.506 720.119C322.928 720.119 324.051 720.568 324.875 721.467C325.736 722.328 326.167 723.395 326.167 724.667C326.167 725.94 325.736 727.007 324.875 727.868C324.051 728.729 322.928 729.16 321.506 729.16C320.083 729.16 318.96 728.729 318.137 727.868C317.313 727.007 316.901 725.94 316.901 724.667ZM362.048 793.735L380.522 742.243H387.429L364.743 803H359.296L336.499 742.243H343.405L362.048 793.735ZM435.944 803C435.271 801.091 434.84 798.264 434.653 794.521C432.294 797.591 429.281 799.968 425.612 801.652C421.981 803.299 418.125 804.123 414.045 804.123C408.205 804.123 403.47 802.495 399.838 799.238C396.245 795.981 394.448 791.863 394.448 786.884C394.448 780.97 396.9 776.29 401.804 772.846C406.745 769.402 413.614 767.68 422.412 767.68H434.597V760.773C434.597 756.431 433.249 753.024 430.554 750.554C427.896 748.046 424.003 746.792 418.874 746.792C414.195 746.792 410.32 747.989 407.25 750.385C404.181 752.781 402.646 755.664 402.646 759.033L395.908 758.977C395.908 754.147 398.154 749.973 402.646 746.455C407.138 742.898 412.66 741.12 419.211 741.12C425.987 741.12 431.321 742.823 435.214 746.23C439.145 749.599 441.167 754.316 441.279 760.38V789.13C441.279 795.008 441.896 799.406 443.132 802.326V803H435.944ZM414.831 798.171C419.323 798.171 423.329 797.085 426.848 794.914C430.404 792.743 432.987 789.842 434.597 786.21V772.846H422.58C415.879 772.921 410.638 774.156 406.857 776.552C403.076 778.911 401.186 782.167 401.186 786.323C401.186 789.729 402.44 792.556 404.948 794.802C407.494 797.048 410.788 798.171 414.831 798.171ZM469.692 726.689V742.243H482.27V747.746H469.692V788.232C469.692 791.601 470.291 794.109 471.489 795.756C472.724 797.403 474.764 798.227 477.609 798.227C478.732 798.227 480.548 798.04 483.056 797.666L483.337 803.168C481.577 803.805 479.182 804.123 476.149 804.123C471.545 804.123 468.194 802.794 466.098 800.136C464.002 797.441 462.954 793.492 462.954 788.288V747.746H451.779V742.243H462.954V726.689H469.692ZM519.724 804.123C514.558 804.123 509.878 802.85 505.686 800.305C501.53 797.759 498.292 794.222 495.971 789.692C493.65 785.125 492.49 780.015 492.49 774.362V771.948C492.49 766.108 493.613 760.848 495.859 756.169C498.142 751.49 501.306 747.821 505.349 745.163C509.392 742.468 513.771 741.12 518.488 741.12C525.863 741.12 531.703 743.647 536.008 748.701C540.35 753.717 542.521 760.586 542.521 769.309V773.071H499.172V774.362C499.172 781.25 501.137 786.997 505.068 791.601C509.036 796.168 514.015 798.452 520.004 798.452C523.598 798.452 526.761 797.797 529.494 796.486C532.264 795.176 534.772 793.08 537.019 790.197L541.23 793.398C536.289 800.548 529.12 804.123 519.724 804.123ZM518.488 746.848C513.435 746.848 509.167 748.701 505.686 752.407C502.242 756.113 500.145 761.092 499.396 767.343H535.839V766.613C535.652 760.773 533.986 756.019 530.842 752.351C527.697 748.682 523.579 746.848 518.488 746.848ZM591.093 803H584.355V742.243H591.093V803ZM583.176 724.667C583.176 723.395 583.588 722.328 584.411 721.467C585.235 720.568 586.358 720.119 587.78 720.119C589.203 720.119 590.326 720.568 591.149 721.467C592.01 722.328 592.441 723.395 592.441 724.667C592.441 725.94 592.01 727.007 591.149 727.868C590.326 728.729 589.203 729.16 587.78 729.16C586.358 729.16 585.235 728.729 584.411 727.868C583.588 727.007 583.176 725.94 583.176 724.667ZM615.8 742.243L616.025 752.631C618.308 748.888 621.153 746.043 624.56 744.096C627.967 742.112 631.729 741.12 635.847 741.12C642.36 741.12 647.208 742.954 650.39 746.623C653.572 750.292 655.182 755.795 655.219 763.132V803H648.537V763.076C648.5 757.648 647.339 753.605 645.056 750.947C642.81 748.289 639.197 746.96 634.218 746.96C630.063 746.96 626.376 748.27 623.156 750.891C619.974 753.474 617.616 756.974 616.081 761.391V803H609.399V742.243H615.8ZM677.456 803V747.746H667.404V742.243H677.456V734.887C677.456 728.673 679.028 723.9 682.172 720.568C685.354 717.237 689.772 715.571 695.424 715.571C697.97 715.571 700.347 715.889 702.556 716.525L702.05 722.141C700.179 721.691 698.138 721.467 695.93 721.467C692.224 721.467 689.341 722.627 687.282 724.948C685.223 727.232 684.194 730.489 684.194 734.719V742.243H698.681V747.746H684.194V803H677.456ZM706.992 771.723C706.992 765.883 708.115 760.624 710.361 755.944C712.644 751.265 715.845 747.634 719.963 745.051C724.118 742.43 728.816 741.12 734.057 741.12C742.143 741.12 748.694 743.965 753.71 749.655C758.727 755.308 761.235 762.814 761.235 772.172V773.576C761.235 779.453 760.093 784.75 757.81 789.467C755.563 794.147 752.382 797.759 748.264 800.305C744.146 802.85 739.448 804.123 734.169 804.123C726.121 804.123 719.57 801.297 714.516 795.644C709.5 789.954 706.992 782.43 706.992 773.071V771.723ZM713.73 773.576C713.73 780.839 715.602 786.809 719.345 791.489C723.126 796.131 728.068 798.452 734.169 798.452C740.234 798.452 745.138 796.131 748.881 791.489C752.662 786.809 754.553 780.651 754.553 773.015V771.723C754.553 767.081 753.692 762.832 751.97 758.977C750.248 755.121 747.833 752.145 744.726 750.048C741.619 747.915 738.063 746.848 734.057 746.848C728.068 746.848 723.182 749.206 719.401 753.923C715.62 758.602 713.73 764.742 713.73 772.341V773.576ZM803.237 747.971C801.814 747.709 800.298 747.578 798.688 747.578C794.496 747.578 790.939 748.757 788.02 751.115C785.137 753.436 783.078 756.824 781.843 761.279V803H775.161V742.243H781.73L781.843 751.901C785.399 744.714 791.108 741.12 798.969 741.12C800.841 741.12 802.32 741.363 803.405 741.85L803.237 747.971ZM820.026 742.243L820.251 752.126C822.497 748.457 825.305 745.706 828.674 743.872C832.043 742.037 835.786 741.12 839.904 741.12C849.488 741.12 855.571 745.051 858.154 752.912C860.325 749.131 863.226 746.23 866.857 744.208C870.489 742.15 874.494 741.12 878.874 741.12C891.901 741.12 898.546 748.233 898.808 762.458V803H892.07V762.963C892.032 757.535 890.853 753.511 888.532 750.891C886.249 748.27 882.505 746.96 877.302 746.96C872.473 747.035 868.392 748.607 865.061 751.677C861.729 754.709 859.876 758.415 859.501 762.795V803H852.763V762.458C852.726 757.255 851.49 753.38 849.057 750.834C846.661 748.251 842.955 746.96 837.939 746.96C833.709 746.96 830.078 748.177 827.045 750.61C824.013 753.006 821.767 756.581 820.307 761.335V803H813.569V742.243H820.026ZM954.23 803C953.557 801.091 953.126 798.264 952.939 794.521C950.581 797.591 947.567 799.968 943.898 801.652C940.267 803.299 936.411 804.123 932.331 804.123C926.491 804.123 921.756 802.495 918.125 799.238C914.531 795.981 912.734 791.863 912.734 786.884C912.734 780.97 915.186 776.29 920.09 772.846C925.031 769.402 931.901 767.68 940.698 767.68H952.883V760.773C952.883 756.431 951.535 753.024 948.84 750.554C946.182 748.046 942.289 746.792 937.16 746.792C932.481 746.792 928.606 747.989 925.537 750.385C922.467 752.781 920.932 755.664 920.932 759.033L914.194 758.977C914.194 754.147 916.44 749.973 920.932 746.455C925.424 742.898 930.946 741.12 937.497 741.12C944.273 741.12 949.607 742.823 953.5 746.23C957.431 749.599 959.453 754.316 959.565 760.38V789.13C959.565 795.008 960.183 799.406 961.418 802.326V803H954.23ZM933.117 798.171C937.609 798.171 941.615 797.085 945.134 794.914C948.69 792.743 951.273 789.842 952.883 786.21V772.846H940.866C934.165 772.921 928.924 774.156 925.144 776.552C921.363 778.911 919.472 782.167 919.472 786.323C919.472 789.729 920.726 792.556 923.234 794.802C925.78 797.048 929.074 798.171 933.117 798.171ZM987.978 726.689V742.243H1000.56V747.746H987.978V788.232C987.978 791.601 988.577 794.109 989.775 795.756C991.01 797.403 993.05 798.227 995.896 798.227C997.019 798.227 998.834 798.04 1001.34 797.666L1001.62 803.168C999.864 803.805 997.468 804.123 994.436 804.123C989.831 804.123 986.481 802.794 984.384 800.136C982.288 797.441 981.24 793.492 981.24 788.288V747.746H970.065V742.243H981.24V726.689H987.978ZM1022.01 803H1015.27V742.243H1022.01V803ZM1014.09 724.667C1014.09 723.395 1014.5 722.328 1015.32 721.467C1016.15 720.568 1017.27 720.119 1018.69 720.119C1020.12 720.119 1021.24 720.568 1022.06 721.467C1022.92 722.328 1023.35 723.395 1023.35 724.667C1023.35 725.94 1022.92 727.007 1022.06 727.868C1021.24 728.729 1020.12 729.16 1018.69 729.16C1017.27 729.16 1016.15 728.729 1015.32 727.868C1014.5 727.007 1014.09 725.94 1014.09 724.667ZM1036.61 771.723C1036.61 765.883 1037.73 760.624 1039.98 755.944C1042.26 751.265 1045.46 747.634 1049.58 745.051C1053.73 742.43 1058.43 741.12 1063.67 741.12C1071.76 741.12 1078.31 743.965 1083.32 749.655C1088.34 755.308 1090.85 762.814 1090.85 772.172V773.576C1090.85 779.453 1089.71 784.75 1087.42 789.467C1085.18 794.147 1082 797.759 1077.88 800.305C1073.76 802.85 1069.06 804.123 1063.78 804.123C1055.74 804.123 1049.18 801.297 1044.13 795.644C1039.11 789.954 1036.61 782.43 1036.61 773.071V771.723ZM1043.34 773.576C1043.34 780.839 1045.22 786.809 1048.96 791.489C1052.74 796.131 1057.68 798.452 1063.78 798.452C1069.85 798.452 1074.75 796.131 1078.5 791.489C1082.28 786.809 1084.17 780.651 1084.17 773.015V771.723C1084.17 767.081 1083.31 762.832 1081.58 758.977C1079.86 755.121 1077.45 752.145 1074.34 750.048C1071.23 747.915 1067.68 746.848 1063.67 746.848C1057.68 746.848 1052.8 749.206 1049.02 753.923C1045.23 758.602 1043.34 764.742 1043.34 772.341V773.576ZM1111.18 742.243L1111.4 752.631C1113.68 748.888 1116.53 746.043 1119.94 744.096C1123.34 742.112 1127.1 741.12 1131.22 741.12C1137.74 741.12 1142.58 742.954 1145.77 746.623C1148.95 750.292 1150.56 755.795 1150.6 763.132V803H1143.91V763.076C1143.88 757.648 1142.72 753.605 1140.43 750.947C1138.19 748.289 1134.57 746.96 1129.59 746.96C1125.44 746.96 1121.75 748.27 1118.53 750.891C1115.35 753.474 1112.99 756.974 1111.46 761.391V803H1104.77V742.243H1111.18Z" fill="black"/>
+<defs>
+<filter id="filter0_bd" x="-46" y="-50" width="1288" height="988" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dy="4"/>
+<feGaussianBlur stdDeviation="2"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
+<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
+</filter>
+<filter id="filter1_d" x="37.3359" y="222.812" width="1114.49" height="438.141" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="15"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+<clipPath id="clip0">
+<rect width="775.218" height="775.218" fill="white" transform="translate(211.326 57.3262)"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/Features/ClicksForms/Buttons.svg b/public/Features/ClicksForms/Buttons.svg
new file mode 100644
index 0000000..813269b
--- /dev/null
+++ b/public/Features/ClicksForms/Buttons.svg
@@ -0,0 +1,68 @@
+<svg width="2444" height="1850" viewBox="0 0 2444 1850" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g filter="url(#filter0_bd)">
+<rect x="4" width="2436" height="1842" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
+</g>
+<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="4" y="0" width="2436" height="1842">
+<rect x="4" width="2436" height="1842" rx="100" fill="#181818"/>
+</mask>
+<g mask="url(#mask0)">
+<rect x="-159" y="865" width="846" height="376" rx="50" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M157 925H-99V1181H157V925ZM115.547 1041.27L70.0758 995.803C63.7245 989.451 53.427 989.451 47.0758 995.803C40.7245 1002.15 40.7245 1012.45 47.0758 1018.8L65.0464 1036.77L-53.9531 1036.77C-62.7897 1036.77 -69.9531 1043.94 -69.9531 1052.77C-69.9531 1061.61 -62.7897 1068.77 -53.9531 1068.77L65.0474 1068.77L47.0757 1086.75C40.7245 1093.1 40.7245 1103.39 47.0757 1109.75C53.427 1116.1 63.7245 1116.1 70.0757 1109.75L115.547 1064.27C121.898 1057.92 121.898 1047.63 115.547 1041.27Z" fill="white"/>
+<path d="M330.828 1077.78C330.828 1071.87 328.753 1067.21 324.603 1063.79C320.452 1060.32 312.859 1057.05 301.824 1053.98C290.789 1050.85 282.732 1047.46 277.654 1043.79C270.428 1038.62 266.814 1031.83 266.814 1023.43C266.814 1015.28 270.159 1008.66 276.849 1003.58C283.587 998.458 292.181 995.895 302.63 995.895C309.71 995.895 316.033 997.262 321.6 999.996C327.215 1002.73 331.561 1006.54 334.637 1011.42C337.713 1016.3 339.251 1021.75 339.251 1027.75H330.169C330.169 1020.48 327.679 1014.64 322.698 1010.25C317.718 1005.81 311.028 1003.58 302.63 1003.58C294.476 1003.58 287.981 1005.42 283.147 1009.08C278.313 1012.69 275.896 1017.43 275.896 1023.29C275.896 1028.71 278.069 1033.13 282.415 1036.54C286.761 1039.96 293.719 1042.99 303.289 1045.63C312.859 1048.21 320.11 1050.92 325.042 1053.76C329.974 1056.54 333.685 1059.88 336.175 1063.79C338.665 1067.7 339.91 1072.31 339.91 1077.63C339.91 1086.03 336.541 1092.77 329.803 1097.85C323.113 1102.93 314.275 1105.46 303.289 1105.46C295.77 1105.46 288.86 1104.12 282.562 1101.44C276.312 1098.75 271.551 1094.99 268.279 1090.16C265.057 1085.32 263.445 1079.78 263.445 1073.53H272.454C272.454 1081.05 275.262 1086.98 280.877 1091.33C286.492 1095.67 293.963 1097.85 303.289 1097.85C311.59 1097.85 318.255 1096.02 323.284 1092.35C328.313 1088.69 330.828 1083.83 330.828 1077.78ZM376.165 1064.08L366.131 1073.75V1104H357.342V991.5H366.131V1063.5L374.407 1054.56L404.729 1024.75H415.789L382.171 1058.15L418.719 1104H408.245L376.165 1064.08ZM440.691 1104H431.902V1024.75H440.691V1104ZM430.364 1001.83C430.364 1000.17 430.901 998.775 431.976 997.652C433.05 996.48 434.515 995.895 436.37 995.895C438.226 995.895 439.69 996.48 440.765 997.652C441.888 998.775 442.449 1000.17 442.449 1001.83C442.449 1003.49 441.888 1004.88 440.765 1006C439.69 1007.12 438.226 1007.69 436.37 1007.69C434.515 1007.69 433.05 1007.12 431.976 1006C430.901 1004.88 430.364 1003.49 430.364 1001.83ZM528.289 1065.18C528.289 1077.54 525.555 1087.35 520.086 1094.62C514.617 1101.85 507.293 1105.46 498.113 1105.46C487.273 1105.46 478.973 1101.66 473.211 1094.04V1134.47H464.495V1024.75H472.625L473.064 1035.96C478.777 1027.51 487.054 1023.29 497.894 1023.29C507.366 1023.29 514.788 1026.88 520.159 1034.05C525.579 1041.23 528.289 1051.19 528.289 1063.94V1065.18ZM519.5 1063.64C519.5 1053.54 517.425 1045.55 513.274 1039.69C509.124 1033.83 503.338 1030.9 495.916 1030.9C490.545 1030.9 485.931 1032.2 482.073 1034.79C478.216 1037.37 475.262 1041.13 473.211 1046.07V1084.08C475.311 1088.62 478.313 1092.09 482.22 1094.48C486.126 1096.87 490.74 1098.07 496.062 1098.07C503.436 1098.07 509.173 1095.14 513.274 1089.28C517.425 1083.37 519.5 1074.83 519.5 1063.64Z" fill="white"/>
+<rect x="784" y="865" width="1015" height="376" rx="50" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M844 925H1100V1181H844V925ZM1046.49 979.469C1052.74 985.717 1052.74 995.848 1046.49 1002.1L995.106 1053.48L1046.49 1104.86C1052.74 1111.11 1052.74 1121.24 1046.49 1127.49C1040.24 1133.74 1030.11 1133.74 1023.86 1127.49L972.478 1076.11L921.096 1127.49C914.848 1133.74 904.717 1133.74 898.469 1127.49C892.22 1121.24 892.22 1111.11 898.469 1104.86L949.851 1053.48L898.469 1002.1C892.22 995.848 892.22 985.717 898.469 979.469C904.717 973.22 914.848 973.22 921.096 979.469L972.478 1030.85L1023.86 979.469C1030.11 973.22 1040.24 973.22 1046.49 979.469Z" fill="white"/>
+<path d="M1288.99 1070.75C1287.77 1081.98 1283.74 1090.57 1276.9 1096.53C1270.12 1102.49 1261.06 1105.46 1249.73 1105.46C1241.82 1105.46 1234.81 1103.49 1228.71 1099.53C1222.66 1095.58 1217.97 1089.99 1214.65 1082.76C1211.33 1075.48 1209.64 1067.18 1209.59 1057.86V1044.01C1209.59 1034.54 1211.25 1026.14 1214.58 1018.82C1217.9 1011.5 1222.66 1005.86 1228.86 1001.9C1235.11 997.896 1242.29 995.895 1250.39 995.895C1261.82 995.895 1270.83 998.995 1277.42 1005.2C1284.06 1011.35 1287.92 1019.87 1288.99 1030.76H1279.91C1277.66 1012.64 1267.82 1003.58 1250.39 1003.58C1240.72 1003.58 1233.01 1007.2 1227.25 1014.42C1221.53 1021.65 1218.68 1031.64 1218.68 1044.38V1057.42C1218.68 1069.72 1221.46 1079.54 1227.03 1086.86C1232.64 1094.19 1240.21 1097.85 1249.73 1097.85C1259.16 1097.85 1266.26 1095.6 1271.04 1091.11C1275.83 1086.57 1278.78 1079.78 1279.91 1070.75H1288.99ZM1358.86 1104C1357.98 1101.51 1357.42 1097.82 1357.18 1092.94C1354.1 1096.94 1350.17 1100.04 1345.39 1102.24C1340.65 1104.39 1335.62 1105.46 1330.3 1105.46C1322.68 1105.46 1316.5 1103.34 1311.77 1099.09C1307.08 1094.84 1304.74 1089.47 1304.74 1082.98C1304.74 1075.26 1307.93 1069.16 1314.33 1064.67C1320.78 1060.18 1329.74 1057.93 1341.21 1057.93H1357.1V1048.92C1357.1 1043.26 1355.35 1038.81 1351.83 1035.59C1348.36 1032.32 1343.29 1030.68 1336.6 1030.68C1330.49 1030.68 1325.44 1032.25 1321.44 1035.37C1317.43 1038.5 1315.43 1042.26 1315.43 1046.65L1306.64 1046.58C1306.64 1040.28 1309.57 1034.83 1315.43 1030.25C1321.29 1025.61 1328.49 1023.29 1337.04 1023.29C1345.87 1023.29 1352.83 1025.51 1357.91 1029.95C1363.04 1034.35 1365.67 1040.5 1365.82 1048.41V1085.91C1365.82 1093.58 1366.63 1099.31 1368.24 1103.12V1104H1358.86ZM1331.32 1097.7C1337.18 1097.7 1342.41 1096.29 1347 1093.45C1351.64 1090.62 1355 1086.84 1357.1 1082.1V1064.67H1341.43C1332.69 1064.77 1325.85 1066.38 1320.92 1069.5C1315.99 1072.58 1313.53 1076.83 1313.53 1082.25C1313.53 1086.69 1315.16 1090.38 1318.43 1093.31C1321.75 1096.24 1326.05 1097.7 1331.32 1097.7ZM1397.61 1024.75L1397.9 1038.3C1400.88 1033.42 1404.59 1029.71 1409.03 1027.17C1413.48 1024.58 1418.38 1023.29 1423.75 1023.29C1432.25 1023.29 1438.57 1025.68 1442.72 1030.46C1446.88 1035.25 1448.97 1042.43 1449.02 1052V1104H1440.31V1051.92C1440.26 1044.84 1438.75 1039.57 1435.77 1036.1C1432.84 1032.64 1428.12 1030.9 1421.63 1030.9C1416.21 1030.9 1411.4 1032.61 1407.2 1036.03C1403.05 1039.4 1399.98 1043.97 1397.97 1049.73V1104H1389.26V1024.75H1397.61ZM1501.03 1098.07C1507.13 1098.07 1512.23 1096.36 1516.33 1092.94C1520.48 1089.47 1522.73 1085.01 1523.07 1079.54H1531.49C1531.25 1084.37 1529.74 1088.79 1526.95 1092.79C1524.17 1096.75 1520.46 1099.85 1515.82 1102.1C1511.23 1104.34 1506.3 1105.46 1501.03 1105.46C1490.62 1105.46 1482.37 1101.85 1476.27 1094.62C1470.21 1087.4 1467.19 1077.68 1467.19 1065.47V1062.84C1467.19 1055.03 1468.55 1048.12 1471.29 1042.11C1474.02 1036.1 1477.93 1031.47 1483.01 1028.19C1488.13 1024.92 1494.12 1023.29 1500.95 1023.29C1509.64 1023.29 1516.8 1025.88 1522.41 1031.05C1528.08 1036.23 1531.1 1043.04 1531.49 1051.49H1523.07C1522.68 1045.28 1520.43 1040.28 1516.33 1036.47C1512.28 1032.66 1507.15 1030.76 1500.95 1030.76C1493.04 1030.76 1486.89 1033.61 1482.5 1039.33C1478.15 1045.04 1475.98 1053.05 1475.98 1063.35V1065.91C1475.98 1076.02 1478.15 1083.91 1482.5 1089.57C1486.89 1095.24 1493.07 1098.07 1501.03 1098.07ZM1579.76 1105.46C1573.02 1105.46 1566.92 1103.8 1561.45 1100.48C1556.03 1097.16 1551.81 1092.55 1548.78 1086.64C1545.75 1080.68 1544.24 1074.02 1544.24 1066.65V1063.5C1544.24 1055.88 1545.7 1049.02 1548.63 1042.92C1551.61 1036.81 1555.74 1032.03 1561.01 1028.56C1566.28 1025.04 1572 1023.29 1578.15 1023.29C1587.77 1023.29 1595.39 1026.58 1601 1033.17C1606.67 1039.72 1609.5 1048.68 1609.5 1060.05V1064.96H1552.95V1066.65C1552.95 1075.63 1555.52 1083.13 1560.64 1089.13C1565.82 1095.09 1572.31 1098.07 1580.13 1098.07C1584.81 1098.07 1588.94 1097.21 1592.5 1095.5C1596.12 1093.79 1599.39 1091.06 1602.32 1087.3L1607.81 1091.48C1601.37 1100.8 1592.02 1105.46 1579.76 1105.46ZM1578.15 1030.76C1571.56 1030.76 1565.99 1033.17 1561.45 1038.01C1556.96 1042.84 1554.22 1049.34 1553.25 1057.49H1600.78V1056.54C1600.54 1048.92 1598.36 1042.72 1594.26 1037.94C1590.16 1033.15 1584.79 1030.76 1578.15 1030.76ZM1636.38 1104H1627.59V991.5H1636.38V1104Z" fill="white"/>
+<rect x="1896" y="865" width="816" height="376" rx="50" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M2212 925H1956V1181H2212V925ZM2111.47 1034L2102.98 1025.52L2019.44 1109.07V1117.56H2027.93L2111.47 1034ZM2129.72 972.674C2131.48 970.922 2133.87 970 2136.18 970C2138.58 970 2140.88 970.83 2142.73 972.674L2164.3 994.254C2167.9 997.851 2167.9 1003.66 2164.3 1007.26L2147.43 1024.13L2112.85 989.551L2129.72 972.674ZM2001 1101.42L2102.98 999.419L2137.56 1034L2035.58 1136H2001V1101.42Z" fill="white"/>
+<path d="M2384.36 1052.88H2334.49V1096.38H2391.83V1104H2325.48V997.359H2391.47V1005.05H2334.49V1045.26H2384.36V1052.88ZM2403.85 1063.64C2403.85 1051.34 2406.58 1041.55 2412.05 1034.27C2417.57 1026.95 2425.04 1023.29 2434.46 1023.29C2445.15 1023.29 2453.31 1027.51 2458.92 1035.96V991.5H2467.64V1104H2459.44L2459.07 1093.45C2453.46 1101.46 2445.2 1105.46 2434.31 1105.46C2425.18 1105.46 2417.81 1101.8 2412.2 1094.48C2406.63 1087.11 2403.85 1077.17 2403.85 1064.67V1063.64ZM2412.71 1065.18C2412.71 1075.29 2414.73 1083.27 2418.79 1089.13C2422.84 1094.94 2428.55 1097.85 2435.93 1097.85C2446.72 1097.85 2454.38 1093.09 2458.92 1083.57V1046.36C2454.38 1036.06 2446.77 1030.9 2436.07 1030.9C2428.7 1030.9 2422.96 1033.81 2418.86 1039.62C2414.76 1045.38 2412.71 1053.9 2412.71 1065.18ZM2500.53 1104H2491.74V1024.75H2500.53V1104ZM2490.2 1001.83C2490.2 1000.17 2490.74 998.775 2491.81 997.652C2492.88 996.48 2494.35 995.895 2496.2 995.895C2498.06 995.895 2499.52 996.48 2500.6 997.652C2501.72 998.775 2502.28 1000.17 2502.28 1001.83C2502.28 1003.49 2501.72 1004.88 2500.6 1006C2499.52 1007.12 2498.06 1007.69 2496.2 1007.69C2494.35 1007.69 2492.88 1007.12 2491.81 1006C2490.74 1004.88 2490.2 1003.49 2490.2 1001.83ZM2538.03 1004.46V1024.75H2554.43V1031.93H2538.03V1084.74C2538.03 1089.13 2538.81 1092.4 2540.37 1094.55C2541.98 1096.7 2544.64 1097.77 2548.35 1097.77C2549.82 1097.77 2552.19 1097.53 2555.46 1097.04L2555.82 1104.22C2553.53 1105.05 2550.4 1105.46 2546.45 1105.46C2540.44 1105.46 2536.07 1103.73 2533.34 1100.26C2530.6 1096.75 2529.24 1091.6 2529.24 1084.81V1031.93H2514.66V1024.75H2529.24V1004.46H2538.03Z" fill="white"/>
+<rect x="-1055" y="1280" width="1312" height="376" rx="50" fill="black"/>
+<path d="M-625.523 1519V1412.36H-595.714C-586.974 1412.36 -579.137 1414.36 -572.203 1418.37C-565.27 1422.32 -559.874 1428.01 -556.017 1435.43C-552.11 1442.85 -550.157 1451.3 -550.157 1460.77V1470.59C-550.157 1480.11 -552.086 1488.56 -555.943 1495.93C-559.801 1503.3 -565.245 1508.99 -572.276 1512.99C-579.259 1517 -587.291 1519 -596.373 1519H-625.523ZM-616.515 1420.05V1511.38H-596.3C-585.069 1511.38 -576.061 1507.67 -569.273 1500.25C-562.486 1492.78 -559.093 1482.7 -559.093 1470V1460.63C-559.093 1448.37 -562.438 1438.56 -569.127 1431.18C-575.816 1423.81 -584.63 1420.1 -595.567 1420.05H-616.515ZM-498.595 1520.46C-505.333 1520.46 -511.437 1518.8 -516.905 1515.48C-522.325 1512.16 -526.549 1507.55 -529.576 1501.64C-532.604 1495.68 -534.117 1489.02 -534.117 1481.65V1478.5C-534.117 1470.88 -532.652 1464.02 -529.723 1457.92C-526.744 1451.81 -522.618 1447.03 -517.345 1443.56C-512.071 1440.04 -506.358 1438.29 -500.206 1438.29C-490.587 1438.29 -482.97 1441.58 -477.354 1448.17C-471.69 1454.72 -468.858 1463.68 -468.858 1475.05V1479.96H-525.401V1481.65C-525.401 1490.63 -522.838 1498.13 -517.711 1504.13C-512.535 1510.09 -506.041 1513.07 -498.229 1513.07C-493.541 1513.07 -489.415 1512.21 -485.851 1510.5C-482.237 1508.79 -478.966 1506.06 -476.036 1502.3L-470.543 1506.48C-476.988 1515.8 -486.339 1520.46 -498.595 1520.46ZM-500.206 1445.76C-506.798 1445.76 -512.364 1448.17 -516.905 1453.01C-521.397 1457.84 -524.132 1464.34 -525.108 1472.49H-477.574V1471.54C-477.818 1463.92 -479.991 1457.72 -484.093 1452.94C-488.194 1448.15 -493.565 1445.76 -500.206 1445.76ZM-404.332 1498.86C-404.332 1494.51 -406.09 1491.02 -409.605 1488.38C-413.072 1485.75 -418.321 1483.7 -425.353 1482.23C-432.384 1480.72 -437.853 1479.01 -441.759 1477.11C-445.616 1475.15 -448.497 1472.78 -450.401 1470C-452.257 1467.22 -453.185 1463.85 -453.185 1459.89C-453.185 1453.64 -450.572 1448.49 -445.348 1444.44C-440.123 1440.34 -433.434 1438.29 -425.279 1438.29C-416.441 1438.29 -409.361 1440.48 -404.039 1444.88C-398.668 1449.22 -395.982 1454.91 -395.982 1461.94H-404.771C-404.771 1457.31 -406.725 1453.45 -410.631 1450.37C-414.488 1447.3 -419.371 1445.76 -425.279 1445.76C-431.041 1445.76 -435.68 1447.05 -439.195 1449.64C-442.662 1452.18 -444.396 1455.5 -444.396 1459.6C-444.396 1463.56 -442.955 1466.63 -440.074 1468.83C-437.145 1470.98 -431.847 1472.96 -424.181 1474.76C-416.466 1476.57 -410.704 1478.5 -406.896 1480.55C-403.038 1482.6 -400.182 1485.06 -398.326 1487.95C-396.471 1490.83 -395.543 1494.32 -395.543 1498.42C-395.543 1505.11 -398.253 1510.46 -403.673 1514.46C-409.044 1518.46 -416.075 1520.46 -424.767 1520.46C-433.995 1520.46 -441.49 1518.24 -447.252 1513.8C-452.965 1509.31 -455.821 1503.64 -455.821 1496.81H-447.032C-446.69 1501.93 -444.542 1505.94 -440.587 1508.82C-436.583 1511.65 -431.31 1513.07 -424.767 1513.07C-418.663 1513.07 -413.731 1511.72 -409.972 1509.04C-406.212 1506.35 -404.332 1502.96 -404.332 1498.86ZM-346.471 1513.07C-340.367 1513.07 -335.265 1511.36 -331.163 1507.94C-327.013 1504.47 -324.767 1500.01 -324.425 1494.54H-316.002C-316.246 1499.37 -317.76 1503.79 -320.543 1507.79C-323.326 1511.75 -327.037 1514.85 -331.676 1517.1C-336.266 1519.34 -341.197 1520.46 -346.471 1520.46C-356.871 1520.46 -365.123 1516.85 -371.227 1509.62C-377.281 1502.4 -380.309 1492.68 -380.309 1480.47V1477.84C-380.309 1470.03 -378.941 1463.12 -376.207 1457.11C-373.473 1451.1 -369.566 1446.47 -364.488 1443.19C-359.361 1439.92 -353.38 1438.29 -346.544 1438.29C-337.853 1438.29 -330.699 1440.88 -325.084 1446.05C-319.42 1451.23 -316.393 1458.04 -316.002 1466.49H-324.425C-324.815 1460.28 -327.062 1455.28 -331.163 1451.47C-335.216 1447.66 -340.343 1445.76 -346.544 1445.76C-354.454 1445.76 -360.606 1448.61 -365.001 1454.33C-369.347 1460.04 -371.52 1468.05 -371.52 1478.35V1480.91C-371.52 1491.02 -369.347 1498.91 -365.001 1504.57C-360.606 1510.24 -354.43 1513.07 -346.471 1513.07ZM-261.803 1447.22C-263.658 1446.88 -265.636 1446.71 -267.735 1446.71C-273.204 1446.71 -277.843 1448.25 -281.651 1451.32C-285.411 1454.35 -288.097 1458.77 -289.708 1464.58V1519H-298.424V1439.75H-289.854L-289.708 1452.35C-285.069 1442.97 -277.623 1438.29 -267.369 1438.29C-264.928 1438.29 -262.999 1438.6 -261.583 1439.24L-261.803 1447.22ZM-238.072 1519H-246.861V1439.75H-238.072V1519ZM-248.399 1416.83C-248.399 1415.17 -247.862 1413.78 -246.788 1412.65C-245.714 1411.48 -244.249 1410.89 -242.394 1410.89C-240.538 1410.89 -239.073 1411.48 -237.999 1412.65C-236.876 1413.78 -236.314 1415.17 -236.314 1416.83C-236.314 1418.49 -236.876 1419.88 -237.999 1421C-239.073 1422.12 -240.538 1422.69 -242.394 1422.69C-244.249 1422.69 -245.714 1422.12 -246.788 1421C-247.862 1419.88 -248.399 1418.49 -248.399 1416.83ZM-150.475 1480.18C-150.475 1492.54 -153.209 1502.35 -158.678 1509.62C-164.146 1516.85 -171.471 1520.46 -180.65 1520.46C-191.49 1520.46 -199.791 1516.66 -205.553 1509.04V1549.47H-214.269V1439.75H-206.139L-205.699 1450.96C-199.986 1442.51 -191.71 1438.29 -180.87 1438.29C-171.397 1438.29 -163.976 1441.88 -158.604 1449.05C-153.185 1456.23 -150.475 1466.19 -150.475 1478.94V1480.18ZM-159.264 1478.64C-159.264 1468.54 -161.339 1460.55 -165.489 1454.69C-169.64 1448.83 -175.426 1445.9 -182.848 1445.9C-188.219 1445.9 -192.833 1447.2 -196.69 1449.79C-200.548 1452.37 -203.502 1456.13 -205.553 1461.07V1499.08C-203.453 1503.62 -200.45 1507.09 -196.544 1509.48C-192.638 1511.87 -188.023 1513.07 -182.701 1513.07C-175.328 1513.07 -169.591 1510.14 -165.489 1504.28C-161.339 1498.37 -159.264 1489.83 -159.264 1478.64ZM-117.369 1419.46V1439.75H-100.963V1446.93H-117.369V1499.74C-117.369 1504.13 -116.588 1507.4 -115.025 1509.55C-113.414 1511.7 -110.753 1512.77 -107.042 1512.77C-105.577 1512.77 -103.209 1512.53 -99.9375 1512.04L-99.5713 1519.22C-101.866 1520.05 -104.991 1520.46 -108.946 1520.46C-114.952 1520.46 -119.322 1518.73 -122.057 1515.26C-124.791 1511.75 -126.158 1506.6 -126.158 1499.81V1446.93H-140.733V1439.75H-126.158V1419.46H-117.369ZM-72.9844 1519H-81.7734V1439.75H-72.9844V1519ZM-83.3115 1416.83C-83.3115 1415.17 -82.7744 1413.78 -81.7002 1412.65C-80.626 1411.48 -79.1611 1410.89 -77.3057 1410.89C-75.4502 1410.89 -73.9854 1411.48 -72.9111 1412.65C-71.7881 1413.78 -71.2266 1415.17 -71.2266 1416.83C-71.2266 1418.49 -71.7881 1419.88 -72.9111 1421C-73.9854 1422.12 -75.4502 1422.69 -77.3057 1422.69C-79.1611 1422.69 -80.626 1422.12 -81.7002 1421C-82.7744 1419.88 -83.3115 1418.49 -83.3115 1416.83ZM-53.9414 1478.2C-53.9414 1470.59 -52.4766 1463.73 -49.5469 1457.62C-46.5684 1451.52 -42.3936 1446.78 -37.0225 1443.41C-31.6025 1440 -25.4746 1438.29 -18.6387 1438.29C-8.0918 1438.29 0.453125 1442 6.99609 1449.42C13.5391 1456.79 16.8105 1466.58 16.8105 1478.79V1480.62C16.8105 1488.29 15.3213 1495.2 12.3428 1501.35C9.41309 1507.45 5.2627 1512.16 -0.108398 1515.48C-5.47949 1518.8 -11.6074 1520.46 -18.4922 1520.46C-28.9902 1520.46 -37.5352 1516.78 -44.127 1509.41C-50.6699 1501.98 -53.9414 1492.17 -53.9414 1479.96V1478.2ZM-45.1523 1480.62C-45.1523 1490.09 -42.7109 1497.88 -37.8281 1503.99C-32.8965 1510.04 -26.4512 1513.07 -18.4922 1513.07C-10.582 1513.07 -4.18555 1510.04 0.697266 1503.99C5.62891 1497.88 8.09473 1489.85 8.09473 1479.89V1478.2C8.09473 1472.15 6.97168 1466.61 4.72559 1461.58C2.47949 1456.55 -0.669922 1452.67 -4.72266 1449.93C-8.77539 1447.15 -13.4141 1445.76 -18.6387 1445.76C-26.4512 1445.76 -32.8232 1448.83 -37.7549 1454.99C-42.6865 1461.09 -45.1523 1469.1 -45.1523 1479.01V1480.62ZM43.3242 1439.75L43.6172 1453.3C46.5957 1448.42 50.3066 1444.71 54.75 1442.17C59.1934 1439.58 64.1006 1438.29 69.4717 1438.29C77.9678 1438.29 84.291 1440.68 88.4414 1445.46C92.5918 1450.25 94.6914 1457.43 94.7402 1467V1519H86.0244V1466.92C85.9756 1459.84 84.4619 1454.57 81.4834 1451.1C78.5537 1447.64 73.8418 1445.9 67.3477 1445.9C61.9277 1445.9 57.1182 1447.61 52.9189 1451.03C48.7686 1454.4 45.6924 1458.97 43.6904 1464.73V1519H34.9746V1439.75H43.3242Z" fill="white"/>
+<rect x="354" y="1280" width="849" height="376" rx="50" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M414 1340H670V1596H414V1340ZM491.047 1433.12L448.777 1418.35V1398.13L512.146 1424.68V1441.78L448.777 1468.41V1448.11L491.047 1433.12ZM649.047 1464.96H539.047V1477.3H649.047V1464.96Z" fill="white"/>
+<path d="M855.84 1420.05H819.292V1519H810.283V1420.05H773.809V1412.36H855.84V1420.05ZM880.889 1519H872.1V1439.75H880.889V1519ZM870.562 1416.83C870.562 1415.17 871.099 1413.78 872.173 1412.65C873.247 1411.48 874.712 1410.89 876.567 1410.89C878.423 1410.89 879.888 1411.48 880.962 1412.65C882.085 1413.78 882.646 1415.17 882.646 1416.83C882.646 1418.49 882.085 1419.88 880.962 1421C879.888 1422.12 878.423 1422.69 876.567 1422.69C874.712 1422.69 873.247 1422.12 872.173 1421C871.099 1419.88 870.562 1418.49 870.562 1416.83ZM918.389 1419.46V1439.75H934.795V1446.93H918.389V1499.74C918.389 1504.13 919.17 1507.4 920.732 1509.55C922.344 1511.7 925.005 1512.77 928.716 1512.77C930.181 1512.77 932.549 1512.53 935.82 1512.04L936.187 1519.22C933.892 1520.05 930.767 1520.46 926.812 1520.46C920.806 1520.46 916.436 1518.73 913.701 1515.26C910.967 1511.75 909.6 1506.6 909.6 1499.81V1446.93H895.024V1439.75H909.6V1419.46H918.389ZM962.773 1519H953.984V1406.5H962.773V1519ZM1017.34 1520.46C1010.6 1520.46 1004.5 1518.8 999.028 1515.48C993.608 1512.16 989.385 1507.55 986.357 1501.64C983.33 1495.68 981.816 1489.02 981.816 1481.65V1478.5C981.816 1470.88 983.281 1464.02 986.211 1457.92C989.189 1451.81 993.315 1447.03 998.589 1443.56C1003.86 1440.04 1009.58 1438.29 1015.73 1438.29C1025.35 1438.29 1032.96 1441.58 1038.58 1448.17C1044.24 1454.72 1047.08 1463.68 1047.08 1475.05V1479.96H990.532V1481.65C990.532 1490.63 993.096 1498.13 998.223 1504.13C1003.4 1510.09 1009.89 1513.07 1017.71 1513.07C1022.39 1513.07 1026.52 1512.21 1030.08 1510.5C1033.7 1508.79 1036.97 1506.06 1039.9 1502.3L1045.39 1506.48C1038.95 1515.8 1029.59 1520.46 1017.34 1520.46ZM1015.73 1445.76C1009.14 1445.76 1003.57 1448.17 999.028 1453.01C994.536 1457.84 991.802 1464.34 990.825 1472.49H1038.36V1471.54C1038.12 1463.92 1035.94 1457.72 1031.84 1452.94C1027.74 1448.15 1022.37 1445.76 1015.73 1445.76Z" fill="white"/>
+<rect x="1300" y="1280" width="999" height="376" rx="50" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M1616 1340H1360V1596H1616V1340ZM1586 1511.5C1586 1485.38 1575.62 1460.32 1557.15 1441.85C1538.68 1423.38 1513.62 1413 1487.5 1413C1461.38 1413 1436.32 1423.38 1417.85 1441.85C1399.38 1460.32 1389 1485.38 1389 1511.5H1408.7C1408.7 1490.6 1417 1470.56 1431.78 1455.78C1446.56 1441 1466.6 1432.7 1487.5 1432.7C1508.4 1432.7 1528.44 1441 1543.22 1455.78C1558 1470.56 1566.3 1490.6 1566.3 1511.5H1586ZM1448.1 1511.5H1428.4C1428.4 1495.83 1434.63 1480.79 1445.71 1469.71C1456.79 1458.63 1471.83 1452.4 1487.5 1452.4C1503.17 1452.4 1518.21 1458.63 1529.29 1469.71C1540.37 1480.79 1546.6 1495.83 1546.6 1511.5H1526.9C1526.9 1501.05 1522.75 1491.03 1515.36 1483.64C1507.97 1476.25 1497.95 1472.1 1487.5 1472.1C1477.05 1472.1 1467.03 1476.25 1459.64 1483.64C1452.25 1491.03 1448.1 1501.05 1448.1 1511.5Z" fill="white"/>
+<path d="M1804.99 1485.75C1803.77 1496.98 1799.74 1505.57 1792.9 1511.53C1786.12 1517.49 1777.06 1520.46 1765.73 1520.46C1757.82 1520.46 1750.81 1518.49 1744.71 1514.53C1738.66 1510.58 1733.97 1504.99 1730.65 1497.76C1727.33 1490.48 1725.64 1482.18 1725.59 1472.86V1459.01C1725.59 1449.54 1727.25 1441.14 1730.58 1433.82C1733.9 1426.5 1738.66 1420.86 1744.86 1416.9C1751.11 1412.9 1758.29 1410.89 1766.39 1410.89C1777.82 1410.89 1786.83 1414 1793.42 1420.2C1800.06 1426.35 1803.92 1434.87 1804.99 1445.76H1795.91C1793.66 1427.64 1783.82 1418.58 1766.39 1418.58C1756.72 1418.58 1749.01 1422.2 1743.25 1429.42C1737.53 1436.65 1734.68 1446.64 1734.68 1459.38V1472.42C1734.68 1484.72 1737.46 1494.54 1743.03 1501.86C1748.64 1509.19 1756.21 1512.85 1765.73 1512.85C1775.16 1512.85 1782.26 1510.6 1787.04 1506.11C1791.83 1501.57 1794.78 1494.78 1795.91 1485.75H1804.99ZM1820 1478.2C1820 1470.59 1821.47 1463.73 1824.4 1457.62C1827.38 1451.52 1831.55 1446.78 1836.92 1443.41C1842.34 1440 1848.47 1438.29 1855.31 1438.29C1865.85 1438.29 1874.4 1442 1880.94 1449.42C1887.48 1456.79 1890.76 1466.58 1890.76 1478.79V1480.62C1890.76 1488.29 1889.27 1495.2 1886.29 1501.35C1883.36 1507.45 1879.21 1512.16 1873.84 1515.48C1868.47 1518.8 1862.34 1520.46 1855.45 1520.46C1844.96 1520.46 1836.41 1516.78 1829.82 1509.41C1823.28 1501.98 1820 1492.17 1820 1479.96V1478.2ZM1828.79 1480.62C1828.79 1490.09 1831.23 1497.88 1836.12 1503.99C1841.05 1510.04 1847.49 1513.07 1855.45 1513.07C1863.36 1513.07 1869.76 1510.04 1874.64 1503.99C1879.57 1497.88 1882.04 1489.85 1882.04 1479.89V1478.2C1882.04 1472.15 1880.92 1466.61 1878.67 1461.58C1876.42 1456.55 1873.28 1452.67 1869.22 1449.93C1865.17 1447.15 1860.53 1445.76 1855.31 1445.76C1847.49 1445.76 1841.12 1448.83 1836.19 1454.99C1831.26 1461.09 1828.79 1469.1 1828.79 1479.01V1480.62ZM1918.73 1519H1909.95V1406.5H1918.73V1519ZM1937.78 1478.2C1937.78 1470.59 1939.24 1463.73 1942.17 1457.62C1945.15 1451.52 1949.33 1446.78 1954.7 1443.41C1960.12 1440 1966.24 1438.29 1973.08 1438.29C1983.63 1438.29 1992.17 1442 1998.71 1449.42C2005.26 1456.79 2008.53 1466.58 2008.53 1478.79V1480.62C2008.53 1488.29 2007.04 1495.2 2004.06 1501.35C2001.13 1507.45 1996.98 1512.16 1991.61 1515.48C1986.24 1518.8 1980.11 1520.46 1973.23 1520.46C1962.73 1520.46 1954.18 1516.78 1947.59 1509.41C1941.05 1501.98 1937.78 1492.17 1937.78 1479.96V1478.2ZM1946.57 1480.62C1946.57 1490.09 1949.01 1497.88 1953.89 1503.99C1958.82 1510.04 1965.27 1513.07 1973.23 1513.07C1981.14 1513.07 1987.53 1510.04 1992.42 1503.99C1997.35 1497.88 1999.81 1489.85 1999.81 1479.89V1478.2C1999.81 1472.15 1998.69 1466.61 1996.44 1461.58C1994.2 1456.55 1991.05 1452.67 1987 1449.93C1982.94 1447.15 1978.3 1445.76 1973.08 1445.76C1965.27 1445.76 1958.9 1448.83 1953.96 1454.99C1949.03 1461.09 1946.57 1469.1 1946.57 1479.01V1480.62ZM2077.67 1508.97C2072.4 1516.63 2063.97 1520.46 2052.4 1520.46C2043.95 1520.46 2037.53 1518.02 2033.14 1513.14C2028.74 1508.21 2026.5 1500.93 2026.4 1491.31V1439.75H2035.12V1490.22C2035.12 1505.3 2041.22 1512.85 2053.43 1512.85C2066.12 1512.85 2074.15 1507.6 2077.52 1497.1V1439.75H2086.31V1519H2077.82L2077.67 1508.97ZM2145.79 1447.22C2143.93 1446.88 2141.95 1446.71 2139.85 1446.71C2134.38 1446.71 2129.75 1448.25 2125.94 1451.32C2122.18 1454.35 2119.49 1458.77 2117.88 1464.58V1519H2109.16V1439.75H2117.73L2117.88 1452.35C2122.52 1442.97 2129.96 1438.29 2140.22 1438.29C2142.66 1438.29 2144.59 1438.6 2146 1439.24L2145.79 1447.22Z" fill="white"/>
+<rect x="2396" y="1280" width="816" height="376" rx="50" fill="black"/>
+<rect x="-486" y="1698" width="1312" height="376" rx="50" fill="black"/>
+<path d="M-56.5234 1937V1830.36H-26.7139C-17.9736 1830.36 -10.1367 1832.36 -3.20312 1836.37C3.73047 1840.32 9.12598 1846.01 12.9834 1853.43C16.8896 1860.85 18.8428 1869.3 18.8428 1878.77V1888.59C18.8428 1898.11 16.9141 1906.56 13.0566 1913.93C9.19922 1921.3 3.75488 1926.99 -3.27637 1930.99C-10.2588 1935 -18.291 1937 -27.373 1937H-56.5234ZM-47.5146 1838.05V1929.38H-27.2998C-16.0693 1929.38 -7.06055 1925.67 -0.273438 1918.25C6.51367 1910.78 9.90723 1900.7 9.90723 1888V1878.63C9.90723 1866.37 6.5625 1856.56 -0.126953 1849.18C-6.81641 1841.81 -15.6299 1838.1 -26.5674 1838.05H-47.5146ZM70.4053 1938.46C63.667 1938.46 57.5635 1936.8 52.0947 1933.48C46.6748 1930.16 42.4512 1925.55 39.4238 1919.64C36.3965 1913.68 34.8828 1907.02 34.8828 1899.65V1896.5C34.8828 1888.88 36.3477 1882.02 39.2773 1875.92C42.2559 1869.81 46.3818 1865.03 51.6553 1861.56C56.9287 1858.04 62.6416 1856.29 68.7939 1856.29C78.4131 1856.29 86.0303 1859.58 91.6455 1866.17C97.3096 1872.72 100.142 1881.68 100.142 1893.05V1897.96H43.5986V1899.65C43.5986 1908.63 46.1621 1916.13 51.2891 1922.13C56.4648 1928.09 62.959 1931.07 70.7715 1931.07C75.459 1931.07 79.585 1930.21 83.1494 1928.5C86.7627 1926.79 90.0342 1924.06 92.9639 1920.3L98.457 1924.48C92.0117 1933.8 82.6611 1938.46 70.4053 1938.46ZM68.7939 1863.76C62.2021 1863.76 56.6357 1866.17 52.0947 1871.01C47.6025 1875.84 44.8682 1882.34 43.8916 1890.49H91.4258V1889.54C91.1816 1881.92 89.0088 1875.72 84.9072 1870.94C80.8057 1866.15 75.4346 1863.76 68.7939 1863.76ZM164.668 1916.86C164.668 1912.51 162.91 1909.02 159.395 1906.38C155.928 1903.75 150.679 1901.7 143.647 1900.23C136.616 1898.72 131.147 1897.01 127.241 1895.11C123.384 1893.15 120.503 1890.78 118.599 1888C116.743 1885.22 115.815 1881.85 115.815 1877.89C115.815 1871.64 118.428 1866.49 123.652 1862.44C128.877 1858.34 135.566 1856.29 143.721 1856.29C152.559 1856.29 159.639 1858.48 164.961 1862.88C170.332 1867.22 173.018 1872.91 173.018 1879.94H164.229C164.229 1875.31 162.275 1871.45 158.369 1868.37C154.512 1865.3 149.629 1863.76 143.721 1863.76C137.959 1863.76 133.32 1865.05 129.805 1867.64C126.338 1870.18 124.604 1873.5 124.604 1877.6C124.604 1881.56 126.045 1884.63 128.926 1886.83C131.855 1888.98 137.153 1890.96 144.819 1892.76C152.534 1894.57 158.296 1896.5 162.104 1898.55C165.962 1900.6 168.818 1903.06 170.674 1905.95C172.529 1908.83 173.457 1912.32 173.457 1916.42C173.457 1923.11 170.747 1928.46 165.327 1932.46C159.956 1936.46 152.925 1938.46 144.233 1938.46C135.005 1938.46 127.51 1936.24 121.748 1931.8C116.035 1927.31 113.179 1921.64 113.179 1914.81H121.968C122.31 1919.93 124.458 1923.94 128.413 1926.82C132.417 1929.65 137.69 1931.07 144.233 1931.07C150.337 1931.07 155.269 1929.72 159.028 1927.04C162.788 1924.35 164.668 1920.96 164.668 1916.86ZM222.529 1931.07C228.633 1931.07 233.735 1929.36 237.837 1925.94C241.987 1922.47 244.233 1918.01 244.575 1912.54H252.998C252.754 1917.37 251.24 1921.79 248.457 1925.79C245.674 1929.75 241.963 1932.85 237.324 1935.1C232.734 1937.34 227.803 1938.46 222.529 1938.46C212.129 1938.46 203.877 1934.85 197.773 1927.62C191.719 1920.4 188.691 1910.68 188.691 1898.47V1895.84C188.691 1888.03 190.059 1881.12 192.793 1875.11C195.527 1869.1 199.434 1864.47 204.512 1861.19C209.639 1857.92 215.62 1856.29 222.456 1856.29C231.147 1856.29 238.301 1858.88 243.916 1864.05C249.58 1869.23 252.607 1876.04 252.998 1884.49H244.575C244.185 1878.28 241.938 1873.28 237.837 1869.47C233.784 1865.66 228.657 1863.76 222.456 1863.76C214.546 1863.76 208.394 1866.61 203.999 1872.33C199.653 1878.04 197.48 1886.05 197.48 1896.35V1898.91C197.48 1909.02 199.653 1916.91 203.999 1922.57C208.394 1928.24 214.57 1931.07 222.529 1931.07ZM307.197 1865.22C305.342 1864.88 303.364 1864.71 301.265 1864.71C295.796 1864.71 291.157 1866.25 287.349 1869.32C283.589 1872.35 280.903 1876.77 279.292 1882.58V1937H270.576V1857.75H279.146L279.292 1870.35C283.931 1860.97 291.377 1856.29 301.631 1856.29C304.072 1856.29 306.001 1856.6 307.417 1857.24L307.197 1865.22ZM330.928 1937H322.139V1857.75H330.928V1937ZM320.601 1834.83C320.601 1833.17 321.138 1831.78 322.212 1830.65C323.286 1829.48 324.751 1828.89 326.606 1828.89C328.462 1828.89 329.927 1829.48 331.001 1830.65C332.124 1831.78 332.686 1833.17 332.686 1834.83C332.686 1836.49 332.124 1837.88 331.001 1839C329.927 1840.12 328.462 1840.69 326.606 1840.69C324.751 1840.69 323.286 1840.12 322.212 1839C321.138 1837.88 320.601 1836.49 320.601 1834.83ZM418.525 1898.18C418.525 1910.54 415.791 1920.35 410.322 1927.62C404.854 1934.85 397.529 1938.46 388.35 1938.46C377.51 1938.46 369.209 1934.66 363.447 1927.04V1967.47H354.731V1857.75H362.861L363.301 1868.96C369.014 1860.51 377.29 1856.29 388.13 1856.29C397.603 1856.29 405.024 1859.88 410.396 1867.05C415.815 1874.23 418.525 1884.19 418.525 1896.94V1898.18ZM409.736 1896.64C409.736 1886.54 407.661 1878.55 403.511 1872.69C399.36 1866.83 393.574 1863.9 386.152 1863.9C380.781 1863.9 376.167 1865.2 372.31 1867.79C368.452 1870.37 365.498 1874.13 363.447 1879.07V1917.08C365.547 1921.62 368.55 1925.09 372.456 1927.48C376.362 1929.87 380.977 1931.07 386.299 1931.07C393.672 1931.07 399.409 1928.14 403.511 1922.28C407.661 1916.37 409.736 1907.83 409.736 1896.64ZM451.631 1837.46V1857.75H468.037V1864.93H451.631V1917.74C451.631 1922.13 452.412 1925.4 453.975 1927.55C455.586 1929.7 458.247 1930.77 461.958 1930.77C463.423 1930.77 465.791 1930.53 469.062 1930.04L469.429 1937.22C467.134 1938.05 464.009 1938.46 460.054 1938.46C454.048 1938.46 449.678 1936.73 446.943 1933.26C444.209 1929.75 442.842 1924.6 442.842 1917.81V1864.93H428.267V1857.75H442.842V1837.46H451.631ZM496.016 1937H487.227V1857.75H496.016V1937ZM485.688 1834.83C485.688 1833.17 486.226 1831.78 487.3 1830.65C488.374 1829.48 489.839 1828.89 491.694 1828.89C493.55 1828.89 495.015 1829.48 496.089 1830.65C497.212 1831.78 497.773 1833.17 497.773 1834.83C497.773 1836.49 497.212 1837.88 496.089 1839C495.015 1840.12 493.55 1840.69 491.694 1840.69C489.839 1840.69 488.374 1840.12 487.3 1839C486.226 1837.88 485.688 1836.49 485.688 1834.83ZM515.059 1896.2C515.059 1888.59 516.523 1881.73 519.453 1875.62C522.432 1869.52 526.606 1864.78 531.978 1861.41C537.397 1858 543.525 1856.29 550.361 1856.29C560.908 1856.29 569.453 1860 575.996 1867.42C582.539 1874.79 585.811 1884.58 585.811 1896.79V1898.62C585.811 1906.29 584.321 1913.2 581.343 1919.35C578.413 1925.45 574.263 1930.16 568.892 1933.48C563.521 1936.8 557.393 1938.46 550.508 1938.46C540.01 1938.46 531.465 1934.78 524.873 1927.41C518.33 1919.98 515.059 1910.17 515.059 1897.96V1896.2ZM523.848 1898.62C523.848 1908.09 526.289 1915.88 531.172 1921.99C536.104 1928.04 542.549 1931.07 550.508 1931.07C558.418 1931.07 564.814 1928.04 569.697 1921.99C574.629 1915.88 577.095 1907.85 577.095 1897.89V1896.2C577.095 1890.15 575.972 1884.61 573.726 1879.58C571.479 1874.55 568.33 1870.67 564.277 1867.93C560.225 1865.15 555.586 1863.76 550.361 1863.76C542.549 1863.76 536.177 1866.83 531.245 1872.99C526.313 1879.09 523.848 1887.1 523.848 1897.01V1898.62ZM612.324 1857.75L612.617 1871.3C615.596 1866.42 619.307 1862.71 623.75 1860.17C628.193 1857.58 633.101 1856.29 638.472 1856.29C646.968 1856.29 653.291 1858.68 657.441 1863.46C661.592 1868.25 663.691 1875.43 663.74 1885V1937H655.024V1884.92C654.976 1877.84 653.462 1872.57 650.483 1869.1C647.554 1865.64 642.842 1863.9 636.348 1863.9C630.928 1863.9 626.118 1865.61 621.919 1869.03C617.769 1872.4 614.692 1876.97 612.69 1882.73V1937H603.975V1857.75H612.324Z" fill="white"/>
+<rect x="923" y="1698" width="1063" height="376" rx="50" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M983 1758H1239V2014H983V1758ZM1120.47 1863.78H1103L1100.53 1790.37H1122.94L1120.47 1863.78ZM1111.73 1875.28C1115.28 1875.28 1118.11 1876.32 1120.25 1878.41C1121.6 1879.7 1122.54 1881.22 1123.05 1882.96H1218.05V1895.3H1119.11C1117.14 1896.75 1114.68 1897.47 1111.73 1897.47C1108.24 1897.47 1105.41 1896.42 1103.22 1894.34C1101.09 1892.25 1100.02 1889.61 1100.02 1886.41C1100.02 1883.21 1101.09 1880.56 1103.22 1878.48C1105.41 1876.34 1108.24 1875.28 1111.73 1875.28Z" fill="white"/>
+<path d="M1412.83 1910.78C1412.83 1904.87 1410.75 1900.21 1406.6 1896.79C1402.45 1893.32 1394.86 1890.05 1383.82 1886.98C1372.79 1883.85 1364.73 1880.46 1359.65 1876.79C1352.43 1871.62 1348.81 1864.83 1348.81 1856.43C1348.81 1848.28 1352.16 1841.66 1358.85 1836.58C1365.59 1831.46 1374.18 1828.89 1384.63 1828.89C1391.71 1828.89 1398.03 1830.26 1403.6 1833C1409.21 1835.73 1413.56 1839.54 1416.64 1844.42C1419.71 1849.3 1421.25 1854.75 1421.25 1860.75H1412.17C1412.17 1853.48 1409.68 1847.64 1404.7 1843.25C1399.72 1838.81 1393.03 1836.58 1384.63 1836.58C1376.48 1836.58 1369.98 1838.42 1365.15 1842.08C1360.31 1845.69 1357.9 1850.43 1357.9 1856.29C1357.9 1861.71 1360.07 1866.13 1364.42 1869.54C1368.76 1872.96 1375.72 1875.99 1385.29 1878.63C1394.86 1881.21 1402.11 1883.92 1407.04 1886.76C1411.97 1889.54 1415.68 1892.88 1418.17 1896.79C1420.67 1900.7 1421.91 1905.31 1421.91 1910.63C1421.91 1919.03 1418.54 1925.77 1411.8 1930.85C1405.11 1935.93 1396.28 1938.46 1385.29 1938.46C1377.77 1938.46 1370.86 1937.12 1364.56 1934.44C1358.31 1931.75 1353.55 1927.99 1350.28 1923.16C1347.06 1918.32 1345.45 1912.78 1345.45 1906.53H1354.45C1354.45 1914.05 1357.26 1919.98 1362.88 1924.33C1368.49 1928.67 1375.96 1930.85 1385.29 1930.85C1393.59 1930.85 1400.25 1929.02 1405.28 1925.35C1410.31 1921.69 1412.83 1916.83 1412.83 1910.78ZM1489.37 1937C1488.49 1934.51 1487.93 1930.82 1487.68 1925.94C1484.61 1929.94 1480.67 1933.04 1475.89 1935.24C1471.15 1937.39 1466.12 1938.46 1460.8 1938.46C1453.18 1938.46 1447.01 1936.34 1442.27 1932.09C1437.58 1927.84 1435.24 1922.47 1435.24 1915.98C1435.24 1908.26 1438.44 1902.16 1444.83 1897.67C1451.28 1893.18 1460.24 1890.93 1471.71 1890.93H1487.61V1881.92C1487.61 1876.26 1485.85 1871.81 1482.33 1868.59C1478.87 1865.32 1473.79 1863.68 1467.1 1863.68C1461 1863.68 1455.94 1865.25 1451.94 1868.37C1447.94 1871.5 1445.93 1875.26 1445.93 1879.65L1437.14 1879.58C1437.14 1873.28 1440.07 1867.83 1445.93 1863.25C1451.79 1858.61 1459 1856.29 1467.54 1856.29C1476.38 1856.29 1483.34 1858.51 1488.41 1862.95C1493.54 1867.35 1496.18 1873.5 1496.32 1881.41V1918.91C1496.32 1926.58 1497.13 1932.31 1498.74 1936.12V1937H1489.37ZM1461.83 1930.7C1467.69 1930.7 1472.91 1929.29 1477.5 1926.45C1482.14 1923.62 1485.51 1919.84 1487.61 1915.1V1897.67H1471.93C1463.19 1897.77 1456.36 1899.38 1451.43 1902.5C1446.5 1905.58 1444.03 1909.83 1444.03 1915.25C1444.03 1919.69 1445.67 1923.38 1448.94 1926.31C1452.26 1929.24 1456.55 1930.7 1461.83 1930.7ZM1527.75 1857.75L1528.04 1870.64C1530.97 1865.86 1534.63 1862.27 1539.02 1859.88C1543.42 1857.48 1548.3 1856.29 1553.67 1856.29C1566.17 1856.29 1574.11 1861.41 1577.48 1871.67C1580.31 1866.74 1584.09 1862.95 1588.83 1860.32C1593.57 1857.63 1598.79 1856.29 1604.5 1856.29C1621.5 1856.29 1630.16 1865.56 1630.5 1884.12V1937H1621.71V1884.78C1621.67 1877.7 1620.13 1872.45 1617.1 1869.03C1614.12 1865.61 1609.24 1863.9 1602.45 1863.9C1596.15 1864 1590.83 1866.05 1586.49 1870.06C1582.14 1874.01 1579.72 1878.85 1579.23 1884.56V1937H1570.45V1884.12C1570.4 1877.33 1568.79 1872.28 1565.61 1868.96C1562.49 1865.59 1557.65 1863.9 1551.11 1863.9C1545.59 1863.9 1540.86 1865.49 1536.9 1868.67C1532.95 1871.79 1530.02 1876.45 1528.11 1882.65V1937H1519.32V1857.75H1527.75ZM1716.49 1898.18C1716.49 1910.54 1713.76 1920.35 1708.29 1927.62C1702.82 1934.85 1695.49 1938.46 1686.31 1938.46C1675.47 1938.46 1667.17 1934.66 1661.41 1927.04V1967.47H1652.7V1857.75H1660.83L1661.27 1868.96C1666.98 1860.51 1675.25 1856.29 1686.09 1856.29C1695.57 1856.29 1702.99 1859.88 1708.36 1867.05C1713.78 1874.23 1716.49 1884.19 1716.49 1896.94V1898.18ZM1707.7 1896.64C1707.7 1886.54 1705.63 1878.55 1701.48 1872.69C1697.33 1866.83 1691.54 1863.9 1684.12 1863.9C1678.75 1863.9 1674.13 1865.2 1670.27 1867.79C1666.42 1870.37 1663.46 1874.13 1661.41 1879.07V1917.08C1663.51 1921.62 1666.51 1925.09 1670.42 1927.48C1674.33 1929.87 1678.94 1931.07 1684.26 1931.07C1691.64 1931.07 1697.37 1928.14 1701.48 1922.28C1705.63 1916.37 1707.7 1907.83 1707.7 1896.64ZM1745.79 1937H1737V1824.5H1745.79V1937ZM1800.35 1938.46C1793.61 1938.46 1787.51 1936.8 1782.04 1933.48C1776.62 1930.16 1772.4 1925.55 1769.37 1919.64C1766.34 1913.68 1764.83 1907.02 1764.83 1899.65V1896.5C1764.83 1888.88 1766.29 1882.02 1769.22 1875.92C1772.2 1869.81 1776.33 1865.03 1781.6 1861.56C1786.88 1858.04 1792.59 1856.29 1798.74 1856.29C1808.36 1856.29 1815.98 1859.58 1821.59 1866.17C1827.26 1872.72 1830.09 1881.68 1830.09 1893.05V1897.96H1773.55V1899.65C1773.55 1908.63 1776.11 1916.13 1781.24 1922.13C1786.41 1928.09 1792.91 1931.07 1800.72 1931.07C1805.41 1931.07 1809.53 1930.21 1813.1 1928.5C1816.71 1926.79 1819.98 1924.06 1822.91 1920.3L1828.4 1924.48C1821.96 1933.8 1812.61 1938.46 1800.35 1938.46ZM1798.74 1863.76C1792.15 1863.76 1786.58 1866.17 1782.04 1871.01C1777.55 1875.84 1774.82 1882.34 1773.84 1890.49H1821.37V1889.54C1821.13 1881.92 1818.96 1875.72 1814.85 1870.94C1810.75 1866.15 1805.38 1863.76 1798.74 1863.76Z" fill="white"/>
+<rect x="2083" y="1698" width="999" height="376" rx="50" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M2399 1758H2143V2014H2399V1758ZM2326.22 1873.78C2341 1888.56 2349.3 1908.6 2349.3 1929.5H2329.6C2329.6 1913.83 2323.37 1898.79 2312.29 1887.71C2301.21 1876.63 2286.17 1870.4 2270.5 1870.4C2254.83 1870.4 2239.79 1876.63 2228.71 1887.71C2217.63 1898.79 2211.4 1913.83 2211.4 1929.5L2191.7 1929.5C2191.7 1908.6 2200 1888.56 2214.78 1873.78C2229.56 1859 2249.6 1850.7 2270.5 1850.7C2291.4 1850.7 2311.44 1859 2326.22 1873.78Z" fill="white"/>
+<rect x="4" y="777" width="2436" height="1065" fill="url(#paint0_linear)"/>
+</g>
+<path d="M508.338 232.877H458.46V276.383H515.809V284H449.451V177.359H515.442V185.05H458.46V225.26H508.338V232.877ZM582.825 284C581.946 281.51 581.385 277.823 581.141 272.94C578.064 276.944 574.134 280.045 569.349 282.242C564.612 284.391 559.583 285.465 554.261 285.465C546.644 285.465 540.467 283.341 535.73 279.093C531.043 274.845 528.699 269.474 528.699 262.979C528.699 255.265 531.897 249.161 538.294 244.669C544.739 240.177 553.699 237.931 565.174 237.931H581.067V228.922C581.067 223.258 579.31 218.814 575.794 215.592C572.327 212.32 567.249 210.685 560.56 210.685C554.456 210.685 549.402 212.247 545.398 215.372C541.395 218.497 539.393 222.257 539.393 226.651L530.604 226.578C530.604 220.279 533.533 214.835 539.393 210.245C545.252 205.606 552.454 203.287 560.999 203.287C569.837 203.287 576.795 205.509 581.873 209.952C587 214.347 589.637 220.499 589.783 228.409V265.909C589.783 273.575 590.589 279.312 592.2 283.121V284H582.825ZM555.286 277.701C561.146 277.701 566.37 276.285 570.96 273.453C575.599 270.621 578.968 266.837 581.067 262.101V244.669H565.394C556.653 244.767 549.817 246.378 544.886 249.503C539.954 252.579 537.488 256.827 537.488 262.247C537.488 266.69 539.124 270.377 542.396 273.307C545.716 276.236 550.013 277.701 555.286 277.701ZM660.682 263.858C660.682 259.513 658.924 256.021 655.408 253.385C651.941 250.748 646.692 248.697 639.661 247.232C632.63 245.719 627.161 244.01 623.255 242.105C619.397 240.152 616.517 237.784 614.612 235.001C612.757 232.218 611.829 228.849 611.829 224.894C611.829 218.644 614.441 213.492 619.666 209.439C624.891 205.338 631.58 203.287 639.734 203.287C648.572 203.287 655.652 205.484 660.975 209.879C666.346 214.225 669.031 219.913 669.031 226.944H660.242C660.242 222.306 658.289 218.448 654.383 215.372C650.525 212.296 645.643 210.758 639.734 210.758C633.973 210.758 629.334 212.052 625.818 214.64C622.352 217.179 620.618 220.499 620.618 224.601C620.618 228.556 622.059 231.632 624.939 233.829C627.869 235.978 633.167 237.955 640.833 239.762C648.548 241.568 654.31 243.497 658.118 245.548C661.976 247.599 664.832 250.064 666.688 252.945C668.543 255.826 669.471 259.317 669.471 263.419C669.471 270.108 666.761 275.455 661.341 279.459C655.97 283.463 648.938 285.465 640.247 285.465C631.019 285.465 623.523 283.243 617.762 278.8C612.049 274.308 609.192 268.644 609.192 261.808H617.981C618.323 266.935 620.472 270.938 624.427 273.819C628.431 276.651 633.704 278.067 640.247 278.067C646.351 278.067 651.282 276.725 655.042 274.039C658.802 271.354 660.682 267.96 660.682 263.858ZM714.368 271.402L737.513 204.752H746.961L713.123 297.477L711.365 301.578C707.02 311.197 700.306 316.007 691.224 316.007C689.124 316.007 686.878 315.665 684.485 314.981L684.412 307.73L688.953 308.17C693.25 308.17 696.717 307.096 699.354 304.947C702.039 302.848 704.31 299.21 706.165 294.034L710.047 283.341L680.164 204.752H689.759L714.368 271.402ZM810.682 184.464V204.752H827.088V211.93H810.682V264.737C810.682 269.132 811.463 272.403 813.025 274.552C814.637 276.7 817.298 277.774 821.009 277.774C822.474 277.774 824.842 277.53 828.113 277.042L828.479 284.22C826.185 285.05 823.06 285.465 819.104 285.465C813.099 285.465 808.729 283.731 805.994 280.265C803.26 276.749 801.893 271.598 801.893 264.811V211.93H787.317V204.752H801.893V184.464H810.682ZM838.953 243.204C838.953 235.587 840.418 228.727 843.348 222.623C846.326 216.52 850.501 211.783 855.872 208.414C861.292 204.996 867.42 203.287 874.256 203.287C884.803 203.287 893.348 206.998 899.891 214.42C906.434 221.793 909.705 231.583 909.705 243.79V245.621C909.705 253.287 908.216 260.196 905.237 266.349C902.308 272.452 898.157 277.164 892.786 280.484C887.415 283.805 881.287 285.465 874.402 285.465C863.904 285.465 855.359 281.778 848.768 274.405C842.225 266.983 838.953 257.169 838.953 244.962V243.204ZM847.742 245.621C847.742 255.094 850.184 262.882 855.066 268.985C859.998 275.04 866.443 278.067 874.402 278.067C882.312 278.067 888.709 275.04 893.592 268.985C898.523 262.882 900.989 254.85 900.989 244.889V243.204C900.989 237.149 899.866 231.607 897.62 226.578C895.374 221.549 892.225 217.667 888.172 214.933C884.119 212.149 879.48 210.758 874.256 210.758C866.443 210.758 860.071 213.834 855.14 219.986C850.208 226.09 847.742 234.098 847.742 244.01V245.621ZM1015.32 273.966C1010.05 281.632 1001.62 285.465 990.052 285.465C981.604 285.465 975.184 283.023 970.789 278.141C966.395 273.209 964.148 265.934 964.051 256.314V204.752H972.767V255.216C972.767 270.304 978.87 277.848 991.077 277.848C1003.77 277.848 1011.8 272.599 1015.17 262.101V204.752H1023.96V284H1015.47L1015.32 273.966ZM1094.28 263.858C1094.28 259.513 1092.52 256.021 1089 253.385C1085.54 250.748 1080.29 248.697 1073.25 247.232C1066.22 245.719 1060.75 244.01 1056.85 242.105C1052.99 240.152 1050.11 237.784 1048.21 235.001C1046.35 232.218 1045.42 228.849 1045.42 224.894C1045.42 218.644 1048.04 213.492 1053.26 209.439C1058.48 205.338 1065.17 203.287 1073.33 203.287C1082.17 203.287 1089.25 205.484 1094.57 209.879C1099.94 214.225 1102.62 219.913 1102.62 226.944H1093.84C1093.84 222.306 1091.88 218.448 1087.98 215.372C1084.12 212.296 1079.24 210.758 1073.33 210.758C1067.57 210.758 1062.93 212.052 1059.41 214.64C1055.95 217.179 1054.21 220.499 1054.21 224.601C1054.21 228.556 1055.65 231.632 1058.53 233.829C1061.46 235.978 1066.76 237.955 1074.43 239.762C1082.14 241.568 1087.9 243.497 1091.71 245.548C1095.57 247.599 1098.43 250.064 1100.28 252.945C1102.14 255.826 1103.06 259.317 1103.06 263.419C1103.06 270.108 1100.35 275.455 1094.93 279.459C1089.56 283.463 1082.53 285.465 1073.84 285.465C1064.61 285.465 1057.12 283.243 1051.36 278.8C1045.64 274.308 1042.79 268.644 1042.79 261.808H1051.58C1051.92 266.935 1054.07 270.938 1058.02 273.819C1062.02 276.651 1067.3 278.067 1073.84 278.067C1079.94 278.067 1084.88 276.725 1088.64 274.039C1092.4 271.354 1094.28 267.96 1094.28 263.858ZM1153.53 285.465C1146.79 285.465 1140.69 283.805 1135.22 280.484C1129.8 277.164 1125.57 272.55 1122.55 266.642C1119.52 260.685 1118.01 254.02 1118.01 246.646V243.497C1118.01 235.88 1119.47 229.02 1122.4 222.916C1125.38 216.812 1129.5 212.027 1134.78 208.561C1140.05 205.045 1145.76 203.287 1151.92 203.287C1161.54 203.287 1169.15 206.583 1174.77 213.175C1180.43 219.718 1183.26 228.678 1183.26 240.055V244.962H1126.72V246.646C1126.72 255.631 1129.29 263.126 1134.41 269.132C1139.59 275.089 1146.08 278.067 1153.89 278.067C1158.58 278.067 1162.71 277.213 1166.27 275.504C1169.89 273.795 1173.16 271.061 1176.09 267.301L1181.58 271.476C1175.13 280.802 1165.78 285.465 1153.53 285.465ZM1151.92 210.758C1145.33 210.758 1139.76 213.175 1135.22 218.009C1130.73 222.843 1127.99 229.337 1127.01 237.491H1174.55V236.539C1174.3 228.922 1172.13 222.721 1168.03 217.936C1163.93 213.15 1158.56 210.758 1151.92 210.758ZM1243.1 284V211.93H1229.99V204.752H1243.1V195.157C1243.1 187.052 1245.15 180.826 1249.26 176.48C1253.41 172.135 1259.17 169.962 1266.54 169.962C1269.86 169.962 1272.96 170.377 1275.84 171.207L1275.18 178.531C1272.74 177.945 1270.08 177.652 1267.2 177.652C1262.37 177.652 1258.61 179.166 1255.92 182.193C1253.24 185.172 1251.89 189.42 1251.89 194.938V204.752H1270.79V211.93H1251.89V284H1243.1ZM1281.63 243.204C1281.63 235.587 1283.09 228.727 1286.02 222.623C1289 216.52 1293.18 211.783 1298.55 208.414C1303.97 204.996 1310.1 203.287 1316.93 203.287C1327.48 203.287 1336.02 206.998 1342.57 214.42C1349.11 221.793 1352.38 231.583 1352.38 243.79V245.621C1352.38 253.287 1350.89 260.196 1347.91 266.349C1344.98 272.452 1340.83 277.164 1335.46 280.484C1330.09 283.805 1323.96 285.465 1317.08 285.465C1306.58 285.465 1298.04 281.778 1291.44 274.405C1284.9 266.983 1281.63 257.169 1281.63 244.962V243.204ZM1290.42 245.621C1290.42 255.094 1292.86 262.882 1297.74 268.985C1302.67 275.04 1309.12 278.067 1317.08 278.067C1324.99 278.067 1331.38 275.04 1336.27 268.985C1341.2 262.882 1343.67 254.85 1343.67 244.889V243.204C1343.67 237.149 1342.54 231.607 1340.3 226.578C1338.05 221.549 1334.9 217.667 1330.85 214.933C1326.79 212.149 1322.16 210.758 1316.93 210.758C1309.12 210.758 1302.75 213.834 1297.82 219.986C1292.88 226.09 1290.42 234.098 1290.42 244.01V245.621ZM1407.17 212.223C1405.31 211.881 1403.33 211.71 1401.23 211.71C1395.76 211.71 1391.13 213.248 1387.32 216.324C1383.56 219.352 1380.87 223.771 1379.26 229.581V284H1370.54V204.752H1379.11L1379.26 217.35C1383.9 207.975 1391.35 203.287 1401.6 203.287C1404.04 203.287 1405.97 203.604 1407.39 204.239L1407.17 212.223ZM1429.07 204.752L1429.36 217.643C1432.29 212.857 1435.95 209.269 1440.34 206.876C1444.74 204.483 1449.62 203.287 1454.99 203.287C1467.49 203.287 1475.43 208.414 1478.8 218.668C1481.63 213.736 1485.41 209.952 1490.15 207.315C1494.89 204.63 1500.11 203.287 1505.82 203.287C1522.82 203.287 1531.48 212.564 1531.82 231.119V284H1523.04V231.778C1522.99 224.698 1521.45 219.449 1518.42 216.031C1515.44 212.613 1510.56 210.904 1503.77 210.904C1497.47 211.002 1492.15 213.053 1487.81 217.057C1483.46 221.012 1481.04 225.846 1480.55 231.559V284H1471.77V231.119C1471.72 224.332 1470.11 219.278 1466.93 215.958C1463.81 212.589 1458.97 210.904 1452.43 210.904C1446.91 210.904 1442.18 212.491 1438.22 215.665C1434.27 218.79 1431.34 223.453 1429.43 229.654V284H1420.64V204.752H1429.07ZM1601.55 263.858C1601.55 259.513 1599.79 256.021 1596.28 253.385C1592.81 250.748 1587.56 248.697 1580.53 247.232C1573.5 245.719 1568.03 244.01 1564.12 242.105C1560.27 240.152 1557.39 237.784 1555.48 235.001C1553.63 232.218 1552.7 228.849 1552.7 224.894C1552.7 218.644 1555.31 213.492 1560.54 209.439C1565.76 205.338 1572.45 203.287 1580.6 203.287C1589.44 203.287 1596.52 205.484 1601.84 209.879C1607.21 214.225 1609.9 219.913 1609.9 226.944H1601.11C1601.11 222.306 1599.16 218.448 1595.25 215.372C1591.39 212.296 1586.51 210.758 1580.6 210.758C1574.84 210.758 1570.2 212.052 1566.69 214.64C1563.22 217.179 1561.49 220.499 1561.49 224.601C1561.49 228.556 1562.93 231.632 1565.81 233.829C1568.74 235.978 1574.04 237.955 1581.7 239.762C1589.42 241.568 1595.18 243.497 1598.99 245.548C1602.84 247.599 1605.7 250.064 1607.56 252.945C1609.41 255.826 1610.34 259.317 1610.34 263.419C1610.34 270.108 1607.63 275.455 1602.21 279.459C1596.84 283.463 1589.81 285.465 1581.12 285.465C1571.89 285.465 1564.39 283.243 1558.63 278.8C1552.92 274.308 1550.06 268.644 1550.06 261.808H1558.85C1559.19 266.935 1561.34 270.938 1565.3 273.819C1569.3 276.651 1574.57 278.067 1581.12 278.067C1587.22 278.067 1592.15 276.725 1595.91 274.039C1599.67 271.354 1601.55 267.96 1601.55 263.858ZM1717.57 273.966C1712.29 281.632 1703.87 285.465 1692.3 285.465C1683.85 285.465 1677.43 283.023 1673.04 278.141C1668.64 273.209 1666.39 265.934 1666.3 256.314V204.752H1675.01V255.216C1675.01 270.304 1681.12 277.848 1693.32 277.848C1706.02 277.848 1714.05 272.599 1717.42 262.101V204.752H1726.21V284H1717.71L1717.57 273.966ZM1796.52 263.858C1796.52 259.513 1794.76 256.021 1791.25 253.385C1787.78 250.748 1782.53 248.697 1775.5 247.232C1768.47 245.719 1763 244.01 1759.09 242.105C1755.24 240.152 1752.36 237.784 1750.45 235.001C1748.6 232.218 1747.67 228.849 1747.67 224.894C1747.67 218.644 1750.28 213.492 1755.51 209.439C1760.73 205.338 1767.42 203.287 1775.57 203.287C1784.41 203.287 1791.49 205.484 1796.81 209.879C1802.19 214.225 1804.87 219.913 1804.87 226.944H1796.08C1796.08 222.306 1794.13 218.448 1790.22 215.372C1786.37 212.296 1781.48 210.758 1775.57 210.758C1769.81 210.758 1765.17 212.052 1761.66 214.64C1758.19 217.179 1756.46 220.499 1756.46 224.601C1756.46 228.556 1757.9 231.632 1760.78 233.829C1763.71 235.978 1769.01 237.955 1776.67 239.762C1784.39 241.568 1790.15 243.497 1793.96 245.548C1797.82 247.599 1800.67 250.064 1802.53 252.945C1804.38 255.826 1805.31 259.317 1805.31 263.419C1805.31 270.108 1802.6 275.455 1797.18 279.459C1791.81 283.463 1784.78 285.465 1776.09 285.465C1766.86 285.465 1759.36 283.243 1753.6 278.8C1747.89 274.308 1745.03 268.644 1745.03 261.808H1753.82C1754.16 266.935 1756.31 270.938 1760.27 273.819C1764.27 276.651 1769.54 278.067 1776.09 278.067C1782.19 278.067 1787.12 276.725 1790.88 274.039C1794.64 271.354 1796.52 267.96 1796.52 263.858ZM1834.9 284H1826.11V204.752H1834.9V284ZM1824.57 181.827C1824.57 180.167 1825.11 178.775 1826.18 177.652C1827.26 176.48 1828.72 175.895 1830.58 175.895C1832.43 175.895 1833.9 176.48 1834.97 177.652C1836.1 178.775 1836.66 180.167 1836.66 181.827C1836.66 183.487 1836.1 184.879 1834.97 186.002C1833.9 187.125 1832.43 187.687 1830.58 187.687C1828.72 187.687 1827.26 187.125 1826.18 186.002C1825.11 184.879 1824.57 183.487 1824.57 181.827ZM1867.13 204.752L1867.42 218.302C1870.4 213.419 1874.11 209.708 1878.55 207.169C1883 204.581 1887.9 203.287 1893.27 203.287C1901.77 203.287 1908.09 205.68 1912.24 210.465C1916.39 215.25 1918.49 222.428 1918.54 231.998V284H1909.83V231.925C1909.78 224.845 1908.26 219.571 1905.29 216.104C1902.36 212.638 1897.64 210.904 1891.15 210.904C1885.73 210.904 1880.92 212.613 1876.72 216.031C1872.57 219.4 1869.5 223.966 1867.49 229.728V284H1858.78V204.752H1867.13ZM1937.73 243.644C1937.73 231.241 1940.47 221.427 1945.94 214.2C1951.45 206.925 1958.92 203.287 1968.35 203.287C1979.14 203.287 1987.34 207.584 1992.96 216.178L1993.4 204.752H2001.6V282.389C2001.6 292.594 1998.74 300.675 1993.03 306.632C1987.32 312.589 1979.58 315.567 1969.81 315.567C1964.29 315.567 1959.02 314.322 1953.99 311.832C1949.01 309.391 1945.08 306.119 1942.2 302.018L1947.11 296.744C1953.31 304.361 1960.68 308.17 1969.23 308.17C1976.55 308.17 1982.26 305.997 1986.37 301.651C1990.47 297.354 1992.59 291.373 1992.74 283.707V273.746C1987.12 281.559 1978.94 285.465 1968.2 285.465C1959.02 285.465 1951.65 281.803 1946.08 274.479C1940.52 267.154 1937.73 257.267 1937.73 244.815V243.644ZM1946.59 245.182C1946.59 255.289 1948.62 263.272 1952.67 269.132C1956.73 274.942 1962.44 277.848 1969.81 277.848C1980.6 277.848 1988.25 273.014 1992.74 263.346V226.505C1990.69 221.427 1987.73 217.569 1983.88 214.933C1980.02 212.247 1975.38 210.904 1969.96 210.904C1962.59 210.904 1956.85 213.81 1952.75 219.62C1948.65 225.382 1946.59 233.902 1946.59 245.182Z" fill="black"/>
+<g filter="url(#filter1_d)">
+<path d="M345.779 588V410.266H398.27C413.976 410.266 427.892 413.765 440.018 420.764C452.225 427.762 461.665 437.691 468.338 450.549C475.011 463.407 478.348 478.137 478.348 494.738V503.649C478.348 520.495 474.97 535.306 468.216 548.083C461.543 560.86 451.98 570.707 439.529 577.624C427.16 584.541 412.959 588 396.927 588H345.779ZM376.663 435.168V563.342H396.805C412.999 563.342 425.41 558.296 434.036 548.205C442.744 538.033 447.179 523.465 447.342 504.504V494.616C447.342 475.329 443.151 460.599 434.769 450.427C426.386 440.254 414.22 435.168 398.27 435.168H376.663ZM537.796 588H508.133V455.92H537.796V588ZM506.302 421.618C506.302 417.061 507.726 413.277 510.574 410.266C513.504 407.255 517.654 405.749 523.025 405.749C528.396 405.749 532.547 407.255 535.477 410.266C538.406 413.277 539.871 417.061 539.871 421.618C539.871 426.094 538.406 429.838 535.477 432.849C532.547 435.778 528.396 437.243 523.025 437.243C517.654 437.243 513.504 435.778 510.574 432.849C507.726 429.838 506.302 426.094 506.302 421.618ZM644.241 552.111C644.241 546.822 642.044 542.793 637.649 540.026C633.336 537.259 626.134 534.818 616.043 532.702C605.952 530.586 597.529 527.901 590.774 524.646C575.963 517.484 568.558 507.108 568.558 493.518C568.558 482.124 573.359 472.603 582.962 464.953C592.565 457.303 604.772 453.479 619.583 453.479C635.371 453.479 648.107 457.385 657.791 465.197C667.557 473.01 672.439 483.142 672.439 495.593H642.776C642.776 489.896 640.66 485.176 636.429 481.433C632.197 477.608 626.582 475.695 619.583 475.695C613.073 475.695 607.742 477.201 603.592 480.212C599.523 483.223 597.488 487.251 597.488 492.297C597.488 496.854 599.401 500.394 603.226 502.917C607.05 505.44 614.782 508.003 626.419 510.607C638.056 513.13 647.171 516.182 653.763 519.763C660.436 523.262 665.359 527.494 668.533 532.458C671.788 537.422 673.416 543.444 673.416 550.524C673.416 562.406 668.493 572.049 658.646 579.455C648.799 586.779 635.9 590.441 619.949 590.441C609.126 590.441 599.482 588.488 591.019 584.582C582.555 580.676 575.963 575.305 571.243 568.469C566.523 561.633 564.163 554.268 564.163 546.374H592.972C593.379 553.373 596.023 558.785 600.906 562.609C605.789 566.353 612.259 568.225 620.315 568.225C628.128 568.225 634.069 566.76 638.138 563.83C642.207 560.819 644.241 556.913 644.241 552.111ZM753.616 566.76C761.022 566.76 767.166 564.603 772.049 560.29C776.932 555.977 779.536 550.646 779.861 544.299H807.815C807.49 552.518 804.926 560.209 800.125 567.37C795.324 574.45 788.813 580.065 780.594 584.216C772.374 588.366 763.504 590.441 753.982 590.441C735.509 590.441 720.861 584.46 710.037 572.497C699.214 560.534 693.802 544.014 693.802 522.937V519.885C693.802 499.784 699.173 483.711 709.915 471.667C720.657 459.541 735.306 453.479 753.86 453.479C769.567 453.479 782.343 458.076 792.19 467.272C802.119 476.387 807.327 488.391 807.815 503.283H779.861C779.536 495.715 776.932 489.489 772.049 484.606C767.247 479.724 761.103 477.282 753.616 477.282C744.013 477.282 736.608 480.782 731.399 487.78C726.191 494.698 723.546 505.236 723.465 519.396V524.157C723.465 538.48 726.028 549.182 731.155 556.262C736.364 563.26 743.851 566.76 753.616 566.76ZM824.661 520.739C824.661 507.8 827.225 496.162 832.352 485.827C837.479 475.41 844.681 467.435 853.958 461.901C863.235 456.286 873.896 453.479 885.94 453.479C903.763 453.479 918.208 459.216 929.275 470.69C940.424 482.165 946.447 497.383 947.342 516.345L947.464 523.303C947.464 536.324 944.941 547.961 939.896 558.215C934.931 568.469 927.77 576.403 918.411 582.019C909.134 587.634 898.392 590.441 886.185 590.441C867.549 590.441 852.615 584.257 841.385 571.887C830.236 559.436 824.661 542.875 824.661 522.204V520.739ZM854.324 523.303C854.324 536.893 857.132 547.554 862.747 555.285C868.362 562.935 876.175 566.76 886.185 566.76C896.194 566.76 903.966 562.854 909.5 555.041C915.115 547.229 917.923 535.795 917.923 520.739C917.923 507.393 915.034 496.813 909.256 489.001C903.559 481.188 895.787 477.282 885.94 477.282C876.256 477.282 868.566 481.148 862.869 488.879C857.173 496.529 854.324 508.003 854.324 523.303ZM1041.7 483.02C1037.8 482.368 1033.77 482.043 1029.62 482.043C1016.03 482.043 1006.87 487.251 1002.15 497.668V588H972.488V455.92H1000.81L1001.54 470.69C1008.7 459.216 1018.63 453.479 1031.33 453.479C1035.56 453.479 1039.06 454.048 1041.82 455.188L1041.7 483.02ZM1052.44 520.983C1052.44 500.638 1057.16 484.322 1066.6 472.033C1076.04 459.663 1088.7 453.479 1104.57 453.479C1118.57 453.479 1129.88 458.361 1138.5 468.127V400.5H1168.17V588H1141.31L1139.85 574.328C1130.98 585.07 1119.14 590.441 1104.32 590.441C1088.86 590.441 1076.33 584.216 1066.73 571.765C1057.21 559.313 1052.44 542.386 1052.44 520.983ZM1082.11 523.547C1082.11 536.975 1084.67 547.473 1089.8 555.041C1095.01 562.528 1102.37 566.271 1111.89 566.271C1124.02 566.271 1132.89 560.86 1138.5 550.036V493.64C1133.05 483.06 1124.26 477.771 1112.14 477.771C1102.53 477.771 1095.13 481.595 1089.92 489.245C1084.71 496.813 1082.11 508.247 1082.11 523.547ZM1264.24 588V410.266H1325.15C1345.25 410.266 1360.55 414.294 1371.05 422.351C1381.55 430.407 1386.79 442.411 1386.79 458.361C1386.79 466.499 1384.6 473.824 1380.2 480.334C1375.81 486.844 1369.38 491.89 1360.92 495.471C1370.52 498.075 1377.92 502.998 1383.13 510.241C1388.42 517.403 1391.07 526.029 1391.07 536.12C1391.07 552.803 1385.7 565.62 1374.95 574.572C1364.29 583.524 1348.99 588 1329.06 588H1264.24ZM1295.12 507.8V563.342H1329.42C1339.11 563.342 1346.67 560.941 1352.13 556.14C1357.58 551.338 1360.31 544.665 1360.31 536.12C1360.31 517.647 1350.87 508.207 1331.99 507.8H1295.12ZM1295.12 485.095H1325.39C1335 485.095 1342.48 482.938 1347.85 478.625C1353.31 474.23 1356.03 468.046 1356.03 460.07C1356.03 451.281 1353.51 444.934 1348.46 441.027C1343.5 437.121 1335.73 435.168 1325.15 435.168H1295.12V485.095ZM1499.1 575.061C1490.39 585.314 1478.02 590.441 1461.99 590.441C1447.67 590.441 1436.8 586.25 1429.4 577.868C1422.07 569.486 1418.41 557.36 1418.41 541.491V455.92H1448.07V541.125C1448.07 557.889 1455.03 566.271 1468.95 566.271C1483.35 566.271 1493.08 561.104 1498.12 550.769V455.92H1527.79V588H1499.83L1499.1 575.061ZM1595.17 423.815V455.92H1618.48V477.893H1595.17V551.623C1595.17 556.669 1596.15 560.331 1598.1 562.609C1600.13 564.807 1603.71 565.905 1608.84 565.905C1612.26 565.905 1615.72 565.498 1619.22 564.685V587.634C1612.46 589.506 1605.95 590.441 1599.69 590.441C1576.9 590.441 1565.51 577.868 1565.51 552.722V477.893H1543.78V455.92H1565.51V423.815H1595.17ZM1678.42 423.815V455.92H1701.74V477.893H1678.42V551.623C1678.42 556.669 1679.4 560.331 1681.35 562.609C1683.39 564.807 1686.97 565.905 1692.09 565.905C1695.51 565.905 1698.97 565.498 1702.47 564.685V587.634C1695.71 589.506 1689.2 590.441 1682.94 590.441C1660.15 590.441 1648.76 577.868 1648.76 552.722V477.893H1627.03V455.92H1648.76V423.815H1678.42ZM1715.29 520.739C1715.29 507.8 1717.85 496.162 1722.98 485.827C1728.1 475.41 1735.31 467.435 1744.58 461.901C1753.86 456.286 1764.52 453.479 1776.57 453.479C1794.39 453.479 1808.83 459.216 1819.9 470.69C1831.05 482.165 1837.07 497.383 1837.97 516.345L1838.09 523.303C1838.09 536.324 1835.57 547.961 1830.52 558.215C1825.56 568.469 1818.39 576.403 1809.04 582.019C1799.76 587.634 1789.02 590.441 1776.81 590.441C1758.17 590.441 1743.24 584.257 1732.01 571.887C1720.86 559.436 1715.29 542.875 1715.29 522.204V520.739ZM1744.95 523.303C1744.95 536.893 1747.76 547.554 1753.37 555.285C1758.99 562.935 1766.8 566.76 1776.81 566.76C1786.82 566.76 1794.59 562.854 1800.12 555.041C1805.74 547.229 1808.55 535.795 1808.55 520.739C1808.55 507.393 1805.66 496.813 1799.88 489.001C1794.18 481.188 1786.41 477.282 1776.57 477.282C1766.88 477.282 1759.19 481.148 1753.49 488.879C1747.8 496.529 1744.95 508.003 1744.95 523.303ZM1890.7 455.92L1891.56 471.179C1901.32 459.379 1914.14 453.479 1930.01 453.479C1957.51 453.479 1971.51 469.226 1972 500.72V588H1942.34V502.429C1942.34 494.047 1940.51 487.862 1936.84 483.874C1933.26 479.805 1927.36 477.771 1919.14 477.771C1907.18 477.771 1898.27 483.182 1892.41 494.006V588H1862.75V455.92H1890.7ZM2076.37 552.111C2076.37 546.822 2074.17 542.793 2069.78 540.026C2065.47 537.259 2058.26 534.818 2048.17 532.702C2038.08 530.586 2029.66 527.901 2022.9 524.646C2008.09 517.484 2000.69 507.108 2000.69 493.518C2000.69 482.124 2005.49 472.603 2015.09 464.953C2024.69 457.303 2036.9 453.479 2051.71 453.479C2067.5 453.479 2080.24 457.385 2089.92 465.197C2099.69 473.01 2104.57 483.142 2104.57 495.593H2074.91C2074.91 489.896 2072.79 485.176 2068.56 481.433C2064.33 477.608 2058.71 475.695 2051.71 475.695C2045.2 475.695 2039.87 477.201 2035.72 480.212C2031.65 483.223 2029.62 487.251 2029.62 492.297C2029.62 496.854 2031.53 500.394 2035.35 502.917C2039.18 505.44 2046.91 508.003 2058.55 510.607C2070.19 513.13 2079.3 516.182 2085.89 519.763C2092.56 523.262 2097.49 527.494 2100.66 532.458C2103.92 537.422 2105.54 543.444 2105.54 550.524C2105.54 562.406 2100.62 572.049 2090.77 579.455C2080.93 586.779 2068.03 590.441 2052.08 590.441C2041.25 590.441 2031.61 588.488 2023.15 584.582C2014.68 580.676 2008.09 575.305 2003.37 568.469C1998.65 561.633 1996.29 554.268 1996.29 546.374H2025.1C2025.51 553.373 2028.15 558.785 2033.04 562.609C2037.92 566.353 2044.39 568.225 2052.44 568.225C2060.26 568.225 2066.2 566.76 2070.27 563.83C2074.34 560.819 2076.37 556.913 2076.37 552.111Z" fill="#F2D478"/>
+</g>
+<defs>
+<filter id="filter0_bd" x="-46" y="-50" width="2536" height="1942" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dy="4"/>
+<feGaussianBlur stdDeviation="2"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
+<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
+</filter>
+<filter id="filter1_d" x="315.779" y="370.5" width="1819.77" height="249.941" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="15"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+<linearGradient id="paint0_linear" x1="1222" y1="777" x2="1222" y2="1842" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0"/>
+<stop offset="1" stop-color="white"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/Features/ClicksForms/Export.svg b/public/Features/ClicksForms/Export.svg
new file mode 100644
index 0000000..b232d2c
--- /dev/null
+++ b/public/Features/ClicksForms/Export.svg
@@ -0,0 +1,58 @@
+<svg width="1843" height="912" viewBox="0 0 1843 912" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g filter="url(#filter0_bd)">
+<rect x="4" y="2" width="1835" height="894" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
+</g>
+<path d="M292.469 558H286.463V486.906H292.469V558ZM316.004 505.168L316.199 514.201C318.185 510.946 320.659 508.472 323.621 506.779C326.583 505.054 329.855 504.191 333.436 504.191C339.1 504.191 343.315 505.786 346.082 508.977C348.849 512.167 350.249 516.952 350.281 523.332V558H344.471V523.283C344.438 518.563 343.429 515.048 341.443 512.736C339.49 510.425 336.349 509.27 332.02 509.27C328.406 509.27 325.2 510.409 322.4 512.688C319.633 514.934 317.583 517.977 316.248 521.818V558H310.438V505.168H316.004ZM423.084 558C422.498 556.34 422.124 553.882 421.961 550.627C419.91 553.296 417.29 555.363 414.1 556.828C410.942 558.26 407.589 558.977 404.041 558.977C398.963 558.977 394.845 557.561 391.688 554.729C388.562 551.896 387 548.316 387 543.986C387 538.843 389.132 534.774 393.396 531.779C397.693 528.785 403.667 527.287 411.316 527.287H421.912V521.281C421.912 517.505 420.74 514.543 418.396 512.395C416.085 510.214 412.7 509.123 408.24 509.123C404.171 509.123 400.802 510.165 398.133 512.248C395.464 514.331 394.129 516.838 394.129 519.768L388.27 519.719C388.27 515.52 390.223 511.89 394.129 508.83C398.035 505.738 402.837 504.191 408.533 504.191C414.425 504.191 419.064 505.673 422.449 508.635C425.867 511.564 427.625 515.666 427.723 520.939V545.939C427.723 551.05 428.26 554.875 429.334 557.414V558H423.084ZM404.725 553.801C408.631 553.801 412.114 552.857 415.174 550.969C418.266 549.081 420.512 546.558 421.912 543.4V531.779H411.463C405.636 531.844 401.079 532.919 397.791 535.002C394.503 537.053 392.859 539.885 392.859 543.498C392.859 546.46 393.95 548.918 396.131 550.871C398.344 552.824 401.209 553.801 404.725 553.801ZM471.863 558V509.953H463.123V505.168H471.863V498.771C471.863 493.368 473.23 489.217 475.965 486.32C478.732 483.423 482.573 481.975 487.488 481.975C489.702 481.975 491.769 482.251 493.689 482.805L493.25 487.688C491.622 487.297 489.848 487.102 487.928 487.102C484.705 487.102 482.199 488.111 480.408 490.129C478.618 492.115 477.723 494.947 477.723 498.625V505.168H490.32V509.953H477.723V558H471.863ZM497.547 530.803C497.547 525.725 498.523 521.151 500.477 517.082C502.462 513.013 505.245 509.855 508.826 507.609C512.439 505.331 516.525 504.191 521.082 504.191C528.113 504.191 533.81 506.665 538.172 511.613C542.534 516.529 544.715 523.055 544.715 531.193V532.414C544.715 537.525 543.722 542.131 541.736 546.232C539.783 550.301 537.016 553.443 533.436 555.656C529.855 557.87 525.77 558.977 521.18 558.977C514.181 558.977 508.484 556.519 504.09 551.604C499.728 546.656 497.547 540.113 497.547 531.975V530.803ZM503.406 532.414C503.406 538.729 505.034 543.921 508.289 547.99C511.577 552.027 515.874 554.045 521.18 554.045C526.453 554.045 530.717 552.027 533.973 547.99C537.26 543.921 538.904 538.566 538.904 531.926V530.803C538.904 526.766 538.156 523.072 536.658 519.719C535.161 516.366 533.061 513.778 530.359 511.955C527.658 510.1 524.565 509.172 521.082 509.172C515.874 509.172 511.626 511.223 508.338 515.324C505.05 519.393 503.406 524.732 503.406 531.34V532.414ZM581.238 510.148C580.001 509.921 578.683 509.807 577.283 509.807C573.637 509.807 570.545 510.832 568.006 512.883C565.499 514.901 563.709 517.847 562.635 521.721V558H556.824V505.168H562.537L562.635 513.566C565.727 507.316 570.691 504.191 577.527 504.191C579.155 504.191 580.441 504.403 581.385 504.826L581.238 510.148ZM595.838 505.168L596.033 513.762C597.986 510.572 600.428 508.179 603.357 506.584C606.287 504.989 609.542 504.191 613.123 504.191C621.456 504.191 626.746 507.609 628.992 514.445C630.88 511.158 633.403 508.635 636.561 506.877C639.718 505.087 643.201 504.191 647.01 504.191C658.338 504.191 664.116 510.376 664.344 522.746V558H658.484V523.186C658.452 518.465 657.426 514.966 655.408 512.688C653.423 510.409 650.167 509.27 645.643 509.27C641.443 509.335 637.895 510.702 634.998 513.371C632.101 516.008 630.49 519.23 630.164 523.039V558H624.305V522.746C624.272 518.221 623.198 514.852 621.082 512.639C618.999 510.393 615.776 509.27 611.414 509.27C607.736 509.27 604.578 510.327 601.941 512.443C599.305 514.527 597.352 517.635 596.082 521.77V558H590.223V505.168H595.838ZM712.537 558C711.951 556.34 711.577 553.882 711.414 550.627C709.363 553.296 706.743 555.363 703.553 556.828C700.395 558.26 697.042 558.977 693.494 558.977C688.416 558.977 684.298 557.561 681.141 554.729C678.016 551.896 676.453 548.316 676.453 543.986C676.453 538.843 678.585 534.774 682.85 531.779C687.146 528.785 693.12 527.287 700.77 527.287H711.365V521.281C711.365 517.505 710.193 514.543 707.85 512.395C705.538 510.214 702.153 509.123 697.693 509.123C693.624 509.123 690.255 510.165 687.586 512.248C684.917 514.331 683.582 516.838 683.582 519.768L677.723 519.719C677.723 515.52 679.676 511.89 683.582 508.83C687.488 505.738 692.29 504.191 697.986 504.191C703.878 504.191 708.517 505.673 711.902 508.635C715.32 511.564 717.078 515.666 717.176 520.939V545.939C717.176 551.05 717.713 554.875 718.787 557.414V558H712.537ZM694.178 553.801C698.084 553.801 701.567 552.857 704.627 550.969C707.719 549.081 709.965 546.558 711.365 543.4V531.779H700.916C695.089 531.844 690.532 532.919 687.244 535.002C683.956 537.053 682.312 539.885 682.312 543.498C682.312 546.46 683.403 548.918 685.584 550.871C687.798 552.824 690.662 553.801 694.178 553.801ZM741.883 491.643V505.168H752.82V509.953H741.883V545.158C741.883 548.088 742.404 550.269 743.445 551.701C744.52 553.133 746.294 553.85 748.768 553.85C749.744 553.85 751.323 553.687 753.504 553.361L753.748 558.146C752.218 558.7 750.135 558.977 747.498 558.977C743.494 558.977 740.581 557.821 738.758 555.51C736.935 553.166 736.023 549.732 736.023 545.207V509.953H726.307V505.168H736.023V491.643H741.883ZM798.328 491.643V505.168H809.266V509.953H798.328V545.158C798.328 548.088 798.849 550.269 799.891 551.701C800.965 553.133 802.739 553.85 805.213 553.85C806.189 553.85 807.768 553.687 809.949 553.361L810.193 558.146C808.663 558.7 806.58 558.977 803.943 558.977C799.939 558.977 797.026 557.821 795.203 555.51C793.38 553.166 792.469 549.732 792.469 545.207V509.953H782.752V505.168H792.469V491.643H798.328ZM827.186 514.104C829.106 510.946 831.564 508.505 834.559 506.779C837.553 505.054 840.825 504.191 844.373 504.191C850.037 504.191 854.253 505.786 857.02 508.977C859.786 512.167 861.186 516.952 861.219 523.332V558H855.408V523.283C855.376 518.563 854.367 515.048 852.381 512.736C850.428 510.425 847.286 509.27 842.957 509.27C839.344 509.27 836.137 510.409 833.338 512.688C830.571 514.934 828.52 517.977 827.186 521.818V558H821.375V483H827.186V514.104ZM909.607 558C909.021 556.34 908.647 553.882 908.484 550.627C906.434 553.296 903.813 555.363 900.623 556.828C897.465 558.26 894.113 558.977 890.564 558.977C885.486 558.977 881.368 557.561 878.211 554.729C875.086 551.896 873.523 548.316 873.523 543.986C873.523 538.843 875.656 534.774 879.92 531.779C884.217 528.785 890.19 527.287 897.84 527.287H908.436V521.281C908.436 517.505 907.264 514.543 904.92 512.395C902.609 510.214 899.223 509.123 894.764 509.123C890.695 509.123 887.326 510.165 884.656 512.248C881.987 514.331 880.652 516.838 880.652 519.768L874.793 519.719C874.793 515.52 876.746 511.89 880.652 508.83C884.559 505.738 889.36 504.191 895.057 504.191C900.949 504.191 905.587 505.673 908.973 508.635C912.391 511.564 914.148 515.666 914.246 520.939V545.939C914.246 551.05 914.783 554.875 915.857 557.414V558H909.607ZM891.248 553.801C895.154 553.801 898.637 552.857 901.697 550.969C904.79 549.081 907.036 546.558 908.436 543.4V531.779H897.986C892.16 531.844 887.602 532.919 884.314 535.002C881.027 537.053 879.383 539.885 879.383 543.498C879.383 546.46 880.473 548.918 882.654 550.871C884.868 552.824 887.732 553.801 891.248 553.801ZM938.953 491.643V505.168H949.891V509.953H938.953V545.158C938.953 548.088 939.474 550.269 940.516 551.701C941.59 553.133 943.364 553.85 945.838 553.85C946.814 553.85 948.393 553.687 950.574 553.361L950.818 558.146C949.288 558.7 947.205 558.977 944.568 558.977C940.564 558.977 937.651 557.821 935.828 555.51C934.005 553.166 933.094 549.732 933.094 545.207V509.953H923.377V505.168H933.094V491.643H938.953ZM998.963 545.842L999.842 550.383L1001.01 545.598L1013.71 505.168H1018.69L1031.24 545.256L1032.61 550.822L1033.73 545.695L1044.57 505.168H1050.62L1035.24 558H1030.26L1016.69 516.105L1016.05 513.225L1015.42 516.154L1002.09 558H997.107L981.775 505.168H987.781L998.963 545.842ZM1058.48 530.803C1058.48 525.725 1059.46 521.151 1061.41 517.082C1063.4 513.013 1066.18 509.855 1069.76 507.609C1073.38 505.331 1077.46 504.191 1082.02 504.191C1089.05 504.191 1094.75 506.665 1099.11 511.613C1103.47 516.529 1105.65 523.055 1105.65 531.193V532.414C1105.65 537.525 1104.66 542.131 1102.67 546.232C1100.72 550.301 1097.95 553.443 1094.37 555.656C1090.79 557.87 1086.71 558.977 1082.12 558.977C1075.12 558.977 1069.42 556.519 1065.03 551.604C1060.67 546.656 1058.48 540.113 1058.48 531.975V530.803ZM1064.34 532.414C1064.34 538.729 1065.97 543.921 1069.23 547.99C1072.51 552.027 1076.81 554.045 1082.12 554.045C1087.39 554.045 1091.65 552.027 1094.91 547.99C1098.2 543.921 1099.84 538.566 1099.84 531.926V530.803C1099.84 526.766 1099.09 523.072 1097.6 519.719C1096.1 516.366 1094 513.778 1091.3 511.955C1088.6 510.1 1085.5 509.172 1082.02 509.172C1076.81 509.172 1072.56 511.223 1069.28 515.324C1065.99 519.393 1064.34 524.732 1064.34 531.34V532.414ZM1142.18 510.148C1140.94 509.921 1139.62 509.807 1138.22 509.807C1134.57 509.807 1131.48 510.832 1128.94 512.883C1126.44 514.901 1124.65 517.847 1123.57 521.721V558H1117.76V505.168H1123.47L1123.57 513.566C1126.66 507.316 1131.63 504.191 1138.46 504.191C1140.09 504.191 1141.38 504.403 1142.32 504.826L1142.18 510.148ZM1164 531.389L1157.31 537.834V558H1151.45V483H1157.31V530.998L1162.83 525.041L1183.04 505.168H1190.42L1168.01 527.434L1192.37 558H1185.39L1164 531.389ZM1232.12 544.572C1232.12 541.675 1230.95 539.348 1228.6 537.59C1226.29 535.832 1222.79 534.465 1218.1 533.488C1213.42 532.479 1209.77 531.34 1207.17 530.07C1204.59 528.768 1202.67 527.189 1201.4 525.334C1200.17 523.479 1199.55 521.232 1199.55 518.596C1199.55 514.429 1201.29 510.995 1204.77 508.293C1208.26 505.559 1212.72 504.191 1218.15 504.191C1224.04 504.191 1228.76 505.656 1232.31 508.586C1235.89 511.483 1237.68 515.275 1237.68 519.963H1231.82C1231.82 516.87 1230.52 514.299 1227.92 512.248C1225.35 510.197 1222.09 509.172 1218.15 509.172C1214.31 509.172 1211.22 510.035 1208.88 511.76C1206.56 513.452 1205.41 515.666 1205.41 518.4C1205.41 521.037 1206.37 523.088 1208.29 524.553C1210.24 525.985 1213.77 527.303 1218.88 528.508C1224.03 529.712 1227.87 530.998 1230.41 532.365C1232.98 533.732 1234.88 535.376 1236.12 537.297C1237.36 539.217 1237.98 541.545 1237.98 544.279C1237.98 548.739 1236.17 552.303 1232.56 554.973C1228.98 557.642 1224.29 558.977 1218.49 558.977C1212.34 558.977 1207.35 557.495 1203.5 554.533C1199.7 551.538 1197.79 547.762 1197.79 543.205H1203.65C1203.88 546.623 1205.31 549.292 1207.95 551.213C1210.62 553.101 1214.13 554.045 1218.49 554.045C1222.56 554.045 1225.85 553.15 1228.36 551.359C1230.86 549.569 1232.12 547.307 1232.12 544.572ZM1279.68 558V509.953H1270.94V505.168H1279.68V498.771C1279.68 493.368 1281.04 489.217 1283.78 486.32C1286.54 483.423 1290.39 481.975 1295.3 481.975C1297.51 481.975 1299.58 482.251 1301.5 482.805L1301.06 487.688C1299.43 487.297 1297.66 487.102 1295.74 487.102C1292.52 487.102 1290.01 488.111 1288.22 490.129C1286.43 492.115 1285.54 494.947 1285.54 498.625V505.168H1298.13V509.953H1285.54V558H1279.68ZM1305.36 530.803C1305.36 525.725 1306.34 521.151 1308.29 517.082C1310.27 513.013 1313.06 509.855 1316.64 507.609C1320.25 505.331 1324.34 504.191 1328.89 504.191C1335.93 504.191 1341.62 506.665 1345.98 511.613C1350.35 516.529 1352.53 523.055 1352.53 531.193V532.414C1352.53 537.525 1351.53 542.131 1349.55 546.232C1347.6 550.301 1344.83 553.443 1341.25 555.656C1337.67 557.87 1333.58 558.977 1328.99 558.977C1321.99 558.977 1316.3 556.519 1311.9 551.604C1307.54 546.656 1305.36 540.113 1305.36 531.975V530.803ZM1311.22 532.414C1311.22 538.729 1312.85 543.921 1316.1 547.99C1319.39 552.027 1323.69 554.045 1328.99 554.045C1334.27 554.045 1338.53 552.027 1341.79 547.99C1345.07 543.921 1346.72 538.566 1346.72 531.926V530.803C1346.72 526.766 1345.97 523.072 1344.47 519.719C1342.97 516.366 1340.87 513.778 1338.17 511.955C1335.47 510.1 1332.38 509.172 1328.89 509.172C1323.69 509.172 1319.44 511.223 1316.15 515.324C1312.86 519.393 1311.22 524.732 1311.22 531.34V532.414ZM1389.05 510.148C1387.81 509.921 1386.5 509.807 1385.1 509.807C1381.45 509.807 1378.36 510.832 1375.82 512.883C1373.31 514.901 1371.52 517.847 1370.45 521.721V558H1364.64V505.168H1370.35L1370.45 513.566C1373.54 507.316 1378.5 504.191 1385.34 504.191C1386.97 504.191 1388.25 504.403 1389.2 504.826L1389.05 510.148ZM1439.39 549.602L1454.82 505.168H1461.12L1438.56 566.984L1437.39 569.719C1434.49 576.132 1430.02 579.338 1423.96 579.338C1422.56 579.338 1421.07 579.11 1419.47 578.654L1419.42 573.82L1422.45 574.113C1425.31 574.113 1427.62 573.397 1429.38 571.965C1431.17 570.565 1432.69 568.14 1433.92 564.689L1436.51 557.561L1416.59 505.168H1422.99L1439.39 549.602ZM1466.2 530.803C1466.2 525.725 1467.18 521.151 1469.13 517.082C1471.11 513.013 1473.9 509.855 1477.48 507.609C1481.09 505.331 1485.18 504.191 1489.73 504.191C1496.77 504.191 1502.46 506.665 1506.82 511.613C1511.19 516.529 1513.37 523.055 1513.37 531.193V532.414C1513.37 537.525 1512.37 542.131 1510.39 546.232C1508.44 550.301 1505.67 553.443 1502.09 555.656C1498.51 557.87 1494.42 558.977 1489.83 558.977C1482.83 558.977 1477.14 556.519 1472.74 551.604C1468.38 546.656 1466.2 540.113 1466.2 531.975V530.803ZM1472.06 532.414C1472.06 538.729 1473.69 543.921 1476.94 547.99C1480.23 552.027 1484.53 554.045 1489.83 554.045C1495.11 554.045 1499.37 552.027 1502.62 547.99C1505.91 543.921 1507.56 538.566 1507.56 531.926V530.803C1507.56 526.766 1506.81 523.072 1505.31 519.719C1503.81 516.366 1501.71 513.778 1499.01 511.955C1496.31 510.1 1493.22 509.172 1489.73 509.172C1484.53 509.172 1480.28 511.223 1476.99 515.324C1473.7 519.393 1472.06 524.732 1472.06 531.34V532.414ZM1559.46 551.311C1555.95 556.421 1550.33 558.977 1542.62 558.977C1536.98 558.977 1532.7 557.349 1529.77 554.094C1526.84 550.806 1525.35 545.956 1525.28 539.543V505.168H1531.09V538.811C1531.09 548.869 1535.16 553.898 1543.3 553.898C1551.76 553.898 1557.12 550.399 1559.36 543.4V505.168H1565.22V558H1559.56L1559.46 551.311Z" fill="black"/>
+<g filter="url(#filter1_d)">
+<circle cx="467.003" cy="728.003" r="133.003" fill="#D46899" fill-opacity="0.75"/>
+<path d="M382.516 719.519C388.578 719.519 392.994 717.674 395.761 713.984C398.661 710.161 400.111 705.68 400.111 700.54V671.478C400.111 665.284 400.704 659.814 401.89 655.069C403.076 650.193 405.185 646.173 408.216 643.01C411.248 639.715 415.465 637.277 420.869 635.695C426.273 633.982 433.192 633.125 441.627 633.125H443.011V652.104C439.189 652.104 435.96 652.368 433.324 652.895C430.688 653.422 428.579 654.411 426.998 655.86C425.416 657.178 424.23 659.023 423.439 661.396C422.78 663.636 422.451 666.536 422.451 670.095V698.365C422.451 706.273 421.396 712.6 419.287 717.344C417.31 721.957 413.884 725.78 409.007 728.811C413.884 731.842 417.31 735.73 419.287 740.475C421.396 745.22 422.451 751.48 422.451 759.256V787.725C422.451 791.284 422.78 794.183 423.439 796.424C424.23 798.664 425.416 800.444 426.998 801.762C428.579 803.211 430.688 804.2 433.324 804.727C435.96 805.254 439.189 805.518 443.011 805.518V824.497C434.181 824.497 426.998 823.706 421.462 822.124C415.927 820.543 411.577 818.105 408.414 814.81C405.251 811.646 403.076 807.692 401.89 802.948C400.704 798.203 400.111 792.667 400.111 786.341V757.082C400.111 752.073 398.661 747.724 395.761 744.034C392.994 740.212 388.578 738.3 382.516 738.3V719.519Z" fill="white"/>
+<path d="M551.558 738.3C545.496 738.3 541.014 740.212 538.115 744.034C535.347 747.724 533.963 752.073 533.963 757.082V786.341C533.963 792.667 533.37 798.203 532.184 802.948C530.998 807.692 528.823 811.646 525.66 814.81C522.497 818.105 518.147 820.543 512.612 822.124C507.076 823.706 499.893 824.497 491.063 824.497V805.518C498.707 805.518 504.045 804.266 507.076 801.762C510.108 799.389 511.623 794.71 511.623 787.725V759.256C511.623 751.48 512.612 745.22 514.589 740.475C516.698 735.73 520.19 731.842 525.067 728.811C520.19 725.78 516.698 721.957 514.589 717.344C512.612 712.6 511.623 706.273 511.623 698.365V670.095C511.623 666.536 511.228 663.636 510.437 661.396C509.778 659.023 508.658 657.178 507.076 655.86C505.495 654.411 503.386 653.422 500.75 652.895C498.114 652.368 494.885 652.104 491.063 652.104V633.125H492.447C500.882 633.125 507.801 633.982 513.205 635.695C518.609 637.277 522.826 639.715 525.858 643.01C528.889 646.173 530.998 650.193 532.184 655.069C533.37 659.814 533.963 665.284 533.963 671.478V700.54C533.963 705.68 535.347 710.161 538.115 713.984C541.014 717.674 545.496 719.519 551.558 719.519V738.3Z" fill="white"/>
+<circle cx="772.001" cy="728.003" r="133.003" fill="#D46899" fill-opacity="0.75"/>
+<path d="M712.149 700.099L729.188 673.849H748.684L722.28 711.765C727.807 718.929 733.077 726.195 738.092 733.563C743.209 740.829 747.405 747.686 750.679 754.133H730.57C729.649 752.189 728.421 749.989 726.886 747.533C725.453 744.974 723.867 742.364 722.127 739.704C720.489 736.94 718.75 734.228 716.908 731.568C715.066 728.907 713.275 726.4 711.535 724.046C707.953 728.651 704.422 733.768 700.943 739.397C697.566 744.923 694.751 749.835 692.5 754.133H673.465C675 751.063 676.842 747.788 678.991 744.309C681.14 740.829 683.443 737.299 685.899 733.717C688.355 730.033 690.862 726.4 693.421 722.818C696.082 719.134 698.691 715.654 701.25 712.379L674.693 673.849H695.109L712.149 700.099Z" fill="white"/>
+<path d="M783.729 733.717C783.934 735.457 784.036 736.736 784.036 737.554C784.036 738.373 784.036 739.192 784.036 740.011C784.036 746.356 783.013 752.905 780.966 759.66C779.022 766.414 776.259 772.81 772.677 778.848L758.093 774.857C760.55 768.921 762.187 763.088 763.006 757.357C763.927 751.728 764.387 746.765 764.387 742.467C764.387 741.239 764.336 739.704 764.234 737.862C764.234 736.019 764.183 734.638 764.08 733.717H783.729Z" fill="white"/>
+<path d="M871.164 673.849C862.875 704.346 853.255 731.977 842.305 756.743C840.258 761.348 838.16 765.288 836.011 768.563C833.862 771.838 831.457 774.55 828.796 776.699C826.135 778.848 823.167 780.383 819.892 781.304C816.618 782.328 812.831 782.839 808.533 782.839C805.667 782.839 802.802 782.532 799.936 781.918C797.173 781.304 795.075 780.639 793.643 779.923L797.02 765.032C800.704 766.465 804.337 767.182 807.919 767.182C812.729 767.182 816.464 766.005 819.125 763.651C821.888 761.399 824.293 757.869 826.34 753.059C820.506 741.802 814.878 729.521 809.454 716.217C804.132 702.913 799.373 688.79 795.178 673.849H814.98C816.004 678.147 817.232 682.803 818.664 687.818C820.199 692.832 821.837 697.949 823.577 703.169C825.316 708.286 827.158 713.403 829.103 718.519C831.047 723.636 832.992 728.395 834.936 732.796C838.211 723.688 841.281 714.017 844.147 703.783C847.012 693.447 849.622 683.468 851.976 673.849H871.164Z" fill="white"/>
+<circle cx="1077" cy="728.003" r="133.003" fill="#D46899" fill-opacity="0.75"/>
+<path d="M965.803 722.538L1031.96 694.6L1037.03 709.797L985.605 730.367L1037.03 750.937L1031.96 766.134L965.803 738.196V722.538Z" fill="white"/>
+<path d="M1059.96 802.516H1040.92L1092.81 653.92H1111.54L1059.96 802.516Z" fill="white"/>
+<path d="M1188.14 738.196L1121.98 766.134L1116.91 750.937L1168.34 730.367L1116.91 709.797L1121.98 694.6L1188.14 722.538V738.196Z" fill="white"/>
+<circle cx="1382" cy="728.003" r="133.003" fill="#D46899" fill-opacity="0.75"/>
+<path d="M1286.95 772.353C1286.95 775.764 1285.78 778.541 1283.44 780.685C1281.2 782.828 1278.47 783.9 1275.26 783.9C1271.94 783.9 1269.17 782.828 1266.92 780.685C1264.68 778.541 1263.56 775.764 1263.56 772.353C1263.56 768.943 1264.68 766.165 1266.92 764.022C1269.17 761.781 1271.94 760.66 1275.26 760.66C1278.47 760.66 1281.2 761.781 1283.44 764.022C1285.78 766.165 1286.95 768.943 1286.95 772.353ZM1349.45 741.805C1349.45 733.814 1348.43 728.065 1346.38 724.557C1344.43 720.952 1340.73 719.149 1335.27 719.149C1333.33 719.149 1331.18 719.295 1328.84 719.588C1326.51 719.88 1324.75 720.124 1323.58 720.318V782H1305.9V708.041C1309.31 707.066 1313.74 706.14 1319.2 705.264C1324.75 704.387 1330.6 703.948 1336.74 703.948C1342 703.948 1346.29 704.63 1349.6 705.994C1353.01 707.359 1355.84 709.161 1358.08 711.402C1359.15 710.623 1360.51 709.795 1362.17 708.918C1363.83 708.041 1365.68 707.261 1367.72 706.579C1369.77 705.799 1371.91 705.166 1374.15 704.679C1376.49 704.192 1378.83 703.948 1381.17 703.948C1387.11 703.948 1391.99 704.825 1395.79 706.579C1399.68 708.236 1402.71 710.623 1404.85 713.741C1407.09 716.762 1408.6 720.465 1409.38 724.85C1410.26 729.137 1410.7 733.863 1410.7 739.028V782H1393.01V741.805C1393.01 733.814 1392.04 728.065 1390.09 724.557C1388.14 720.952 1384.39 719.149 1378.83 719.149C1376.01 719.149 1373.33 719.636 1370.79 720.611C1368.26 721.488 1366.36 722.365 1365.09 723.242C1365.87 725.678 1366.41 728.26 1366.7 730.989C1366.99 733.717 1367.14 736.64 1367.14 739.758V782H1349.45V741.805ZM1446.25 743.559C1446.25 751.354 1448.1 757.493 1451.8 761.975C1455.51 766.36 1460.62 768.553 1467.15 768.553C1469.98 768.553 1472.36 768.455 1474.31 768.261C1476.36 767.968 1478.01 767.676 1479.28 767.384V723.534C1477.72 722.462 1475.63 721.488 1473 720.611C1470.46 719.636 1467.73 719.149 1464.81 719.149C1458.38 719.149 1453.65 721.342 1450.63 725.727C1447.71 730.112 1446.25 736.056 1446.25 743.559ZM1496.97 779.661C1493.46 780.733 1489.03 781.708 1483.67 782.585C1478.4 783.462 1472.85 783.9 1467 783.9C1460.96 783.9 1455.55 782.974 1450.78 781.123C1446 779.272 1441.91 776.641 1438.5 773.23C1435.19 769.722 1432.61 765.532 1430.75 760.66C1429 755.69 1428.12 750.136 1428.12 743.997C1428.12 737.956 1428.85 732.499 1430.32 727.627C1431.88 722.657 1434.12 718.418 1437.04 714.91C1439.96 711.402 1443.52 708.723 1447.71 706.871C1451.9 704.922 1456.72 703.948 1462.18 703.948C1465.88 703.948 1469.15 704.387 1471.97 705.264C1474.8 706.14 1477.24 707.115 1479.28 708.187V671.499L1496.97 668.576V779.661Z" fill="white"/>
+</g>
+<g filter="url(#filter2_d)">
+<path d="M677.679 128.654H604.681V183.342H690.008V208H573.797V30.2656H689.153V55.168H604.681V104.24H677.679V128.654ZM759.71 119.377L784.856 75.9199H817.815L777.41 140.983L819.158 208H786.443L760.076 162.834L733.831 208H700.872L742.62 140.983L702.337 75.9199H735.052L759.71 119.377ZM953.68 143.303C953.68 163.729 949.041 180.046 939.764 192.253C930.486 204.379 918.035 210.441 902.41 210.441C887.924 210.441 876.328 205.681 867.62 196.159V258.781H837.957V75.9199H865.301L866.521 89.3477C875.229 78.7682 887.07 73.4785 902.044 73.4785C918.157 73.4785 930.771 79.5007 939.886 91.5449C949.082 103.508 953.68 120.15 953.68 141.472V143.303ZM924.139 140.739C924.139 127.556 921.494 117.098 916.204 109.367C910.996 101.636 903.509 97.7705 893.743 97.7705C881.618 97.7705 872.91 102.775 867.62 112.785V171.379C872.991 181.633 881.78 186.76 893.987 186.76C903.427 186.76 910.792 182.976 916.082 175.407C921.453 167.757 924.139 156.201 924.139 140.739ZM973.333 140.739C973.333 127.8 975.896 116.162 981.023 105.827C986.15 95.4105 993.353 87.4352 1002.63 81.9014C1011.91 76.2861 1022.57 73.4785 1034.61 73.4785C1052.43 73.4785 1066.88 79.2158 1077.95 90.6904C1089.1 102.165 1095.12 117.383 1096.01 136.345L1096.14 143.303C1096.14 156.324 1093.61 167.961 1088.57 178.215C1083.6 188.469 1076.44 196.403 1067.08 202.019C1057.81 207.634 1047.06 210.441 1034.86 210.441C1016.22 210.441 1001.29 204.257 990.057 191.887C978.908 179.436 973.333 162.875 973.333 142.204V140.739ZM1003 143.303C1003 156.893 1005.8 167.554 1011.42 175.285C1017.03 182.935 1024.85 186.76 1034.86 186.76C1044.87 186.76 1052.64 182.854 1058.17 175.041C1063.79 167.229 1066.59 155.795 1066.59 140.739C1066.59 127.393 1063.71 116.813 1057.93 109.001C1052.23 101.188 1044.46 97.2822 1034.61 97.2822C1024.93 97.2822 1017.24 101.148 1011.54 108.879C1005.84 116.529 1003 128.003 1003 143.303ZM1190.37 103.02C1186.47 102.368 1182.44 102.043 1178.29 102.043C1164.7 102.043 1155.54 107.251 1150.82 117.668V208H1121.16V75.9199H1149.48L1150.21 90.6904C1157.37 79.2158 1167.3 73.4785 1180 73.4785C1184.23 73.4785 1187.73 74.0482 1190.5 75.1875L1190.37 103.02ZM1252.39 43.8154V75.9199H1275.7V97.8926H1252.39V171.623C1252.39 176.669 1253.36 180.331 1255.32 182.609C1257.35 184.807 1260.93 185.905 1266.06 185.905C1269.48 185.905 1272.93 185.498 1276.43 184.685V207.634C1269.68 209.506 1263.17 210.441 1256.9 210.441C1234.12 210.441 1222.72 197.868 1222.72 172.722V97.8926H1200.99V75.9199H1222.72V43.8154H1252.39ZM385.687 344.519H351.263V413H320.379V235.266H382.879C403.387 235.266 419.215 239.864 430.364 249.06C441.513 258.256 447.088 271.561 447.088 288.977C447.088 300.858 444.199 310.827 438.421 318.884C432.724 326.859 424.749 333.003 414.495 337.316L454.412 411.413V413H421.331L385.687 344.519ZM351.263 319.738H383.001C393.418 319.738 401.556 317.134 407.415 311.926C413.274 306.636 416.204 299.434 416.204 290.319C416.204 280.798 413.478 273.433 408.025 268.225C402.654 263.016 394.598 260.331 383.855 260.168H351.263V319.738ZM531.683 415.441C512.884 415.441 497.625 409.541 485.906 397.741C474.269 385.86 468.45 370.072 468.45 350.378V346.716C468.45 333.532 470.973 321.773 476.019 311.438C481.146 301.021 488.307 292.924 497.503 287.146C506.699 281.368 516.953 278.479 528.265 278.479C546.25 278.479 560.125 284.216 569.891 295.69C579.738 307.165 584.661 323.4 584.661 344.396V356.359H498.357C499.253 367.264 502.874 375.891 509.222 382.238C515.651 388.586 523.707 391.76 533.392 391.76C546.982 391.76 558.05 386.267 566.595 375.28L582.586 390.539C577.296 398.433 570.216 404.577 561.346 408.972C552.557 413.285 542.669 415.441 531.683 415.441ZM528.143 302.282C520.005 302.282 513.413 305.131 508.367 310.827C503.403 316.524 500.229 324.458 498.846 334.631H555.364V332.434C554.713 322.505 552.068 315.018 547.43 309.973C542.791 304.846 536.362 302.282 528.143 302.282ZM681.829 377.111C681.829 371.822 679.632 367.793 675.237 365.026C670.924 362.259 663.722 359.818 653.631 357.702C643.54 355.586 635.117 352.901 628.362 349.646C613.551 342.484 606.146 332.108 606.146 318.518C606.146 307.124 610.947 297.603 620.55 289.953C630.153 282.303 642.36 278.479 657.171 278.479C672.959 278.479 685.695 282.385 695.379 290.197C705.145 298.01 710.027 308.142 710.027 320.593H680.364C680.364 314.896 678.248 310.176 674.017 306.433C669.785 302.608 664.17 300.695 657.171 300.695C650.66 300.695 645.33 302.201 641.18 305.212C637.111 308.223 635.076 312.251 635.076 317.297C635.076 321.854 636.989 325.394 640.813 327.917C644.638 330.44 652.369 333.003 664.007 335.607C675.644 338.13 684.759 341.182 691.351 344.763C698.024 348.262 702.947 352.494 706.121 357.458C709.376 362.422 711.004 368.444 711.004 375.524C711.004 387.406 706.08 397.049 696.233 404.455C686.386 411.779 673.488 415.441 657.537 415.441C646.714 415.441 637.07 413.488 628.606 409.582C620.143 405.676 613.551 400.305 608.831 393.469C604.111 386.633 601.751 379.268 601.751 371.374H630.56C630.966 378.373 633.611 383.785 638.494 387.609C643.377 391.353 649.847 393.225 657.903 393.225C665.716 393.225 671.657 391.76 675.726 388.83C679.795 385.819 681.829 381.913 681.829 377.111ZM852.605 348.303C852.605 368.729 847.967 385.046 838.689 397.253C829.412 409.379 816.961 415.441 801.336 415.441C786.85 415.441 775.254 410.681 766.546 401.159V463.781H736.883V280.92H764.227L765.447 294.348C774.155 283.768 785.996 278.479 800.97 278.479C817.083 278.479 829.697 284.501 838.812 296.545C848.007 308.508 852.605 325.15 852.605 346.472V348.303ZM823.064 345.739C823.064 332.556 820.42 322.098 815.13 314.367C809.922 306.636 802.435 302.771 792.669 302.771C780.543 302.771 771.836 307.775 766.546 317.785V376.379C771.917 386.633 780.706 391.76 792.913 391.76C802.353 391.76 809.718 387.976 815.008 380.407C820.379 372.757 823.064 361.201 823.064 345.739ZM872.259 345.739C872.259 332.8 874.822 321.162 879.949 310.827C885.076 300.41 892.278 292.435 901.556 286.901C910.833 281.286 921.494 278.479 933.538 278.479C951.36 278.479 965.805 284.216 976.873 295.69C988.022 307.165 994.044 322.383 994.939 341.345L995.062 348.303C995.062 361.324 992.539 372.961 987.493 383.215C982.529 393.469 975.368 401.403 966.009 407.019C956.731 412.634 945.989 415.441 933.782 415.441C915.146 415.441 900.213 409.257 888.982 396.887C877.833 384.436 872.259 367.875 872.259 347.204V345.739ZM901.922 348.303C901.922 361.893 904.729 372.554 910.345 380.285C915.96 387.935 923.772 391.76 933.782 391.76C943.792 391.76 951.564 387.854 957.098 380.041C962.713 372.229 965.521 360.795 965.521 345.739C965.521 332.393 962.632 321.813 956.854 314.001C951.157 306.188 943.385 302.282 933.538 302.282C923.854 302.282 916.163 306.148 910.467 313.879C904.77 321.529 901.922 333.003 901.922 348.303ZM1047.67 280.92L1048.53 296.179C1058.29 284.379 1071.11 278.479 1086.98 278.479C1114.49 278.479 1128.48 294.226 1128.97 325.72V413H1099.31V327.429C1099.31 319.047 1097.48 312.862 1093.82 308.874C1090.24 304.805 1084.34 302.771 1076.12 302.771C1064.15 302.771 1055.24 308.182 1049.38 319.006V413H1019.72V280.92H1047.67ZM1233.34 377.111C1233.34 371.822 1231.15 367.793 1226.75 365.026C1222.44 362.259 1215.24 359.818 1205.14 357.702C1195.05 355.586 1186.63 352.901 1179.88 349.646C1165.06 342.484 1157.66 332.108 1157.66 318.518C1157.66 307.124 1162.46 297.603 1172.06 289.953C1181.67 282.303 1193.87 278.479 1208.68 278.479C1224.47 278.479 1237.21 282.385 1246.89 290.197C1256.66 298.01 1261.54 308.142 1261.54 320.593H1231.88C1231.88 314.896 1229.76 310.176 1225.53 306.433C1221.3 302.608 1215.68 300.695 1208.68 300.695C1202.17 300.695 1196.84 302.201 1192.69 305.212C1188.62 308.223 1186.59 312.251 1186.59 317.297C1186.59 321.854 1188.5 325.394 1192.33 327.917C1196.15 330.44 1203.88 333.003 1215.52 335.607C1227.16 338.13 1236.27 341.182 1242.86 344.763C1249.54 348.262 1254.46 352.494 1257.63 357.458C1260.89 362.422 1262.52 368.444 1262.52 375.524C1262.52 387.406 1257.59 397.049 1247.75 404.455C1237.9 411.779 1225 415.441 1209.05 415.441C1198.23 415.441 1188.58 413.488 1180.12 409.582C1171.66 405.676 1165.06 400.305 1160.34 393.469C1155.62 386.633 1153.26 379.268 1153.26 371.374H1182.07C1182.48 378.373 1185.12 383.785 1190.01 387.609C1194.89 391.353 1201.36 393.225 1209.42 393.225C1217.23 393.225 1223.17 391.76 1227.24 388.83C1231.31 385.819 1233.34 381.913 1233.34 377.111ZM1346.62 415.441C1327.83 415.441 1312.57 409.541 1300.85 397.741C1289.21 385.86 1283.39 370.072 1283.39 350.378V346.716C1283.39 333.532 1285.91 321.773 1290.96 311.438C1296.09 301.021 1303.25 292.924 1312.44 287.146C1321.64 281.368 1331.89 278.479 1343.21 278.479C1361.19 278.479 1375.07 284.216 1384.83 295.69C1394.68 307.165 1399.6 323.4 1399.6 344.396V356.359H1313.3C1314.19 367.264 1317.82 375.891 1324.16 382.238C1330.59 388.586 1338.65 391.76 1348.33 391.76C1361.92 391.76 1372.99 386.267 1381.54 375.28L1397.53 390.539C1392.24 398.433 1385.16 404.577 1376.29 408.972C1367.5 413.285 1357.61 415.441 1346.62 415.441ZM1343.08 302.282C1334.95 302.282 1328.35 305.131 1323.31 310.827C1318.34 316.524 1315.17 324.458 1313.79 334.631H1370.31V332.434C1369.65 322.505 1367.01 315.018 1362.37 309.973C1357.73 304.846 1351.3 302.282 1343.08 302.282ZM1496.77 377.111C1496.77 371.822 1494.57 367.793 1490.18 365.026C1485.87 362.259 1478.66 359.818 1468.57 357.702C1458.48 355.586 1450.06 352.901 1443.3 349.646C1428.49 342.484 1421.09 332.108 1421.09 318.518C1421.09 307.124 1425.89 297.603 1435.49 289.953C1445.09 282.303 1457.3 278.479 1472.11 278.479C1487.9 278.479 1500.64 282.385 1510.32 290.197C1520.09 298.01 1524.97 308.142 1524.97 320.593H1495.31C1495.31 314.896 1493.19 310.176 1488.96 306.433C1484.73 302.608 1479.11 300.695 1472.11 300.695C1465.6 300.695 1460.27 302.201 1456.12 305.212C1452.05 308.223 1450.02 312.251 1450.02 317.297C1450.02 321.854 1451.93 325.394 1455.75 327.917C1459.58 330.44 1467.31 333.003 1478.95 335.607C1490.59 338.13 1499.7 341.182 1506.29 344.763C1512.97 348.262 1517.89 352.494 1521.06 357.458C1524.32 362.422 1525.95 368.444 1525.95 375.524C1525.95 387.406 1521.02 397.049 1511.17 404.455C1501.33 411.779 1488.43 415.441 1472.48 415.441C1461.65 415.441 1452.01 413.488 1443.55 409.582C1435.08 405.676 1428.49 400.305 1423.77 393.469C1419.05 386.633 1416.69 379.268 1416.69 371.374H1445.5C1445.91 378.373 1448.55 383.785 1453.44 387.609C1458.32 391.353 1464.79 393.225 1472.84 393.225C1480.66 393.225 1486.6 391.76 1490.67 388.83C1494.74 385.819 1496.77 381.913 1496.77 377.111Z" fill="#D46899"/>
+</g>
+<defs>
+<filter id="filter0_bd" x="-46" y="-48" width="1935" height="994" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dy="4"/>
+<feGaussianBlur stdDeviation="2"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
+<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
+</filter>
+<filter id="filter1_d" x="284" y="545" width="1281" height="366.007" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="25"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+<filter id="filter2_d" x="290.379" y="0.265625" width="1265.57" height="493.516" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="15"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+</defs>
+</svg>
diff --git a/public/Features/ClicksForms/Forms.svg b/public/Features/ClicksForms/Forms.svg
new file mode 100644
index 0000000..52765d4
--- /dev/null
+++ b/public/Features/ClicksForms/Forms.svg
@@ -0,0 +1,43 @@
+<svg width="2444" height="896" viewBox="0 0 2444 896" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g filter="url(#filter0_bd)">
+<rect x="4" width="2436" height="888" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
+</g>
+<rect x="202" y="29" width="2039" height="98" rx="10" fill="black" fill-opacity="0.25"/>
+<rect x="136" y="161" width="2171" height="148" rx="10" fill="#A8A8A8" fill-opacity="0.45"/>
+<rect x="53" y="343" width="2337" height="203" rx="10" fill="#D0D0D0" fill-opacity="0.65"/>
+<rect x="136" y="580" width="2171" height="148" rx="10" fill="#A8A8A8" fill-opacity="0.45"/>
+<rect x="202" y="762" width="2039" height="98" rx="10" fill="black" fill-opacity="0.25"/>
+<path d="M1133.9 89.3594V162.162C1133.85 169.34 1132.27 175.59 1129.14 180.912C1126.02 186.234 1121.6 190.336 1115.88 193.217C1110.22 196.049 1103.7 197.465 1096.33 197.465C1085.1 197.465 1076.09 194.413 1069.3 188.31C1062.56 182.157 1059.07 173.661 1058.83 162.821V89.3594H1067.76V161.503C1067.76 170.487 1070.33 177.47 1075.46 182.45C1080.58 187.382 1087.54 189.848 1096.33 189.848C1105.12 189.848 1112.05 187.357 1117.13 182.377C1122.26 177.396 1124.82 170.463 1124.82 161.576V89.3594H1133.9ZM1220.69 157.182C1220.69 169.535 1217.96 179.35 1212.49 186.625C1207.02 193.852 1199.7 197.465 1190.52 197.465C1179.68 197.465 1171.38 193.656 1165.62 186.039V226.469H1156.9V116.752H1165.03L1165.47 127.958C1171.18 119.511 1179.46 115.287 1190.3 115.287C1199.77 115.287 1207.19 118.876 1212.56 126.054C1217.98 133.231 1220.69 143.192 1220.69 155.937V157.182ZM1211.91 155.644C1211.91 145.536 1209.83 137.553 1205.68 131.693C1201.53 125.834 1195.74 122.904 1188.32 122.904C1182.95 122.904 1178.34 124.198 1174.48 126.786C1170.62 129.374 1167.67 133.134 1165.62 138.065V176.078C1167.72 180.619 1170.72 184.086 1174.62 186.479C1178.53 188.871 1183.15 190.067 1188.47 190.067C1195.84 190.067 1201.58 187.138 1205.68 181.278C1209.83 175.37 1211.91 166.825 1211.91 155.644ZM1290.27 96.4639V116.752H1306.68V123.93H1290.27V176.737C1290.27 181.132 1291.06 184.403 1292.62 186.552C1294.23 188.7 1296.89 189.774 1300.6 189.774C1302.07 189.774 1304.43 189.53 1307.71 189.042L1308.07 196.22C1305.78 197.05 1302.65 197.465 1298.7 197.465C1292.69 197.465 1288.32 195.731 1285.59 192.265C1282.85 188.749 1281.49 183.598 1281.49 176.811V123.93H1266.91V116.752H1281.49V96.4639H1290.27ZM1318.55 155.204C1318.55 147.587 1320.01 140.727 1322.94 134.623C1325.92 128.52 1330.09 123.783 1335.46 120.414C1340.88 116.996 1347.01 115.287 1353.85 115.287C1364.4 115.287 1372.94 118.998 1379.48 126.42C1386.03 133.793 1389.3 143.583 1389.3 155.79V157.621C1389.3 165.287 1387.81 172.196 1384.83 178.349C1381.9 184.452 1377.75 189.164 1372.38 192.484C1367.01 195.805 1360.88 197.465 1354 197.465C1343.5 197.465 1334.95 193.778 1328.36 186.405C1321.82 178.983 1318.55 169.169 1318.55 156.962V155.204ZM1327.33 157.621C1327.33 167.094 1329.78 174.882 1334.66 180.985C1339.59 187.04 1346.04 190.067 1354 190.067C1361.91 190.067 1368.3 187.04 1373.18 180.985C1378.12 174.882 1380.58 166.85 1380.58 156.889V155.204C1380.58 149.149 1379.46 143.607 1377.21 138.578C1374.97 133.549 1371.82 129.667 1367.76 126.933C1363.71 124.149 1359.07 122.758 1353.85 122.758C1346.04 122.758 1339.66 125.834 1334.73 131.986C1329.8 138.09 1327.33 146.098 1327.33 156.01V157.621Z" fill="black"/>
+<path d="M913.736 755.567V799H904.728V692.359H941.056C952.14 692.359 960.88 695.191 967.276 700.855C973.722 706.52 976.944 714.308 976.944 724.22C976.944 734.229 973.844 741.969 967.643 747.438C961.49 752.857 952.555 755.567 940.836 755.567H913.736ZM913.736 747.95H941.056C949.796 747.95 956.461 745.875 961.051 741.725C965.641 737.574 967.936 731.788 967.936 724.366C967.936 716.993 965.641 711.134 961.051 706.788C956.51 702.394 950.04 700.147 941.642 700.05H913.736V747.95ZM1024.77 800.465C1018.03 800.465 1011.93 798.805 1006.46 795.484C1001.04 792.164 996.817 787.55 993.79 781.642C990.763 775.685 989.249 769.02 989.249 761.646V758.497C989.249 750.88 990.714 744.02 993.644 737.916C996.622 731.812 1000.75 727.027 1006.02 723.561C1011.29 720.045 1017.01 718.287 1023.16 718.287C1032.78 718.287 1040.4 721.583 1046.01 728.175C1051.68 734.718 1054.51 743.678 1054.51 755.055V759.962H997.965V761.646C997.965 770.631 1000.53 778.126 1005.66 784.132C1010.83 790.089 1017.33 793.067 1025.14 793.067C1029.83 793.067 1033.95 792.213 1037.52 790.504C1041.13 788.795 1044.4 786.061 1047.33 782.301L1052.82 786.476C1046.38 795.802 1037.03 800.465 1024.77 800.465ZM1023.16 725.758C1016.57 725.758 1011 728.175 1006.46 733.009C1001.97 737.843 999.234 744.337 998.258 752.491H1045.79V751.539C1045.55 743.922 1043.38 737.721 1039.27 732.936C1035.17 728.15 1029.8 725.758 1023.16 725.758ZM1108.19 727.223C1106.34 726.881 1104.36 726.71 1102.26 726.71C1096.79 726.71 1092.15 728.248 1088.35 731.324C1084.59 734.352 1081.9 738.771 1080.29 744.581V799H1071.57V719.752H1080.14L1080.29 732.35C1084.93 722.975 1092.37 718.287 1102.63 718.287C1105.07 718.287 1107 718.604 1108.41 719.239L1108.19 727.223ZM1206.05 778.858C1206.05 774.513 1204.29 771.021 1200.77 768.385C1197.31 765.748 1192.06 763.697 1185.03 762.232C1177.99 760.719 1172.53 759.01 1168.62 757.105C1164.76 755.152 1161.88 752.784 1159.98 750.001C1158.12 747.218 1157.19 743.849 1157.19 739.894C1157.19 733.644 1159.81 728.492 1165.03 724.439C1170.25 720.338 1176.94 718.287 1185.1 718.287C1193.94 718.287 1201.02 720.484 1206.34 724.879C1211.71 729.225 1214.4 734.913 1214.4 741.944H1205.61C1205.61 737.306 1203.65 733.448 1199.75 730.372C1195.89 727.296 1191.01 725.758 1185.1 725.758C1179.34 725.758 1174.7 727.052 1171.18 729.64C1167.72 732.179 1165.98 735.499 1165.98 739.601C1165.98 743.556 1167.42 746.632 1170.3 748.829C1173.23 750.978 1178.53 752.955 1186.2 754.762C1193.91 756.568 1199.67 758.497 1203.48 760.548C1207.34 762.599 1210.2 765.064 1212.05 767.945C1213.91 770.826 1214.83 774.317 1214.83 778.419C1214.83 785.108 1212.12 790.455 1206.71 794.459C1201.33 798.463 1194.3 800.465 1185.61 800.465C1176.38 800.465 1168.89 798.243 1163.13 793.8C1157.41 789.308 1154.56 783.644 1154.56 776.808H1163.35C1163.69 781.935 1165.84 785.938 1169.79 788.819C1173.79 791.651 1179.07 793.067 1185.61 793.067C1191.71 793.067 1196.65 791.725 1200.41 789.039C1204.17 786.354 1206.05 782.96 1206.05 778.858ZM1265.3 800.465C1258.56 800.465 1252.46 798.805 1246.99 795.484C1241.57 792.164 1237.34 787.55 1234.32 781.642C1231.29 775.685 1229.78 769.02 1229.78 761.646V758.497C1229.78 750.88 1231.24 744.02 1234.17 737.916C1237.15 731.812 1241.28 727.027 1246.55 723.561C1251.82 720.045 1257.54 718.287 1263.69 718.287C1273.31 718.287 1280.92 721.583 1286.54 728.175C1292.2 734.718 1295.04 743.678 1295.04 755.055V759.962H1238.49V761.646C1238.49 770.631 1241.06 778.126 1246.18 784.132C1251.36 790.089 1257.85 793.067 1265.67 793.067C1270.35 793.067 1274.48 792.213 1278.04 790.504C1281.66 788.795 1284.93 786.061 1287.86 782.301L1293.35 786.476C1286.91 795.802 1277.55 800.465 1265.3 800.465ZM1263.69 725.758C1257.1 725.758 1251.53 728.175 1246.99 733.009C1242.5 737.843 1239.76 744.337 1238.79 752.491H1286.32V751.539C1286.08 743.922 1283.9 737.721 1279.8 732.936C1275.7 728.15 1270.33 725.758 1263.69 725.758ZM1348.72 727.223C1346.87 726.881 1344.89 726.71 1342.79 726.71C1337.32 726.71 1332.68 728.248 1328.87 731.324C1325.11 734.352 1322.43 738.771 1320.82 744.581V799H1312.1V719.752H1320.67L1320.82 732.35C1325.46 722.975 1332.9 718.287 1343.16 718.287C1345.6 718.287 1347.53 718.604 1348.94 719.239L1348.72 727.223ZM1388.64 786.915L1412.74 719.752H1421.74L1392.15 799H1385.05L1355.31 719.752H1364.32L1388.64 786.915ZM1465.84 800.465C1459.1 800.465 1452.99 798.805 1447.53 795.484C1442.11 792.164 1437.88 787.55 1434.85 781.642C1431.83 775.685 1430.31 769.02 1430.31 761.646V758.497C1430.31 750.88 1431.78 744.02 1434.71 737.916C1437.69 731.812 1441.81 727.027 1447.09 723.561C1452.36 720.045 1458.07 718.287 1464.22 718.287C1473.84 718.287 1481.46 721.583 1487.08 728.175C1492.74 734.718 1495.57 743.678 1495.57 755.055V759.962H1439.03V761.646C1439.03 770.631 1441.59 778.126 1446.72 784.132C1451.9 790.089 1458.39 793.067 1466.2 793.067C1470.89 793.067 1475.02 792.213 1478.58 790.504C1482.19 788.795 1485.46 786.061 1488.39 782.301L1493.89 786.476C1487.44 795.802 1478.09 800.465 1465.84 800.465ZM1464.22 725.758C1457.63 725.758 1452.07 728.175 1447.53 733.009C1443.03 737.843 1440.3 744.337 1439.32 752.491H1486.86V751.539C1486.61 743.922 1484.44 737.721 1480.34 732.936C1476.24 728.15 1470.87 725.758 1464.22 725.758ZM1549.26 727.223C1547.4 726.881 1545.43 726.71 1543.33 726.71C1537.86 726.71 1533.22 728.248 1529.41 731.324C1525.65 734.352 1522.96 738.771 1521.35 744.581V799H1512.64V719.752H1521.21L1521.35 732.35C1525.99 722.975 1533.44 718.287 1543.69 718.287C1546.13 718.287 1548.06 718.604 1549.48 719.239L1549.26 727.223Z" fill="black"/>
+<g filter="url(#filter1_d)">
+<path d="M823.76 530H704.253V509.614L763.457 445.039C772.002 435.518 778.065 427.583 781.646 421.235C785.308 414.806 787.139 408.377 787.139 401.948C787.139 393.485 784.738 386.649 779.937 381.44C775.216 376.232 768.828 373.628 760.771 373.628C751.169 373.628 743.722 376.558 738.433 382.417C733.143 388.276 730.498 396.292 730.498 406.465H700.835C700.835 395.641 703.276 385.916 708.159 377.29C713.123 368.582 720.163 361.828 729.277 357.026C738.473 352.225 749.053 349.824 761.016 349.824C778.268 349.824 791.859 354.178 801.787 362.886C811.797 371.512 816.802 383.475 816.802 398.774C816.802 407.645 814.279 416.963 809.233 426.729C804.269 436.413 796.09 447.44 784.697 459.81L741.24 506.318H823.76V530ZM854.277 441.865L863.921 352.266H959.38V377.9H888.579L883.696 420.381C891.916 415.661 901.193 413.301 911.528 413.301C928.455 413.301 941.598 418.713 950.957 429.536C960.397 440.36 965.117 454.927 965.117 473.237C965.117 491.304 959.909 505.708 949.492 516.45C939.076 527.111 924.793 532.441 906.646 532.441C890.369 532.441 876.86 527.843 866.118 518.647C855.457 509.37 849.679 497.163 848.784 482.026H877.471C878.61 490.653 881.702 497.285 886.748 501.924C891.794 506.481 898.385 508.76 906.523 508.76C915.638 508.76 922.718 505.505 927.764 498.994C932.891 492.484 935.454 483.613 935.454 472.383C935.454 461.559 932.646 453.014 927.031 446.748C921.416 440.4 913.685 437.227 903.838 437.227C898.467 437.227 893.91 437.959 890.166 439.424C886.423 440.807 882.354 443.574 877.959 447.725L854.277 441.865ZM1157.87 454.683H1086.33V530H1055.45V352.266H1168.36V377.168H1086.33V430.024H1157.87V454.683ZM1181.79 462.739C1181.79 449.8 1184.36 438.162 1189.48 427.827C1194.61 417.41 1201.81 409.435 1211.09 403.901C1220.37 398.286 1231.03 395.479 1243.07 395.479C1260.89 395.479 1275.34 401.216 1286.41 412.69C1297.56 424.165 1303.58 439.383 1304.47 458.345L1304.59 465.303C1304.59 478.324 1302.07 489.961 1297.03 500.215C1292.06 510.469 1284.9 518.403 1275.54 524.019C1266.26 529.634 1255.52 532.441 1243.32 532.441C1224.68 532.441 1209.75 526.257 1198.52 513.887C1187.37 501.436 1181.79 484.875 1181.79 464.204V462.739ZM1211.46 465.303C1211.46 478.893 1214.26 489.554 1219.88 497.285C1225.49 504.935 1233.31 508.76 1243.32 508.76C1253.33 508.76 1261.1 504.854 1266.63 497.041C1272.25 489.229 1275.05 477.795 1275.05 462.739C1275.05 449.393 1272.16 438.813 1266.39 431.001C1260.69 423.188 1252.92 419.282 1243.07 419.282C1233.39 419.282 1225.7 423.148 1220 430.879C1214.3 438.529 1211.46 450.003 1211.46 465.303ZM1398.83 425.02C1394.93 424.368 1390.9 424.043 1386.75 424.043C1373.16 424.043 1364 429.251 1359.28 439.668V530H1329.62V397.92H1357.94L1358.67 412.69C1365.83 401.216 1375.76 395.479 1388.46 395.479C1392.69 395.479 1396.19 396.048 1398.96 397.188L1398.83 425.02ZM1445.46 397.92L1446.32 411.714C1455.6 400.89 1468.29 395.479 1484.4 395.479C1502.06 395.479 1514.15 402.233 1520.66 415.742C1530.26 402.233 1543.77 395.479 1561.19 395.479C1575.75 395.479 1586.58 399.507 1593.66 407.563C1600.82 415.62 1604.48 427.502 1604.64 443.208V530H1574.98V444.062C1574.98 435.68 1573.15 429.536 1569.49 425.63C1565.83 421.724 1559.76 419.771 1551.3 419.771C1544.54 419.771 1539.01 421.602 1534.7 425.264C1530.47 428.844 1527.5 433.564 1525.79 439.424L1525.91 530H1496.25V443.086C1495.84 427.542 1487.9 419.771 1472.44 419.771C1460.56 419.771 1452.14 424.613 1447.17 434.297V530H1417.51V397.92H1445.46ZM1709.14 494.111C1709.14 488.822 1706.94 484.793 1702.54 482.026C1698.23 479.259 1691.03 476.818 1680.94 474.702C1670.85 472.586 1662.42 469.901 1655.67 466.646C1640.86 459.484 1633.45 449.108 1633.45 435.518C1633.45 424.124 1638.25 414.603 1647.86 406.953C1657.46 399.303 1669.67 395.479 1684.48 395.479C1700.27 395.479 1713 399.385 1722.69 407.197C1732.45 415.01 1737.33 425.142 1737.33 437.593H1707.67C1707.67 431.896 1705.56 427.176 1701.32 423.433C1697.09 419.608 1691.48 417.695 1684.48 417.695C1677.97 417.695 1672.64 419.201 1668.49 422.212C1664.42 425.223 1662.38 429.251 1662.38 434.297C1662.38 438.854 1664.3 442.394 1668.12 444.917C1671.94 447.44 1679.68 450.003 1691.31 452.607C1702.95 455.13 1712.07 458.182 1718.66 461.763C1725.33 465.262 1730.25 469.494 1733.43 474.458C1736.68 479.422 1738.31 485.444 1738.31 492.524C1738.31 504.406 1733.39 514.049 1723.54 521.455C1713.69 528.779 1700.79 532.441 1684.84 532.441C1674.02 532.441 1664.38 530.488 1655.91 526.582C1647.45 522.676 1640.86 517.305 1636.14 510.469C1631.42 503.633 1629.06 496.268 1629.06 488.374H1657.87C1658.27 495.373 1660.92 500.785 1665.8 504.609C1670.68 508.353 1677.15 510.225 1685.21 510.225C1693.02 510.225 1698.96 508.76 1703.03 505.83C1707.1 502.819 1709.14 498.913 1709.14 494.111Z" fill="url(#paint0_linear)"/>
+</g>
+<defs>
+<filter id="filter0_bd" x="-46" y="-50" width="2536" height="988" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dy="4"/>
+<feGaussianBlur stdDeviation="2"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
+<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
+</filter>
+<filter id="filter1_d" x="650.836" y="299.824" width="1137.48" height="282.617" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="25"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.75 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+<linearGradient id="paint0_linear" x1="307.572" y1="98.9652" x2="2335.06" y2="203.835" gradientUnits="userSpaceOnUse">
+<stop stop-color="#60B358"/>
+<stop offset="1" stop-color="#65CC76"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/Features/ClicksForms/Multichoice.svg b/public/Features/ClicksForms/Multichoice.svg
new file mode 100644
index 0000000..e870836
--- /dev/null
+++ b/public/Features/ClicksForms/Multichoice.svg
@@ -0,0 +1,44 @@
+<svg width="1196" height="1844" viewBox="0 0 1196 1844" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g filter="url(#filter0_bd)">
+<rect x="4" width="1188" height="1836" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
+</g>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M560 1258H163V1655H560V1258ZM439.437 1335.16C450.715 1323.88 469 1323.88 480.278 1335.16C491.556 1346.44 491.556 1364.73 480.278 1376L400.088 1456.19L480.278 1536.38C491.556 1547.66 491.556 1565.95 480.278 1577.23C469 1588.5 450.715 1588.5 439.437 1577.23L359.247 1497.04L279.056 1577.23C267.778 1588.5 249.493 1588.5 238.215 1577.23C226.937 1565.95 226.937 1547.66 238.215 1536.38L318.405 1456.19L238.215 1376C226.937 1364.73 226.937 1346.44 238.215 1335.16C249.493 1323.88 267.778 1323.88 279.056 1335.16L359.247 1415.35L439.437 1335.16Z" fill="#775EBF" fill-opacity="0.5"/>
+<g clip-path="url(#clip0)">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M1032.99 1258H635.988V1655H1032.99V1258ZM960.309 1393.05L792.531 1561.37C781.257 1572.65 762.977 1572.65 751.702 1561.37L708.099 1517.77C696.824 1506.5 696.824 1488.22 708.099 1476.94C719.374 1465.67 737.653 1465.67 748.928 1476.94L771.842 1499.86L919.48 1352.22C930.755 1340.94 949.034 1340.94 960.309 1352.22C971.584 1363.49 971.584 1381.77 960.309 1393.05Z" fill="#775EBF" fill-opacity="0.5"/>
+</g>
+<path d="M129.479 855.644C129.479 843.241 132.214 833.427 137.683 826.2C143.2 818.925 150.72 815.287 160.241 815.287C170.935 815.287 179.064 819.364 184.631 827.519L185.07 816.752H193.273V926.469H184.484V886.186C178.723 893.705 170.593 897.465 160.095 897.465C150.817 897.465 143.396 893.803 137.829 886.479C132.263 879.154 129.479 869.267 129.479 856.815V855.644ZM138.342 857.182C138.342 867.436 140.393 875.492 144.494 881.352C148.645 887.162 154.382 890.067 161.706 890.067C172.204 890.067 179.797 885.502 184.484 876.371V837.553C182.287 832.816 179.235 829.179 175.329 826.64C171.472 824.052 166.979 822.758 161.853 822.758C154.479 822.758 148.718 825.688 144.567 831.547C140.417 837.357 138.342 845.902 138.342 857.182ZM267.614 885.966C262.341 893.632 253.918 897.465 242.346 897.465C233.898 897.465 227.478 895.023 223.083 890.141C218.688 885.209 216.442 877.934 216.345 868.314V816.752H225.061V867.216C225.061 882.304 231.164 889.848 243.371 889.848C256.066 889.848 264.099 884.599 267.468 874.101V816.752H276.257V896H267.761L267.614 885.966ZM329.797 897.465C323.059 897.465 316.955 895.805 311.486 892.484C306.066 889.164 301.843 884.55 298.815 878.642C295.788 872.685 294.274 866.02 294.274 858.646V855.497C294.274 847.88 295.739 841.02 298.669 834.916C301.647 828.812 305.773 824.027 311.047 820.561C316.32 817.045 322.033 815.287 328.186 815.287C337.805 815.287 345.422 818.583 351.037 825.175C356.701 831.718 359.533 840.678 359.533 852.055V856.962H302.99V858.646C302.99 867.631 305.554 875.126 310.681 881.132C315.856 887.089 322.351 890.067 330.163 890.067C334.851 890.067 338.977 889.213 342.541 887.504C346.154 885.795 349.426 883.061 352.355 879.301L357.849 883.476C351.403 892.802 342.053 897.465 329.797 897.465ZM328.186 822.758C321.594 822.758 316.027 825.175 311.486 830.009C306.994 834.843 304.26 841.337 303.283 849.491H350.817V848.539C350.573 840.922 348.4 834.721 344.299 829.936C340.197 825.15 334.826 822.758 328.186 822.758ZM424.06 875.858C424.06 871.513 422.302 868.021 418.786 865.385C415.319 862.748 410.07 860.697 403.039 859.232C396.008 857.719 390.539 856.01 386.633 854.105C382.775 852.152 379.895 849.784 377.99 847.001C376.135 844.218 375.207 840.849 375.207 836.894C375.207 830.644 377.819 825.492 383.044 821.439C388.269 817.338 394.958 815.287 403.112 815.287C411.95 815.287 419.03 817.484 424.353 821.879C429.724 826.225 432.409 831.913 432.409 838.944H423.62C423.62 834.306 421.667 830.448 417.761 827.372C413.903 824.296 409.021 822.758 403.112 822.758C397.351 822.758 392.712 824.052 389.196 826.64C385.729 829.179 383.996 832.499 383.996 836.601C383.996 840.556 385.437 843.632 388.317 845.829C391.247 847.978 396.545 849.955 404.211 851.762C411.926 853.568 417.688 855.497 421.496 857.548C425.354 859.599 428.21 862.064 430.065 864.945C431.921 867.826 432.849 871.317 432.849 875.419C432.849 882.108 430.139 887.455 424.719 891.459C419.348 895.463 412.316 897.465 403.625 897.465C394.396 897.465 386.901 895.243 381.14 890.8C375.427 886.308 372.57 880.644 372.57 873.808H381.359C381.701 878.935 383.85 882.938 387.805 885.819C391.809 888.651 397.082 890.067 403.625 890.067C409.729 890.067 414.66 888.725 418.42 886.039C422.18 883.354 424.06 879.96 424.06 875.858ZM466.247 796.464V816.752H482.653V823.93H466.247V876.737C466.247 881.132 467.028 884.403 468.591 886.552C470.202 888.7 472.863 889.774 476.574 889.774C478.039 889.774 480.407 889.53 483.679 889.042L484.045 896.22C481.75 897.05 478.625 897.465 474.67 897.465C468.664 897.465 464.294 895.731 461.56 892.265C458.825 888.749 457.458 883.598 457.458 876.811V823.93H442.883V816.752H457.458V796.464H466.247ZM510.632 896H501.843V816.752H510.632V896ZM500.305 793.827C500.305 792.167 500.842 790.775 501.916 789.652C502.99 788.48 504.455 787.895 506.311 787.895C508.166 787.895 509.631 788.48 510.705 789.652C511.828 790.775 512.39 792.167 512.39 793.827C512.39 795.487 511.828 796.879 510.705 798.002C509.631 799.125 508.166 799.687 506.311 799.687C504.455 799.687 502.99 799.125 501.916 798.002C500.842 796.879 500.305 795.487 500.305 793.827ZM529.675 855.204C529.675 847.587 531.14 840.727 534.069 834.623C537.048 828.52 541.223 823.783 546.594 820.414C552.014 816.996 558.142 815.287 564.978 815.287C575.524 815.287 584.069 818.998 590.612 826.42C597.155 833.793 600.427 843.583 600.427 855.79V857.621C600.427 865.287 598.938 872.196 595.959 878.349C593.029 884.452 588.879 889.164 583.508 892.484C578.137 895.805 572.009 897.465 565.124 897.465C554.626 897.465 546.081 893.778 539.489 886.405C532.946 878.983 529.675 869.169 529.675 856.962V855.204ZM538.464 857.621C538.464 867.094 540.905 874.882 545.788 880.985C550.72 887.04 557.165 890.067 565.124 890.067C573.034 890.067 579.431 887.04 584.313 880.985C589.245 874.882 591.711 866.85 591.711 856.889V855.204C591.711 849.149 590.588 843.607 588.342 838.578C586.096 833.549 582.946 829.667 578.894 826.933C574.841 824.149 570.202 822.758 564.978 822.758C557.165 822.758 550.793 825.834 545.861 831.986C540.93 838.09 538.464 846.098 538.464 856.01V857.621ZM626.94 816.752L627.233 830.302C630.212 825.419 633.923 821.708 638.366 819.169C642.81 816.581 647.717 815.287 653.088 815.287C661.584 815.287 667.907 817.68 672.058 822.465C676.208 827.25 678.308 834.428 678.356 843.998V896H669.641V843.925C669.592 836.845 668.078 831.571 665.1 828.104C662.17 824.638 657.458 822.904 650.964 822.904C645.544 822.904 640.734 824.613 636.535 828.031C632.385 831.4 629.309 835.966 627.307 841.728V896H618.591V816.752H626.94ZM748.522 875.858C748.522 871.513 746.765 868.021 743.249 865.385C739.782 862.748 734.533 860.697 727.502 859.232C720.471 857.719 715.002 856.01 711.096 854.105C707.238 852.152 704.357 849.784 702.453 847.001C700.598 844.218 699.67 840.849 699.67 836.894C699.67 830.644 702.282 825.492 707.507 821.439C712.731 817.338 719.421 815.287 727.575 815.287C736.413 815.287 743.493 817.484 748.815 821.879C754.187 826.225 756.872 831.913 756.872 838.944H748.083C748.083 834.306 746.13 830.448 742.224 827.372C738.366 824.296 733.483 822.758 727.575 822.758C721.813 822.758 717.175 824.052 713.659 826.64C710.192 829.179 708.459 832.499 708.459 836.601C708.459 840.556 709.899 843.632 712.78 845.829C715.71 847.978 721.008 849.955 728.674 851.762C736.389 853.568 742.15 855.497 745.959 857.548C749.816 859.599 752.673 862.064 754.528 864.945C756.384 867.826 757.312 871.317 757.312 875.419C757.312 882.108 754.602 887.455 749.182 891.459C743.811 895.463 736.779 897.465 728.088 897.465C718.859 897.465 711.364 895.243 705.603 890.8C699.89 886.308 697.033 880.644 697.033 873.808H705.822C706.164 878.935 708.312 882.938 712.268 885.819C716.271 888.651 721.545 890.067 728.088 890.067C734.191 890.067 739.123 888.725 742.883 886.039C746.643 883.354 748.522 879.96 748.522 875.858ZM832.531 877.763L833.85 884.574L835.607 877.396L854.65 816.752H862.121L880.944 876.884L882.995 885.233L884.68 877.543L900.939 816.752H910.021L886.95 896H879.479L859.118 833.158L858.166 828.837L857.214 833.231L837.219 896H829.748L806.75 816.752H815.759L832.531 877.763ZM936.462 896H927.673V816.752H936.462V896ZM926.135 793.827C926.135 792.167 926.672 790.775 927.746 789.652C928.82 788.48 930.285 787.895 932.141 787.895C933.996 787.895 935.461 788.48 936.535 789.652C937.658 790.775 938.22 792.167 938.22 793.827C938.22 795.487 937.658 796.879 936.535 798.002C935.461 799.125 933.996 799.687 932.141 799.687C930.285 799.687 928.82 799.125 927.746 798.002C926.672 796.879 926.135 795.487 926.135 793.827ZM973.962 796.464V816.752H990.368V823.93H973.962V876.737C973.962 881.132 974.743 884.403 976.306 886.552C977.917 888.7 980.578 889.774 984.289 889.774C985.754 889.774 988.122 889.53 991.394 889.042L991.76 896.22C989.465 897.05 986.34 897.465 982.385 897.465C976.379 897.465 972.009 895.731 969.274 892.265C966.54 888.749 965.173 883.598 965.173 876.811V823.93H950.598V816.752H965.173V796.464H973.962ZM1017.25 830.155C1020.13 825.419 1023.82 821.757 1028.31 819.169C1032.8 816.581 1037.71 815.287 1043.03 815.287C1051.53 815.287 1057.85 817.68 1062 822.465C1066.15 827.25 1068.25 834.428 1068.3 843.998V896H1059.58V843.925C1059.53 836.845 1058.02 831.571 1055.04 828.104C1052.11 824.638 1047.4 822.904 1040.91 822.904C1035.49 822.904 1030.68 824.613 1026.48 828.031C1022.33 831.4 1019.25 835.966 1017.25 841.728V896H1008.53V783.5H1017.25V830.155ZM130.871 1061.97C125.598 1069.63 117.175 1073.46 105.603 1073.46C97.1553 1073.46 90.7344 1071.02 86.3398 1066.14C81.9453 1061.21 79.6992 1053.93 79.6016 1044.31V992.752H88.3174V1043.22C88.3174 1058.3 94.4209 1065.85 106.628 1065.85C119.323 1065.85 127.355 1060.6 130.725 1050.1V992.752H139.514V1072H131.018L130.871 1061.97ZM226.086 1033.18C226.086 1045.54 223.352 1055.35 217.883 1062.62C212.414 1069.85 205.09 1073.46 195.91 1073.46C185.07 1073.46 176.77 1069.66 171.008 1062.04V1102.47H162.292V992.752H170.422L170.861 1003.96C176.574 995.511 184.851 991.287 195.69 991.287C205.163 991.287 212.585 994.876 217.956 1002.05C223.376 1009.23 226.086 1019.19 226.086 1031.94V1033.18ZM217.297 1031.64C217.297 1021.54 215.222 1013.55 211.071 1007.69C206.921 1001.83 201.135 998.904 193.713 998.904C188.342 998.904 183.728 1000.2 179.87 1002.79C176.013 1005.37 173.059 1009.13 171.008 1014.07V1052.08C173.107 1056.62 176.11 1060.09 180.017 1062.48C183.923 1064.87 188.537 1066.07 193.859 1066.07C201.232 1066.07 206.97 1063.14 211.071 1057.28C215.222 1051.37 217.297 1042.83 217.297 1031.64ZM295.666 972.464V992.752H312.072V999.93H295.666V1052.74C295.666 1057.13 296.447 1060.4 298.01 1062.55C299.621 1064.7 302.282 1065.77 305.993 1065.77C307.458 1065.77 309.826 1065.53 313.098 1065.04L313.464 1072.22C311.169 1073.05 308.044 1073.46 304.089 1073.46C298.083 1073.46 293.713 1071.73 290.979 1068.26C288.244 1064.75 286.877 1059.6 286.877 1052.81V999.93H272.302V992.752H286.877V972.464H295.666ZM323.938 1031.2C323.938 1023.59 325.402 1016.73 328.332 1010.62C331.311 1004.52 335.485 999.783 340.856 996.414C346.276 992.996 352.404 991.287 359.24 991.287C369.787 991.287 378.332 994.998 384.875 1002.42C391.418 1009.79 394.689 1019.58 394.689 1031.79V1033.62C394.689 1041.29 393.2 1048.2 390.222 1054.35C387.292 1060.45 383.142 1065.16 377.771 1068.48C372.399 1071.8 366.271 1073.46 359.387 1073.46C348.889 1073.46 340.344 1069.78 333.752 1062.41C327.209 1054.98 323.938 1045.17 323.938 1032.96V1031.2ZM332.727 1033.62C332.727 1043.09 335.168 1050.88 340.051 1056.99C344.982 1063.04 351.428 1066.07 359.387 1066.07C367.297 1066.07 373.693 1063.04 378.576 1056.99C383.508 1050.88 385.974 1042.85 385.974 1032.89V1031.2C385.974 1025.15 384.851 1019.61 382.604 1014.58C380.358 1009.55 377.209 1005.67 373.156 1002.93C369.104 1000.15 364.465 998.758 359.24 998.758C351.428 998.758 345.056 1001.83 340.124 1007.99C335.192 1014.09 332.727 1022.1 332.727 1032.01V1033.62ZM514.733 1072H447.937V1065.26L484.484 1023.81C490.539 1016.82 494.738 1011.06 497.082 1006.52C499.426 1001.98 500.598 997.562 500.598 993.265C500.598 986.526 498.62 981.204 494.665 977.298C490.71 973.343 485.266 971.365 478.332 971.365C471.154 971.365 465.344 973.66 460.9 978.25C456.506 982.84 454.309 988.797 454.309 996.121H445.593C445.593 990.115 446.936 984.646 449.621 979.715C452.355 974.783 456.213 970.926 461.193 968.143C466.223 965.311 471.936 963.895 478.332 963.895C488.098 963.895 495.715 966.458 501.184 971.585C506.701 976.712 509.46 983.694 509.46 992.532C509.46 997.513 507.897 1002.96 504.772 1008.87C501.696 1014.77 496.252 1022.15 488.439 1030.98L458.703 1064.6H514.733V1072ZM537.072 1017.36L542.272 965.359H595.593V973.489H549.816L546.081 1009.52C551.794 1005.62 558.483 1003.67 566.149 1003.67C575.769 1003.67 583.435 1006.79 589.147 1013.04C594.86 1019.29 597.717 1027.62 597.717 1038.02C597.717 1049.25 594.934 1057.96 589.367 1064.16C583.801 1070.36 575.964 1073.46 565.856 1073.46C556.579 1073.46 549.06 1070.88 543.298 1065.7C537.536 1060.53 534.24 1053.27 533.41 1043.95H541.833C542.663 1051.22 545.129 1056.74 549.23 1060.5C553.332 1064.21 558.874 1066.07 565.856 1066.07C573.474 1066.07 579.211 1063.65 583.068 1058.82C586.975 1053.98 588.928 1047.1 588.928 1038.16C588.928 1030.35 586.755 1023.98 582.409 1019.05C578.063 1014.11 572.131 1011.65 564.611 1011.65C560.461 1011.65 556.848 1012.19 553.771 1013.26C550.695 1014.29 547.448 1016.31 544.03 1019.34L537.072 1017.36ZM647.375 1031.2C647.375 1023.59 648.84 1016.73 651.77 1010.62C654.748 1004.52 658.923 999.783 664.294 996.414C669.714 992.996 675.842 991.287 682.678 991.287C693.225 991.287 701.77 994.998 708.312 1002.42C714.855 1009.79 718.127 1019.58 718.127 1031.79V1033.62C718.127 1041.29 716.638 1048.2 713.659 1054.35C710.729 1060.45 706.579 1065.16 701.208 1068.48C695.837 1071.8 689.709 1073.46 682.824 1073.46C672.326 1073.46 663.781 1069.78 657.189 1062.41C650.646 1054.98 647.375 1045.17 647.375 1032.96V1031.2ZM656.164 1033.62C656.164 1043.09 658.605 1050.88 663.488 1056.99C668.42 1063.04 674.865 1066.07 682.824 1066.07C690.734 1066.07 697.131 1063.04 702.014 1056.99C706.945 1050.88 709.411 1042.85 709.411 1032.89V1031.2C709.411 1025.15 708.288 1019.61 706.042 1014.58C703.796 1009.55 700.646 1005.67 696.594 1002.93C692.541 1000.15 687.902 998.758 682.678 998.758C674.865 998.758 668.493 1001.83 663.562 1007.99C658.63 1014.09 656.164 1022.1 656.164 1032.01V1033.62ZM800.012 1033.18C800.012 1045.54 797.277 1055.35 791.809 1062.62C786.34 1069.85 779.016 1073.46 769.836 1073.46C758.996 1073.46 750.695 1069.66 744.934 1062.04V1102.47H736.218V992.752H744.348L744.787 1003.96C750.5 995.511 758.776 991.287 769.616 991.287C779.089 991.287 786.511 994.876 791.882 1002.05C797.302 1009.23 800.012 1019.19 800.012 1031.94V1033.18ZM791.223 1031.64C791.223 1021.54 789.147 1013.55 784.997 1007.69C780.847 1001.83 775.061 998.904 767.639 998.904C762.268 998.904 757.653 1000.2 753.796 1002.79C749.938 1005.37 746.984 1009.13 744.934 1014.07V1052.08C747.033 1056.62 750.036 1060.09 753.942 1062.48C757.849 1064.87 762.463 1066.07 767.785 1066.07C775.158 1066.07 780.896 1063.14 784.997 1057.28C789.147 1051.37 791.223 1042.83 791.223 1031.64ZM833.117 972.464V992.752H849.523V999.93H833.117V1052.74C833.117 1057.13 833.898 1060.4 835.461 1062.55C837.072 1064.7 839.733 1065.77 843.444 1065.77C844.909 1065.77 847.277 1065.53 850.549 1065.04L850.915 1072.22C848.62 1073.05 845.495 1073.46 841.54 1073.46C835.534 1073.46 831.164 1071.73 828.43 1068.26C825.695 1064.75 824.328 1059.6 824.328 1052.81V999.93H809.753V992.752H824.328V972.464H833.117ZM877.502 1072H868.713V992.752H877.502V1072ZM867.175 969.827C867.175 968.167 867.712 966.775 868.786 965.652C869.86 964.48 871.325 963.895 873.181 963.895C875.036 963.895 876.501 964.48 877.575 965.652C878.698 966.775 879.26 968.167 879.26 969.827C879.26 971.487 878.698 972.879 877.575 974.002C876.501 975.125 875.036 975.687 873.181 975.687C871.325 975.687 869.86 975.125 868.786 974.002C867.712 972.879 867.175 971.487 867.175 969.827ZM896.545 1031.2C896.545 1023.59 898.01 1016.73 900.939 1010.62C903.918 1004.52 908.093 999.783 913.464 996.414C918.884 992.996 925.012 991.287 931.848 991.287C942.395 991.287 950.939 994.998 957.482 1002.42C964.025 1009.79 967.297 1019.58 967.297 1031.79V1033.62C967.297 1041.29 965.808 1048.2 962.829 1054.35C959.899 1060.45 955.749 1065.16 950.378 1068.48C945.007 1071.8 938.879 1073.46 931.994 1073.46C921.496 1073.46 912.951 1069.78 906.359 1062.41C899.816 1054.98 896.545 1045.17 896.545 1032.96V1031.2ZM905.334 1033.62C905.334 1043.09 907.775 1050.88 912.658 1056.99C917.59 1063.04 924.035 1066.07 931.994 1066.07C939.904 1066.07 946.301 1063.04 951.184 1056.99C956.115 1050.88 958.581 1042.85 958.581 1032.89V1031.2C958.581 1025.15 957.458 1019.61 955.212 1014.58C952.966 1009.55 949.816 1005.67 945.764 1002.93C941.711 1000.15 937.072 998.758 931.848 998.758C924.035 998.758 917.663 1001.83 912.731 1007.99C907.8 1014.09 905.334 1022.1 905.334 1032.01V1033.62ZM993.811 992.752L994.104 1006.3C997.082 1001.42 1000.79 997.708 1005.24 995.169C1009.68 992.581 1014.59 991.287 1019.96 991.287C1028.45 991.287 1034.78 993.68 1038.93 998.465C1043.08 1003.25 1045.18 1010.43 1045.23 1020V1072H1036.51V1019.92C1036.46 1012.84 1034.95 1007.57 1031.97 1004.1C1029.04 1000.64 1024.33 998.904 1017.83 998.904C1012.41 998.904 1007.6 1000.61 1003.41 1004.03C999.255 1007.4 996.179 1011.97 994.177 1017.73V1072H985.461V992.752H993.811ZM1115.39 1051.86C1115.39 1047.51 1113.63 1044.02 1110.12 1041.38C1106.65 1038.75 1101.4 1036.7 1094.37 1035.23C1087.34 1033.72 1081.87 1032.01 1077.97 1030.11C1074.11 1028.15 1071.23 1025.78 1069.32 1023C1067.47 1020.22 1066.54 1016.85 1066.54 1012.89C1066.54 1006.64 1069.15 1001.49 1074.38 997.439C1079.6 993.338 1086.29 991.287 1094.45 991.287C1103.28 991.287 1110.36 993.484 1115.69 997.879C1121.06 1002.22 1123.74 1007.91 1123.74 1014.94H1114.95C1114.95 1010.31 1113 1006.45 1109.09 1003.37C1105.24 1000.3 1100.35 998.758 1094.45 998.758C1088.68 998.758 1084.04 1000.05 1080.53 1002.64C1077.06 1005.18 1075.33 1008.5 1075.33 1012.6C1075.33 1016.56 1076.77 1019.63 1079.65 1021.83C1082.58 1023.98 1087.88 1025.96 1095.54 1027.76C1103.26 1029.57 1109.02 1031.5 1112.83 1033.55C1116.69 1035.6 1119.54 1038.06 1121.4 1040.95C1123.25 1043.83 1124.18 1047.32 1124.18 1051.42C1124.18 1058.11 1121.47 1063.46 1116.05 1067.46C1110.68 1071.46 1103.65 1073.46 1094.96 1073.46C1085.73 1073.46 1078.23 1071.24 1072.47 1066.8C1066.76 1062.31 1063.9 1056.64 1063.9 1049.81H1072.69C1073.03 1054.93 1075.18 1058.94 1079.14 1061.82C1083.14 1064.65 1088.42 1066.07 1094.96 1066.07C1101.06 1066.07 1105.99 1064.72 1109.75 1062.04C1113.51 1059.35 1115.39 1055.96 1115.39 1051.86Z" fill="black"/>
+<g filter="url(#filter1_d)">
+<path d="M204.504 158.266L255.773 294.496L306.921 158.266H346.838V336H316.076V277.406L319.128 199.037L266.638 336H244.543L192.175 199.159L195.227 277.406V336H164.465V158.266H204.504ZM460.607 323.061C451.9 333.314 439.53 338.441 423.498 338.441C409.175 338.441 398.311 334.25 390.905 325.868C383.581 317.486 379.919 305.36 379.919 289.491V203.92H409.582V289.125C409.582 305.889 416.54 314.271 430.456 314.271C444.86 314.271 454.585 309.104 459.631 298.769V203.92H489.294V336H461.34L460.607 323.061ZM551.062 336H521.398V148.5H551.062V336ZM620.642 171.815V203.92H643.957V225.893H620.642V299.623C620.642 304.669 621.618 308.331 623.571 310.609C625.606 312.807 629.187 313.905 634.313 313.905C637.731 313.905 641.19 313.498 644.689 312.685V335.634C637.935 337.506 631.424 338.441 625.158 338.441C602.372 338.441 590.979 325.868 590.979 300.722V225.893H569.25V203.92H590.979V171.815H620.642ZM698.278 336H668.615V203.92H698.278V336ZM666.784 169.618C666.784 165.061 668.208 161.277 671.057 158.266C673.986 155.255 678.137 153.749 683.508 153.749C688.879 153.749 693.029 155.255 695.959 158.266C698.889 161.277 700.354 165.061 700.354 169.618C700.354 174.094 698.889 177.838 695.959 180.849C693.029 183.778 688.879 185.243 683.508 185.243C678.137 185.243 673.986 183.778 671.057 180.849C668.208 177.838 666.784 174.094 666.784 169.618ZM846.35 271.303C846.35 291.729 841.711 308.046 832.434 320.253C823.156 332.379 810.705 338.441 795.08 338.441C780.594 338.441 768.998 333.681 760.29 324.159V386.781H730.627V203.92H757.971L759.191 217.348C767.899 206.768 779.74 201.479 794.714 201.479C810.827 201.479 823.441 207.501 832.556 219.545C841.752 231.508 846.35 248.15 846.35 269.472V271.303ZM816.809 268.739C816.809 255.556 814.164 245.098 808.874 237.367C803.666 229.636 796.179 225.771 786.413 225.771C774.287 225.771 765.58 230.775 760.29 240.785V299.379C765.661 309.633 774.45 314.76 786.657 314.76C796.097 314.76 803.462 310.976 808.752 303.407C814.123 295.757 816.809 284.201 816.809 268.739ZM903.112 336H873.449V148.5H903.112V336ZM993.688 338.441C974.89 338.441 959.631 332.541 947.912 320.741C936.275 308.86 930.456 293.072 930.456 273.378V269.716C930.456 256.532 932.979 244.773 938.024 234.438C943.151 224.021 950.313 215.924 959.509 210.146C968.705 204.368 978.959 201.479 990.271 201.479C1008.26 201.479 1022.13 207.216 1031.9 218.69C1041.74 230.165 1046.67 246.4 1046.67 267.396V279.359H960.363C961.258 290.264 964.88 298.891 971.228 305.238C977.657 311.586 985.713 314.76 995.397 314.76C1008.99 314.76 1020.06 309.267 1028.6 298.28L1044.59 313.539C1039.3 321.433 1032.22 327.577 1023.35 331.972C1014.56 336.285 1004.67 338.441 993.688 338.441ZM990.148 225.282C982.01 225.282 975.419 228.131 970.373 233.827C965.409 239.524 962.235 247.458 960.852 257.631H1017.37V255.434C1016.72 245.505 1014.07 238.018 1009.44 232.973C1004.8 227.846 998.368 225.282 990.148 225.282ZM367.346 571.139C365.555 590.1 358.557 604.911 346.35 615.572C334.143 626.152 317.907 631.441 297.644 631.441C283.483 631.441 270.992 628.105 260.168 621.432C249.426 614.677 241.125 605.115 235.266 592.745C229.406 580.375 226.354 566.012 226.11 549.654V533.053C226.11 516.288 229.081 501.518 235.021 488.741C240.962 475.965 249.466 466.118 260.534 459.2C271.683 452.283 284.541 448.824 299.108 448.824C318.721 448.824 334.509 454.155 346.472 464.815C358.435 475.476 365.393 490.532 367.346 509.981H336.584C335.119 497.205 331.376 488.009 325.354 482.394C319.413 476.697 310.664 473.849 299.108 473.849C285.681 473.849 275.345 478.772 268.103 488.619C260.941 498.385 257.279 512.748 257.116 531.71V547.457C257.116 566.663 260.534 581.311 267.37 591.402C274.287 601.493 284.379 606.539 297.644 606.539C309.769 606.539 318.884 603.813 324.987 598.36C331.091 592.908 334.956 583.834 336.584 571.139H367.346ZM421.423 511.324C431.107 500.094 443.355 494.479 458.166 494.479C486.324 494.479 500.606 510.551 501.013 542.696V629H471.35V543.795C471.35 534.68 469.356 528.251 465.368 524.508C461.462 520.683 455.684 518.771 448.034 518.771C436.153 518.771 427.282 524.06 421.423 534.64V629H391.76V441.5H421.423V511.324ZM525.549 561.739C525.549 548.8 528.112 537.162 533.239 526.827C538.366 516.41 545.568 508.435 554.846 502.901C564.123 497.286 574.784 494.479 586.828 494.479C604.65 494.479 619.095 500.216 630.163 511.69C641.312 523.165 647.334 538.383 648.229 557.345L648.352 564.303C648.352 577.324 645.829 588.961 640.783 599.215C635.819 609.469 628.658 617.403 619.299 623.019C610.021 628.634 599.279 631.441 587.072 631.441C568.436 631.441 553.503 625.257 542.272 612.887C531.123 600.436 525.549 583.875 525.549 563.204V561.739ZM555.212 564.303C555.212 577.893 558.02 588.554 563.635 596.285C569.25 603.935 577.062 607.76 587.072 607.76C597.082 607.76 604.854 603.854 610.388 596.041C616.003 588.229 618.811 576.795 618.811 561.739C618.811 548.393 615.922 537.813 610.144 530.001C604.447 522.188 596.675 518.282 586.828 518.282C577.144 518.282 569.453 522.148 563.757 529.879C558.06 537.529 555.212 549.003 555.212 564.303ZM704.992 629H675.329V496.92H704.992V629ZM673.498 462.618C673.498 458.061 674.922 454.277 677.771 451.266C680.7 448.255 684.851 446.749 690.222 446.749C695.593 446.749 699.743 448.255 702.673 451.266C705.603 454.277 707.067 458.061 707.067 462.618C707.067 467.094 705.603 470.838 702.673 473.849C699.743 476.778 695.593 478.243 690.222 478.243C684.851 478.243 680.7 476.778 677.771 473.849C674.922 470.838 673.498 467.094 673.498 462.618ZM791.662 607.76C799.068 607.76 805.212 605.603 810.095 601.29C814.978 596.977 817.582 591.646 817.907 585.299H845.861C845.536 593.518 842.972 601.209 838.171 608.37C833.369 615.45 826.859 621.065 818.64 625.216C810.42 629.366 801.55 631.441 792.028 631.441C773.555 631.441 758.907 625.46 748.083 613.497C737.259 601.534 731.848 585.014 731.848 563.937V560.885C731.848 540.784 737.219 524.711 747.961 512.667C758.703 500.541 773.352 494.479 791.906 494.479C807.613 494.479 820.389 499.076 830.236 508.272C840.165 517.387 845.373 529.391 845.861 544.283H817.907C817.582 536.715 814.978 530.489 810.095 525.606C805.293 520.724 799.149 518.282 791.662 518.282C782.059 518.282 774.654 521.782 769.445 528.78C764.237 535.698 761.592 546.236 761.511 560.396V565.157C761.511 579.48 764.074 590.182 769.201 597.262C774.41 604.26 781.896 607.76 791.662 607.76ZM926.428 631.441C907.629 631.441 892.37 625.541 880.651 613.741C869.014 601.86 863.195 586.072 863.195 566.378V562.716C863.195 549.532 865.718 537.773 870.764 527.438C875.891 517.021 883.052 508.924 892.248 503.146C901.444 497.368 911.698 494.479 923.01 494.479C940.995 494.479 954.87 500.216 964.636 511.69C974.483 523.165 979.406 539.4 979.406 560.396V572.359H893.103C893.998 583.264 897.619 591.891 903.967 598.238C910.396 604.586 918.452 607.76 928.137 607.76C941.727 607.76 952.795 602.267 961.34 591.28L977.331 606.539C972.041 614.433 964.961 620.577 956.091 624.972C947.302 629.285 937.414 631.441 926.428 631.441ZM922.888 518.282C914.75 518.282 908.158 521.131 903.112 526.827C898.148 532.524 894.974 540.458 893.591 550.631H950.109V548.434C949.458 538.505 946.813 531.018 942.175 525.973C937.536 520.846 931.107 518.282 922.888 518.282Z" fill="url(#paint0_linear)"/>
+</g>
+<defs>
+<filter id="filter0_bd" x="-46" y="-50" width="1288" height="1936" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dy="4"/>
+<feGaussianBlur stdDeviation="2"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
+<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
+</filter>
+<filter id="filter1_d" x="159.465" y="143.5" width="892.202" height="492.941" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="2.5"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+<linearGradient id="paint0_linear" x1="125.5" y1="71.9147" x2="1174.23" y2="475.771" gradientUnits="userSpaceOnUse">
+<stop stop-color="#775EBF"/>
+<stop offset="1" stop-color="#6576CC"/>
+</linearGradient>
+<clipPath id="clip0">
+<rect x="635.988" y="1258" width="397" height="397" rx="198.5" fill="white"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/Features/ClicksForms/Questions.svg b/public/Features/ClicksForms/Questions.svg
new file mode 100644
index 0000000..0ada1d9
--- /dev/null
+++ b/public/Features/ClicksForms/Questions.svg
@@ -0,0 +1,38 @@
+<svg width="2139" height="896" viewBox="0 0 2139 896" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g filter="url(#filter0_bd)">
+<rect x="4" width="2131" height="888" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
+</g>
+<path d="M981.902 85.3594V158.162C981.854 165.34 980.267 171.59 977.142 176.912C974.017 182.234 969.598 186.336 963.885 189.217C958.221 192.049 951.702 193.465 944.329 193.465C933.099 193.465 924.09 190.413 917.303 184.31C910.564 178.157 907.073 169.661 906.829 158.821V85.3594H915.765V157.503C915.765 166.487 918.328 173.47 923.455 178.45C928.582 183.382 935.54 185.848 944.329 185.848C953.118 185.848 960.052 183.357 965.13 178.377C970.257 173.396 972.82 166.463 972.82 157.576V85.3594H981.902ZM1068.69 153.182C1068.69 165.535 1065.96 175.35 1060.49 182.625C1055.02 189.852 1047.7 193.465 1038.52 193.465C1027.68 193.465 1019.38 189.656 1013.62 182.039V222.469H1004.9V112.752H1013.03L1013.47 123.958C1019.18 115.511 1027.46 111.287 1038.3 111.287C1047.77 111.287 1055.19 114.876 1060.56 122.054C1065.98 129.231 1068.69 139.192 1068.69 151.937V153.182ZM1059.91 151.644C1059.91 141.536 1057.83 133.553 1053.68 127.693C1049.53 121.834 1043.74 118.904 1036.32 118.904C1030.95 118.904 1026.34 120.198 1022.48 122.786C1018.62 125.374 1015.67 129.134 1013.62 134.065V172.078C1015.72 176.619 1018.72 180.086 1022.62 182.479C1026.53 184.871 1031.15 186.067 1036.47 186.067C1043.84 186.067 1049.58 183.138 1053.68 177.278C1057.83 171.37 1059.91 162.825 1059.91 151.644ZM1138.27 92.4639V112.752H1154.68V119.93H1138.27V172.737C1138.27 177.132 1139.06 180.403 1140.62 182.552C1142.23 184.7 1144.89 185.774 1148.6 185.774C1150.07 185.774 1152.43 185.53 1155.71 185.042L1156.07 192.22C1153.78 193.05 1150.65 193.465 1146.7 193.465C1140.69 193.465 1136.32 191.731 1133.59 188.265C1130.85 184.749 1129.49 179.598 1129.49 172.811V119.93H1114.91V112.752H1129.49V92.4639H1138.27ZM1166.55 151.204C1166.55 143.587 1168.01 136.727 1170.94 130.623C1173.92 124.52 1178.09 119.783 1183.46 116.414C1188.88 112.996 1195.01 111.287 1201.85 111.287C1212.4 111.287 1220.94 114.998 1227.48 122.42C1234.03 129.793 1237.3 139.583 1237.3 151.79V153.621C1237.3 161.287 1235.81 168.196 1232.83 174.349C1229.9 180.452 1225.75 185.164 1220.38 188.484C1215.01 191.805 1208.88 193.465 1202 193.465C1191.5 193.465 1182.95 189.778 1176.36 182.405C1169.82 174.983 1166.55 165.169 1166.55 152.962V151.204ZM1175.33 153.621C1175.33 163.094 1177.78 170.882 1182.66 176.985C1187.59 183.04 1194.04 186.067 1202 186.067C1209.91 186.067 1216.3 183.04 1221.18 176.985C1226.12 170.882 1228.58 162.85 1228.58 152.889V151.204C1228.58 145.149 1227.46 139.607 1225.21 134.578C1222.97 129.549 1219.82 125.667 1215.76 122.933C1211.71 120.149 1207.07 118.758 1201.85 118.758C1194.04 118.758 1187.66 121.834 1182.73 127.986C1177.8 134.09 1175.33 142.098 1175.33 152.01V153.621Z" fill="black"/>
+<path d="M862.151 760.182C862.151 772.535 859.417 782.35 853.948 789.625C848.479 796.852 841.155 800.465 831.976 800.465C821.136 800.465 812.835 796.656 807.073 789.039V829.469H798.357V719.752H806.487L806.927 730.958C812.64 722.511 820.916 718.287 831.756 718.287C841.229 718.287 848.65 721.876 854.021 729.054C859.441 736.231 862.151 746.192 862.151 758.937V760.182ZM853.362 758.644C853.362 748.536 851.287 740.553 847.137 734.693C842.986 728.834 837.2 725.904 829.778 725.904C824.407 725.904 819.793 727.198 815.936 729.786C812.078 732.374 809.124 736.134 807.073 741.065V779.078C809.173 783.619 812.176 787.086 816.082 789.479C819.988 791.871 824.603 793.067 829.925 793.067C837.298 793.067 843.035 790.138 847.137 784.278C851.287 778.37 853.362 769.825 853.362 758.644ZM912.322 800.465C905.584 800.465 899.48 798.805 894.012 795.484C888.592 792.164 884.368 787.55 881.341 781.642C878.313 775.685 876.8 769.02 876.8 761.646V758.497C876.8 750.88 878.265 744.02 881.194 737.916C884.173 731.812 888.299 727.027 893.572 723.561C898.846 720.045 904.559 718.287 910.711 718.287C920.33 718.287 927.947 721.583 933.562 728.175C939.227 734.718 942.059 743.678 942.059 755.055V759.962H885.516V761.646C885.516 770.631 888.079 778.126 893.206 784.132C898.382 790.089 904.876 793.067 912.688 793.067C917.376 793.067 921.502 792.213 925.066 790.504C928.68 788.795 931.951 786.061 934.881 782.301L940.374 786.476C933.929 795.802 924.578 800.465 912.322 800.465ZM910.711 725.758C904.119 725.758 898.553 728.175 894.012 733.009C889.52 737.843 886.785 744.337 885.809 752.491H933.343V751.539C933.099 743.922 930.926 737.721 926.824 732.936C922.723 728.15 917.352 725.758 910.711 725.758ZM995.745 727.223C993.89 726.881 991.912 726.71 989.812 726.71C984.344 726.71 979.705 728.248 975.896 731.324C972.137 734.352 969.451 738.771 967.84 744.581V799H959.124V719.752H967.693L967.84 732.35C972.479 722.975 979.925 718.287 990.179 718.287C992.62 718.287 994.549 718.604 995.965 719.239L995.745 727.223ZM1052.43 799V726.93H1039.32V719.752H1052.43V710.157C1052.43 702.052 1054.49 695.826 1058.59 691.48C1062.74 687.135 1068.5 684.962 1075.87 684.962C1079.19 684.962 1082.29 685.377 1085.17 686.207L1084.51 693.531C1082.07 692.945 1079.41 692.652 1076.53 692.652C1071.7 692.652 1067.94 694.166 1065.25 697.193C1062.57 700.172 1061.22 704.42 1061.22 709.938V719.752H1080.12V726.93H1061.22V799H1052.43ZM1090.96 758.204C1090.96 750.587 1092.42 743.727 1095.35 737.623C1098.33 731.52 1102.51 726.783 1107.88 723.414C1113.3 719.996 1119.43 718.287 1126.26 718.287C1136.81 718.287 1145.35 721.998 1151.9 729.42C1158.44 736.793 1161.71 746.583 1161.71 758.79V760.621C1161.71 768.287 1160.22 775.196 1157.24 781.349C1154.31 787.452 1150.16 792.164 1144.79 795.484C1139.42 798.805 1133.29 800.465 1126.41 800.465C1115.91 800.465 1107.37 796.778 1100.77 789.405C1094.23 781.983 1090.96 772.169 1090.96 759.962V758.204ZM1099.75 760.621C1099.75 770.094 1102.19 777.882 1107.07 783.985C1112 790.04 1118.45 793.067 1126.41 793.067C1134.32 793.067 1140.72 790.04 1145.6 783.985C1150.53 777.882 1153 769.85 1153 759.889V758.204C1153 752.149 1151.87 746.607 1149.63 741.578C1147.38 736.549 1144.23 732.667 1140.18 729.933C1136.13 727.149 1131.49 725.758 1126.26 725.758C1118.45 725.758 1112.08 728.834 1107.15 734.986C1102.21 741.09 1099.75 749.098 1099.75 759.01V760.621ZM1216.5 727.223C1214.64 726.881 1212.66 726.71 1210.56 726.71C1205.1 726.71 1200.46 728.248 1196.65 731.324C1192.89 734.352 1190.2 738.771 1188.59 744.581V799H1179.88V719.752H1188.45L1188.59 732.35C1193.23 722.975 1200.68 718.287 1210.93 718.287C1213.37 718.287 1215.3 718.604 1216.72 719.239L1216.5 727.223ZM1238.4 719.752L1238.69 732.643C1241.62 727.857 1245.28 724.269 1249.68 721.876C1254.07 719.483 1258.95 718.287 1264.32 718.287C1276.82 718.287 1284.76 723.414 1288.13 733.668C1290.96 728.736 1294.74 724.952 1299.48 722.315C1304.22 719.63 1309.44 718.287 1315.15 718.287C1332.15 718.287 1340.81 727.564 1341.16 746.119V799H1332.37V746.778C1332.32 739.698 1330.78 734.449 1327.75 731.031C1324.77 727.613 1319.89 725.904 1313.1 725.904C1306.8 726.002 1301.48 728.053 1297.14 732.057C1292.79 736.012 1290.37 740.846 1289.89 746.559V799H1281.1V746.119C1281.05 739.332 1279.44 734.278 1276.26 730.958C1273.14 727.589 1268.3 725.904 1261.76 725.904C1256.24 725.904 1251.51 727.491 1247.55 730.665C1243.6 733.79 1240.67 738.453 1238.76 744.654V799H1229.97V719.752H1238.4Z" fill="black"/>
+<g filter="url(#filter1_d)">
+<path d="M462.688 529H343.182V508.614L402.386 444.039C410.931 434.518 416.993 426.583 420.574 420.235C424.236 413.806 426.067 407.377 426.067 400.948C426.067 392.485 423.667 385.649 418.865 380.44C414.145 375.232 407.757 372.628 399.7 372.628C390.097 372.628 382.651 375.558 377.361 381.417C372.072 387.276 369.427 395.292 369.427 405.465H339.764C339.764 394.641 342.205 384.916 347.088 376.29C352.052 367.582 359.091 360.828 368.206 356.026C377.402 351.225 387.981 348.824 399.944 348.824C417.197 348.824 430.787 353.178 440.716 361.886C450.726 370.512 455.73 382.475 455.73 397.774C455.73 406.645 453.208 415.963 448.162 425.729C443.198 435.413 435.019 446.44 423.626 458.81L380.169 505.318H462.688V529ZM493.206 440.865L502.85 351.266H598.309V376.9H527.508L522.625 419.381C530.844 414.661 540.122 412.301 550.457 412.301C567.384 412.301 580.527 417.713 589.886 428.536C599.326 439.36 604.046 453.927 604.046 472.237C604.046 490.304 598.838 504.708 588.421 515.45C578.004 526.111 563.722 531.441 545.574 531.441C529.298 531.441 515.789 526.843 505.047 517.647C494.386 508.37 488.608 496.163 487.713 481.026H516.399C517.539 489.653 520.631 496.285 525.677 500.924C530.722 505.481 537.314 507.76 545.452 507.76C554.567 507.76 561.647 504.505 566.692 497.994C571.819 491.484 574.383 482.613 574.383 471.383C574.383 460.559 571.575 452.014 565.96 445.748C560.345 439.4 552.614 436.227 542.767 436.227C537.396 436.227 532.838 436.959 529.095 438.424C525.351 439.807 521.282 442.574 516.888 446.725L493.206 440.865ZM835.613 444.771C835.613 461.617 832.928 476.225 827.557 488.595C822.267 500.883 814.821 510.649 805.218 517.892L835.735 541.695L815.716 559.762L777.874 529.854C772.91 530.912 767.579 531.441 761.883 531.441C747.56 531.441 734.743 527.942 723.431 520.943C712.2 513.863 703.493 503.813 697.308 490.792C691.204 477.771 688.112 462.757 688.03 445.748V435.738C688.03 418.404 691.082 403.105 697.186 389.84C703.37 376.575 712.037 366.443 723.187 359.444C734.417 352.364 747.234 348.824 761.639 348.824C776.287 348.824 789.186 352.324 800.335 359.322C811.565 366.24 820.232 376.249 826.336 389.352C832.439 402.372 835.532 417.55 835.613 434.884V444.771ZM804.607 435.494C804.607 415.475 800.864 400.297 793.377 389.962C785.89 379.627 775.311 374.459 761.639 374.459C748.374 374.459 737.957 379.708 730.389 390.206C722.902 400.623 719.077 415.353 718.914 434.396V444.771C718.914 463.977 722.658 478.992 730.145 489.815C737.713 500.639 748.292 506.051 761.883 506.051C775.636 506.051 786.175 500.842 793.499 490.426C800.905 480.009 804.607 464.791 804.607 444.771V435.494ZM944.134 516.061C935.426 526.314 923.056 531.441 907.024 531.441C892.701 531.441 881.837 527.25 874.432 518.868C867.107 510.486 863.445 498.36 863.445 482.491V396.92H893.108V482.125C893.108 498.889 900.066 507.271 913.982 507.271C928.387 507.271 938.112 502.104 943.157 491.769V396.92H972.82V529H944.866L944.134 516.061ZM1061.2 531.441C1042.4 531.441 1027.14 525.541 1015.42 513.741C1003.79 501.86 997.967 486.072 997.967 466.378V462.716C997.967 449.532 1000.49 437.773 1005.54 427.438C1010.66 417.021 1017.82 408.924 1027.02 403.146C1036.22 397.368 1046.47 394.479 1057.78 394.479C1075.77 394.479 1089.64 400.216 1099.41 411.69C1109.25 423.165 1114.18 439.4 1114.18 460.396V472.359H1027.87C1028.77 483.264 1032.39 491.891 1038.74 498.238C1045.17 504.586 1053.22 507.76 1062.91 507.76C1076.5 507.76 1087.57 502.267 1096.11 491.28L1112.1 506.539C1106.81 514.433 1099.73 520.577 1090.86 524.972C1082.07 529.285 1072.19 531.441 1061.2 531.441ZM1057.66 418.282C1049.52 418.282 1042.93 421.131 1037.88 426.827C1032.92 432.524 1029.75 440.458 1028.36 450.631H1084.88V448.434C1084.23 438.505 1081.58 431.018 1076.95 425.973C1072.31 420.846 1065.88 418.282 1057.66 418.282ZM1211.35 493.111C1211.35 487.822 1209.15 483.793 1204.75 481.026C1200.44 478.259 1193.24 475.818 1183.15 473.702C1173.06 471.586 1164.63 468.901 1157.88 465.646C1143.07 458.484 1135.66 448.108 1135.66 434.518C1135.66 423.124 1140.46 413.603 1150.07 405.953C1159.67 398.303 1171.88 394.479 1186.69 394.479C1202.48 394.479 1215.21 398.385 1224.9 406.197C1234.66 414.01 1239.54 424.142 1239.54 436.593H1209.88C1209.88 430.896 1207.76 426.176 1203.53 422.433C1199.3 418.608 1193.69 416.695 1186.69 416.695C1180.18 416.695 1174.85 418.201 1170.7 421.212C1166.63 424.223 1164.59 428.251 1164.59 433.297C1164.59 437.854 1166.51 441.394 1170.33 443.917C1174.15 446.44 1181.89 449.003 1193.52 451.607C1205.16 454.13 1214.28 457.182 1220.87 460.763C1227.54 464.262 1232.46 468.494 1235.64 473.458C1238.89 478.422 1240.52 484.444 1240.52 491.524C1240.52 503.406 1235.6 513.049 1225.75 520.455C1215.9 527.779 1203 531.441 1187.05 531.441C1176.23 531.441 1166.59 529.488 1158.12 525.582C1149.66 521.676 1143.07 516.305 1138.35 509.469C1133.63 502.633 1131.27 495.268 1131.27 487.374H1160.08C1160.48 494.373 1163.13 499.785 1168.01 503.609C1172.89 507.353 1179.36 509.225 1187.42 509.225C1195.23 509.225 1201.17 507.76 1205.24 504.83C1209.31 501.819 1211.35 497.913 1211.35 493.111ZM1303.63 364.815V396.92H1326.95V418.893H1303.63V492.623C1303.63 497.669 1304.61 501.331 1306.56 503.609C1308.6 505.807 1312.18 506.905 1317.3 506.905C1320.72 506.905 1324.18 506.498 1327.68 505.685V528.634C1320.92 530.506 1314.41 531.441 1308.15 531.441C1285.36 531.441 1273.97 518.868 1273.97 493.722V418.893H1252.24V396.92H1273.97V364.815H1303.63ZM1381.27 529H1351.6V396.92H1381.27V529ZM1349.77 362.618C1349.77 358.061 1351.2 354.277 1354.05 351.266C1356.98 348.255 1361.13 346.749 1366.5 346.749C1371.87 346.749 1376.02 348.255 1378.95 351.266C1381.88 354.277 1383.34 358.061 1383.34 362.618C1383.34 367.094 1381.88 370.838 1378.95 373.849C1376.02 376.778 1371.87 378.243 1366.5 378.243C1361.13 378.243 1356.98 376.778 1354.05 373.849C1351.2 370.838 1349.77 367.094 1349.77 362.618ZM1408.12 461.739C1408.12 448.8 1410.69 437.162 1415.81 426.827C1420.94 416.41 1428.14 408.435 1437.42 402.901C1446.7 397.286 1457.36 394.479 1469.4 394.479C1487.22 394.479 1501.67 400.216 1512.74 411.69C1523.89 423.165 1529.91 438.383 1530.8 457.345L1530.93 464.303C1530.93 477.324 1528.4 488.961 1523.36 499.215C1518.39 509.469 1511.23 517.403 1501.87 523.019C1492.6 528.634 1481.85 531.441 1469.65 531.441C1451.01 531.441 1436.08 525.257 1424.85 512.887C1413.7 500.436 1408.12 483.875 1408.12 463.204V461.739ZM1437.79 464.303C1437.79 477.893 1440.59 488.554 1446.21 496.285C1451.82 503.935 1459.64 507.76 1469.65 507.76C1479.66 507.76 1487.43 503.854 1492.96 496.041C1498.58 488.229 1501.38 476.795 1501.38 461.739C1501.38 448.393 1498.5 437.813 1492.72 430.001C1487.02 422.188 1479.25 418.282 1469.4 418.282C1459.72 418.282 1452.03 422.148 1446.33 429.879C1440.63 437.529 1437.79 449.003 1437.79 464.303ZM1583.54 396.92L1584.39 412.179C1594.16 400.379 1606.98 394.479 1622.84 394.479C1650.35 394.479 1664.35 410.226 1664.84 441.72V529H1635.17V443.429C1635.17 435.047 1633.34 428.862 1629.68 424.874C1626.1 420.805 1620.2 418.771 1611.98 418.771C1600.02 418.771 1591.11 424.182 1585.25 435.006V529H1555.58V396.92H1583.54ZM1769.21 493.111C1769.21 487.822 1767.01 483.793 1762.62 481.026C1758.3 478.259 1751.1 475.818 1741.01 473.702C1730.92 471.586 1722.49 468.901 1715.74 465.646C1700.93 458.484 1693.52 448.108 1693.52 434.518C1693.52 423.124 1698.32 413.603 1707.93 405.953C1717.53 398.303 1729.74 394.479 1744.55 394.479C1760.34 394.479 1773.07 398.385 1782.76 406.197C1792.52 414.01 1797.41 424.142 1797.41 436.593H1767.74C1767.74 430.896 1765.63 426.176 1761.39 422.433C1757.16 418.608 1751.55 416.695 1744.55 416.695C1738.04 416.695 1732.71 418.201 1728.56 421.212C1724.49 424.223 1722.45 428.251 1722.45 433.297C1722.45 437.854 1724.37 441.394 1728.19 443.917C1732.02 446.44 1739.75 449.003 1751.38 451.607C1763.02 454.13 1772.14 457.182 1778.73 460.763C1785.4 464.262 1790.33 468.494 1793.5 473.458C1796.75 478.422 1798.38 484.444 1798.38 491.524C1798.38 503.406 1793.46 513.049 1783.61 520.455C1773.76 527.779 1760.87 531.441 1744.92 531.441C1734.09 531.441 1724.45 529.488 1715.98 525.582C1707.52 521.676 1700.93 516.305 1696.21 509.469C1691.49 502.633 1689.13 495.268 1689.13 487.374H1717.94C1718.34 494.373 1720.99 499.785 1725.87 503.609C1730.75 507.353 1737.22 509.225 1745.28 509.225C1753.09 509.225 1759.03 507.76 1763.1 504.83C1767.17 501.819 1769.21 497.913 1769.21 493.111Z" fill="url(#paint0_linear)"/>
+</g>
+<defs>
+<filter id="filter0_bd" x="-46" y="-50" width="2231" height="988" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dy="4"/>
+<feGaussianBlur stdDeviation="2"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
+<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
+</filter>
+<filter id="filter1_d" x="329.764" y="336.749" width="1478.62" height="233.013" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="5"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+<linearGradient id="paint0_linear" x1="270" y1="97.9652" x2="2047.65" y2="178.533" gradientUnits="userSpaceOnUse">
+<stop stop-color="#BDD96B"/>
+<stop offset="1" stop-color="#A1CC65"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/Features/ClicksForms/Responses.svg b/public/Features/ClicksForms/Responses.svg
new file mode 100644
index 0000000..b9c68db
--- /dev/null
+++ b/public/Features/ClicksForms/Responses.svg
@@ -0,0 +1,115 @@
+<svg width="3396" height="896" viewBox="0 0 3396 896" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g filter="url(#filter0_bd)">
+<rect x="4" width="3388" height="888" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
+</g>
+<path d="M894.545 775.117H846.132L835.146 805H825.697L866.054 698.359H874.623L914.979 805H905.604L894.545 775.117ZM848.915 767.427H891.688L870.302 709.346L848.915 767.427ZM938.49 805H929.701V692.5H938.49V805ZM972.182 805H963.393V692.5H972.182V805ZM1057.66 792.402L1080.8 725.752H1090.25L1056.41 818.477L1054.65 822.578C1050.31 832.197 1043.59 837.007 1034.51 837.007C1032.41 837.007 1030.17 836.665 1027.77 835.981L1027.7 828.73L1032.24 829.17C1036.54 829.17 1040 828.096 1042.64 825.947C1045.33 823.848 1047.6 820.21 1049.45 815.034L1053.33 804.341L1023.45 725.752H1033.05L1057.66 792.402ZM1097.87 764.204C1097.87 756.587 1099.33 749.727 1102.26 743.623C1105.24 737.52 1109.41 732.783 1114.78 729.414C1120.2 725.996 1126.33 724.287 1133.17 724.287C1143.71 724.287 1152.26 727.998 1158.8 735.42C1165.35 742.793 1168.62 752.583 1168.62 764.79V766.621C1168.62 774.287 1167.13 781.196 1164.15 787.349C1161.22 793.452 1157.07 798.164 1151.7 801.484C1146.33 804.805 1140.2 806.465 1133.31 806.465C1122.82 806.465 1114.27 802.778 1107.68 795.405C1101.14 787.983 1097.87 778.169 1097.87 765.962V764.204ZM1106.65 766.621C1106.65 776.094 1109.1 783.882 1113.98 789.985C1118.91 796.04 1125.36 799.067 1133.31 799.067C1141.22 799.067 1147.62 796.04 1152.5 789.985C1157.44 783.882 1159.9 775.85 1159.9 765.889V764.204C1159.9 758.149 1158.78 752.607 1156.53 747.578C1154.29 742.549 1151.14 738.667 1147.08 735.933C1143.03 733.149 1138.39 731.758 1133.17 731.758C1125.36 731.758 1118.98 734.834 1114.05 740.986C1109.12 747.09 1106.65 755.098 1106.65 765.01V766.621ZM1237.76 794.966C1232.48 802.632 1224.06 806.465 1212.49 806.465C1204.04 806.465 1197.62 804.023 1193.23 799.141C1188.83 794.209 1186.59 786.934 1186.49 777.314V725.752H1195.2V776.216C1195.2 791.304 1201.31 798.848 1213.51 798.848C1226.21 798.848 1234.24 793.599 1237.61 783.101V725.752H1246.4V805H1237.9L1237.76 794.966ZM1305.87 733.223C1304.02 732.881 1302.04 732.71 1299.94 732.71C1294.47 732.71 1289.83 734.248 1286.02 737.324C1282.26 740.352 1279.58 744.771 1277.97 750.581V805H1269.25V725.752H1277.82L1277.97 738.35C1282.61 728.975 1290.05 724.287 1300.31 724.287C1302.75 724.287 1304.68 724.604 1306.09 725.239L1305.87 733.223ZM1392.88 733.223C1391.03 732.881 1389.05 732.71 1386.95 732.71C1381.48 732.71 1376.84 734.248 1373.04 737.324C1369.28 740.352 1366.59 744.771 1364.98 750.581V805H1356.26V725.752H1364.83L1364.98 738.35C1369.62 728.975 1377.06 724.287 1387.32 724.287C1389.76 724.287 1391.69 724.604 1393.1 725.239L1392.88 733.223ZM1436.02 806.465C1429.29 806.465 1423.18 804.805 1417.71 801.484C1412.29 798.164 1408.07 793.55 1405.04 787.642C1402.02 781.685 1400.5 775.02 1400.5 767.646V764.497C1400.5 756.88 1401.97 750.02 1404.9 743.916C1407.88 737.812 1412 733.027 1417.27 729.561C1422.55 726.045 1428.26 724.287 1434.41 724.287C1444.03 724.287 1451.65 727.583 1457.26 734.175C1462.93 740.718 1465.76 749.678 1465.76 761.055V765.962H1409.22V767.646C1409.22 776.631 1411.78 784.126 1416.91 790.132C1422.08 796.089 1428.58 799.067 1436.39 799.067C1441.08 799.067 1445.2 798.213 1448.77 796.504C1452.38 794.795 1455.65 792.061 1458.58 788.301L1464.08 792.476C1457.63 801.802 1448.28 806.465 1436.02 806.465ZM1434.41 731.758C1427.82 731.758 1422.25 734.175 1417.71 739.009C1413.22 743.843 1410.49 750.337 1409.51 758.491H1457.04V757.539C1456.8 749.922 1454.63 743.721 1450.53 738.936C1446.42 734.15 1441.05 731.758 1434.41 731.758ZM1530.29 784.858C1530.29 780.513 1528.53 777.021 1525.01 774.385C1521.55 771.748 1516.3 769.697 1509.27 768.232C1502.24 766.719 1496.77 765.01 1492.86 763.105C1489 761.152 1486.12 758.784 1484.22 756.001C1482.36 753.218 1481.43 749.849 1481.43 745.894C1481.43 739.644 1484.05 734.492 1489.27 730.439C1494.5 726.338 1501.19 724.287 1509.34 724.287C1518.18 724.287 1525.26 726.484 1530.58 730.879C1535.95 735.225 1538.64 740.913 1538.64 747.944H1529.85C1529.85 743.306 1527.89 739.448 1523.99 736.372C1520.13 733.296 1515.25 731.758 1509.34 731.758C1503.58 731.758 1498.94 733.052 1495.42 735.64C1491.96 738.179 1490.22 741.499 1490.22 745.601C1490.22 749.556 1491.66 752.632 1494.54 754.829C1497.47 756.978 1502.77 758.955 1510.44 760.762C1518.15 762.568 1523.92 764.497 1527.72 766.548C1531.58 768.599 1534.44 771.064 1536.29 773.945C1538.15 776.826 1539.08 780.317 1539.08 784.419C1539.08 791.108 1536.37 796.455 1530.95 800.459C1525.58 804.463 1518.54 806.465 1509.85 806.465C1500.62 806.465 1493.13 804.243 1487.37 799.8C1481.65 795.308 1478.8 789.644 1478.8 782.808H1487.59C1487.93 787.935 1490.08 791.938 1494.03 794.819C1498.04 797.651 1503.31 799.067 1509.85 799.067C1515.96 799.067 1520.89 797.725 1524.65 795.039C1528.41 792.354 1530.29 788.96 1530.29 784.858ZM1622.57 766.182C1622.57 778.535 1619.84 788.35 1614.37 795.625C1608.9 802.852 1601.58 806.465 1592.4 806.465C1581.56 806.465 1573.26 802.656 1567.49 795.039V835.469H1558.78V725.752H1566.91L1567.35 736.958C1573.06 728.511 1581.34 724.287 1592.18 724.287C1601.65 724.287 1609.07 727.876 1614.44 735.054C1619.86 742.231 1622.57 752.192 1622.57 764.937V766.182ZM1613.78 764.644C1613.78 754.536 1611.71 746.553 1607.56 740.693C1603.41 734.834 1597.62 731.904 1590.2 731.904C1584.83 731.904 1580.21 733.198 1576.36 735.786C1572.5 738.374 1569.54 742.134 1567.49 747.065V785.078C1569.59 789.619 1572.6 793.086 1576.5 795.479C1580.41 797.871 1585.02 799.067 1590.35 799.067C1597.72 799.067 1603.46 796.138 1607.56 790.278C1611.71 784.37 1613.78 775.825 1613.78 764.644ZM1637.22 764.204C1637.22 756.587 1638.69 749.727 1641.62 743.623C1644.59 737.52 1648.77 732.783 1654.14 729.414C1659.56 725.996 1665.69 724.287 1672.52 724.287C1683.07 724.287 1691.62 727.998 1698.16 735.42C1704.7 742.793 1707.97 752.583 1707.97 764.79V766.621C1707.97 774.287 1706.48 781.196 1703.5 787.349C1700.58 793.452 1696.42 798.164 1691.05 801.484C1685.68 804.805 1679.55 806.465 1672.67 806.465C1662.17 806.465 1653.63 802.778 1647.04 795.405C1640.49 787.983 1637.22 778.169 1637.22 765.962V764.204ZM1646.01 766.621C1646.01 776.094 1648.45 783.882 1653.33 789.985C1658.27 796.04 1664.71 799.067 1672.67 799.067C1680.58 799.067 1686.98 796.04 1691.86 789.985C1696.79 783.882 1699.26 775.85 1699.26 765.889V764.204C1699.26 758.149 1698.13 752.607 1695.89 747.578C1693.64 742.549 1690.49 738.667 1686.44 735.933C1682.39 733.149 1677.75 731.758 1672.52 731.758C1664.71 731.758 1658.34 734.834 1653.41 740.986C1648.48 747.09 1646.01 755.098 1646.01 765.01V766.621ZM1734.49 725.752L1734.78 739.302C1737.76 734.419 1741.47 730.708 1745.91 728.169C1750.36 725.581 1755.26 724.287 1760.63 724.287C1769.13 724.287 1775.45 726.68 1779.6 731.465C1783.75 736.25 1785.85 743.428 1785.9 752.998V805H1777.19V752.925C1777.14 745.845 1775.62 740.571 1772.65 737.104C1769.72 733.638 1765 731.904 1758.51 731.904C1753.09 731.904 1748.28 733.613 1744.08 737.031C1739.93 740.4 1736.85 744.966 1734.85 750.728V805H1726.14V725.752H1734.49ZM1856.07 784.858C1856.07 780.513 1854.31 777.021 1850.79 774.385C1847.33 771.748 1842.08 769.697 1835.05 768.232C1828.02 766.719 1822.55 765.01 1818.64 763.105C1814.78 761.152 1811.9 758.784 1810 756.001C1808.14 753.218 1807.22 749.849 1807.22 745.894C1807.22 739.644 1809.83 734.492 1815.05 730.439C1820.28 726.338 1826.97 724.287 1835.12 724.287C1843.96 724.287 1851.04 726.484 1856.36 730.879C1861.73 735.225 1864.42 740.913 1864.42 747.944H1855.63C1855.63 743.306 1853.68 739.448 1849.77 736.372C1845.91 733.296 1841.03 731.758 1835.12 731.758C1829.36 731.758 1824.72 733.052 1821.21 735.64C1817.74 738.179 1816 741.499 1816 745.601C1816 749.556 1817.45 752.632 1820.33 754.829C1823.26 756.978 1828.55 758.955 1836.22 760.762C1843.93 762.568 1849.7 764.497 1853.5 766.548C1857.36 768.599 1860.22 771.064 1862.07 773.945C1863.93 776.826 1864.86 780.317 1864.86 784.419C1864.86 791.108 1862.15 796.455 1856.73 800.459C1851.36 804.463 1844.33 806.465 1835.63 806.465C1826.41 806.465 1818.91 804.243 1813.15 799.8C1807.44 795.308 1804.58 789.644 1804.58 782.808H1813.37C1813.71 787.935 1815.86 791.938 1819.81 794.819C1823.82 797.651 1829.09 799.067 1835.63 799.067C1841.74 799.067 1846.67 797.725 1850.43 795.039C1854.19 792.354 1856.07 788.96 1856.07 784.858ZM1915.32 806.465C1908.58 806.465 1902.48 804.805 1897.01 801.484C1891.59 798.164 1887.37 793.55 1884.34 787.642C1881.31 781.685 1879.8 775.02 1879.8 767.646V764.497C1879.8 756.88 1881.26 750.02 1884.19 743.916C1887.17 737.812 1891.3 733.027 1896.57 729.561C1901.84 726.045 1907.56 724.287 1913.71 724.287C1923.33 724.287 1930.95 727.583 1936.56 734.175C1942.23 740.718 1945.06 749.678 1945.06 761.055V765.962H1888.51V767.646C1888.51 776.631 1891.08 784.126 1896.21 790.132C1901.38 796.089 1907.88 799.067 1915.69 799.067C1920.38 799.067 1924.5 798.213 1928.07 796.504C1931.68 794.795 1934.95 792.061 1937.88 788.301L1943.37 792.476C1936.93 801.802 1927.58 806.465 1915.32 806.465ZM1913.71 731.758C1907.12 731.758 1901.55 734.175 1897.01 739.009C1892.52 743.843 1889.78 750.337 1888.81 758.491H1936.34V757.539C1936.1 749.922 1933.92 743.721 1929.82 738.936C1925.72 734.15 1920.35 731.758 1913.71 731.758ZM2009.58 784.858C2009.58 780.513 2007.83 777.021 2004.31 774.385C2000.84 771.748 1995.59 769.697 1988.56 768.232C1981.53 766.719 1976.06 765.01 1972.16 763.105C1968.3 761.152 1965.42 758.784 1963.51 756.001C1961.66 753.218 1960.73 749.849 1960.73 745.894C1960.73 739.644 1963.34 734.492 1968.57 730.439C1973.79 726.338 1980.48 724.287 1988.64 724.287C1997.47 724.287 2004.55 726.484 2009.88 730.879C2015.25 735.225 2017.93 740.913 2017.93 747.944H2009.14C2009.14 743.306 2007.19 739.448 2003.29 736.372C1999.43 733.296 1994.54 731.758 1988.64 731.758C1982.88 731.758 1978.24 733.052 1974.72 735.64C1971.25 738.179 1969.52 741.499 1969.52 745.601C1969.52 749.556 1970.96 752.632 1973.84 754.829C1976.77 756.978 1982.07 758.955 1989.74 760.762C1997.45 762.568 2003.21 764.497 2007.02 766.548C2010.88 768.599 2013.73 771.064 2015.59 773.945C2017.45 776.826 2018.37 780.317 2018.37 784.419C2018.37 791.108 2015.66 796.455 2010.24 800.459C2004.87 804.463 1997.84 806.465 1989.15 806.465C1979.92 806.465 1972.43 804.243 1966.66 799.8C1960.95 795.308 1958.09 789.644 1958.09 782.808H1966.88C1967.23 787.935 1969.37 791.938 1973.33 794.819C1977.33 797.651 1982.61 799.067 1989.15 799.067C1995.25 799.067 2000.18 797.725 2003.94 795.039C2007.7 792.354 2009.58 788.96 2009.58 784.858ZM2084.44 805H2075.65V725.752H2084.44V805ZM2074.11 702.827C2074.11 701.167 2074.65 699.775 2075.72 698.652C2076.8 697.48 2078.26 696.895 2080.12 696.895C2081.97 696.895 2083.44 697.48 2084.51 698.652C2085.63 699.775 2086.2 701.167 2086.2 702.827C2086.2 704.487 2085.63 705.879 2084.51 707.002C2083.44 708.125 2081.97 708.687 2080.12 708.687C2078.26 708.687 2076.8 708.125 2075.72 707.002C2074.65 705.879 2074.11 704.487 2074.11 702.827ZM2116.66 725.752L2116.96 739.302C2119.94 734.419 2123.65 730.708 2128.09 728.169C2132.53 725.581 2137.44 724.287 2142.81 724.287C2151.31 724.287 2157.63 726.68 2161.78 731.465C2165.93 736.25 2168.03 743.428 2168.08 752.998V805H2159.36V752.925C2159.32 745.845 2157.8 740.571 2154.82 737.104C2151.89 733.638 2147.18 731.904 2140.69 731.904C2135.27 731.904 2130.46 733.613 2126.26 737.031C2122.11 740.4 2119.03 744.966 2117.03 750.728V805H2108.31V725.752H2116.66ZM2222.43 764.204C2222.43 756.587 2223.89 749.727 2226.82 743.623C2229.8 737.52 2233.97 732.783 2239.34 729.414C2244.76 725.996 2250.89 724.287 2257.73 724.287C2268.28 724.287 2276.82 727.998 2283.36 735.42C2289.91 742.793 2293.18 752.583 2293.18 764.79V766.621C2293.18 774.287 2291.69 781.196 2288.71 787.349C2285.78 793.452 2281.63 798.164 2276.26 801.484C2270.89 804.805 2264.76 806.465 2257.88 806.465C2247.38 806.465 2238.83 802.778 2232.24 795.405C2225.7 787.983 2222.43 778.169 2222.43 765.962V764.204ZM2231.21 766.621C2231.21 776.094 2233.66 783.882 2238.54 789.985C2243.47 796.04 2249.92 799.067 2257.88 799.067C2265.79 799.067 2272.18 796.04 2277.06 789.985C2282 783.882 2284.46 775.85 2284.46 765.889V764.204C2284.46 758.149 2283.34 752.607 2281.09 747.578C2278.85 742.549 2275.7 738.667 2271.64 735.933C2267.59 733.149 2262.95 731.758 2257.73 731.758C2249.92 731.758 2243.54 734.834 2238.61 740.986C2233.68 747.09 2231.21 755.098 2231.21 765.01V766.621ZM2319.69 725.752L2319.98 739.302C2322.96 734.419 2326.67 730.708 2331.12 728.169C2335.56 725.581 2340.47 724.287 2345.84 724.287C2354.33 724.287 2360.66 726.68 2364.81 731.465C2368.96 736.25 2371.06 743.428 2371.11 752.998V805H2362.39V752.925C2362.34 745.845 2360.83 740.571 2357.85 737.104C2354.92 733.638 2350.21 731.904 2343.71 731.904C2338.29 731.904 2333.49 733.613 2329.29 737.031C2325.14 740.4 2322.06 744.966 2320.06 750.728V805H2311.34V725.752H2319.69ZM2424.5 806.465C2417.76 806.465 2411.66 804.805 2406.19 801.484C2400.77 798.164 2396.55 793.55 2393.52 787.642C2390.49 781.685 2388.98 775.02 2388.98 767.646V764.497C2388.98 756.88 2390.44 750.02 2393.37 743.916C2396.35 737.812 2400.48 733.027 2405.75 729.561C2411.02 726.045 2416.74 724.287 2422.89 724.287C2432.51 724.287 2440.13 727.583 2445.74 734.175C2451.41 740.718 2454.24 749.678 2454.24 761.055V765.962H2397.69V767.646C2397.69 776.631 2400.26 784.126 2405.38 790.132C2410.56 796.089 2417.05 799.067 2424.87 799.067C2429.55 799.067 2433.68 798.213 2437.25 796.504C2440.86 794.795 2444.13 792.061 2447.06 788.301L2452.55 792.476C2446.11 801.802 2436.76 806.465 2424.5 806.465ZM2422.89 731.758C2416.3 731.758 2410.73 734.175 2406.19 739.009C2401.7 743.843 2398.96 750.337 2397.99 758.491H2445.52V757.539C2445.28 749.922 2443.1 743.721 2439 738.936C2434.9 734.15 2429.53 731.758 2422.89 731.758ZM2571.5 766.182C2571.5 778.535 2568.76 788.35 2563.29 795.625C2557.83 802.852 2550.5 806.465 2541.32 806.465C2530.48 806.465 2522.18 802.656 2516.42 795.039V835.469H2507.7V725.752H2515.83L2516.27 736.958C2521.99 728.511 2530.26 724.287 2541.1 724.287C2550.58 724.287 2558 727.876 2563.37 735.054C2568.79 742.231 2571.5 752.192 2571.5 764.937V766.182ZM2562.71 764.644C2562.71 754.536 2560.63 746.553 2556.48 740.693C2552.33 734.834 2546.55 731.904 2539.12 731.904C2533.75 731.904 2529.14 733.198 2525.28 735.786C2521.42 738.374 2518.47 742.134 2516.42 747.065V785.078C2518.52 789.619 2521.52 793.086 2525.43 795.479C2529.33 797.871 2533.95 799.067 2539.27 799.067C2546.64 799.067 2552.38 796.138 2556.48 790.278C2560.63 784.37 2562.71 775.825 2562.71 764.644ZM2600.79 805H2592.01V692.5H2600.79V805ZM2674.7 805C2673.82 802.51 2673.26 798.823 2673.01 793.94C2669.94 797.944 2666 801.045 2661.22 803.242C2656.48 805.391 2651.45 806.465 2646.13 806.465C2638.51 806.465 2632.34 804.341 2627.6 800.093C2622.91 795.845 2620.57 790.474 2620.57 783.979C2620.57 776.265 2623.77 770.161 2630.17 765.669C2636.61 761.177 2645.57 758.931 2657.04 758.931H2672.94V749.922C2672.94 744.258 2671.18 739.814 2667.67 736.592C2664.2 733.32 2659.12 731.685 2652.43 731.685C2646.33 731.685 2641.27 733.247 2637.27 736.372C2633.27 739.497 2631.26 743.257 2631.26 747.651L2622.47 747.578C2622.47 741.279 2625.4 735.835 2631.26 731.245C2637.12 726.606 2644.33 724.287 2652.87 724.287C2661.71 724.287 2668.67 726.509 2673.74 730.952C2678.87 735.347 2681.51 741.499 2681.65 749.409V786.909C2681.65 794.575 2682.46 800.312 2684.07 804.121V805H2674.7ZM2647.16 798.701C2653.02 798.701 2658.24 797.285 2662.83 794.453C2667.47 791.621 2670.84 787.837 2672.94 783.101V765.669H2657.26C2648.52 765.767 2641.69 767.378 2636.76 770.503C2631.83 773.579 2629.36 777.827 2629.36 783.247C2629.36 787.69 2631 791.377 2634.27 794.307C2637.59 797.236 2641.88 798.701 2647.16 798.701ZM2734.39 799.067C2740.49 799.067 2745.59 797.358 2749.7 793.94C2753.85 790.474 2756.09 786.006 2756.43 780.537H2764.86C2764.61 785.371 2763.1 789.79 2760.32 793.794C2757.53 797.749 2753.82 800.85 2749.18 803.096C2744.59 805.342 2739.66 806.465 2734.39 806.465C2723.99 806.465 2715.74 802.852 2709.63 795.625C2703.58 788.398 2700.55 778.682 2700.55 766.475V763.838C2700.55 756.025 2701.92 749.116 2704.65 743.11C2707.39 737.104 2711.29 732.466 2716.37 729.194C2721.5 725.923 2727.48 724.287 2734.32 724.287C2743.01 724.287 2750.16 726.875 2755.78 732.051C2761.44 737.227 2764.47 744.038 2764.86 752.485H2756.43C2756.04 746.284 2753.8 741.279 2749.7 737.471C2745.64 733.662 2740.52 731.758 2734.32 731.758C2726.41 731.758 2720.25 734.614 2715.86 740.327C2711.51 746.04 2709.34 754.048 2709.34 764.351V766.914C2709.34 777.021 2711.51 784.907 2715.86 790.571C2720.25 796.235 2726.43 799.067 2734.39 799.067ZM2813.12 806.465C2806.39 806.465 2800.28 804.805 2794.81 801.484C2789.39 798.164 2785.17 793.55 2782.14 787.642C2779.12 781.685 2777.6 775.02 2777.6 767.646V764.497C2777.6 756.88 2779.07 750.02 2782 743.916C2784.97 737.812 2789.1 733.027 2794.37 729.561C2799.65 726.045 2805.36 724.287 2811.51 724.287C2821.13 724.287 2828.75 727.583 2834.36 734.175C2840.03 740.718 2842.86 749.678 2842.86 761.055V765.962H2786.32V767.646C2786.32 776.631 2788.88 784.126 2794.01 790.132C2799.18 796.089 2805.68 799.067 2813.49 799.067C2818.18 799.067 2822.3 798.213 2825.87 796.504C2829.48 794.795 2832.75 792.061 2835.68 788.301L2841.18 792.476C2834.73 801.802 2825.38 806.465 2813.12 806.465ZM2811.51 731.758C2804.92 731.758 2799.35 734.175 2794.81 739.009C2790.32 743.843 2787.59 750.337 2786.61 758.491H2834.14V757.539C2833.9 749.922 2831.73 743.721 2827.63 738.936C2823.52 734.15 2818.15 731.758 2811.51 731.758Z" fill="black"/>
+<g filter="url(#filter1_d)">
+<rect width="727.025" height="311.788" rx="60" transform="matrix(0.97237 0.233445 0 1 2245.06 93)" stroke="url(#paint0_linear)" stroke-width="50" shape-rendering="crispEdges"/>
+</g>
+<g filter="url(#filter2_d)">
+<rect width="727.025" height="311.788" rx="60" transform="matrix(0.97237 0.233445 0 1 1794.8 93)" stroke="url(#paint1_linear)" stroke-width="50" shape-rendering="crispEdges"/>
+</g>
+<g filter="url(#filter3_d)">
+<rect width="727.025" height="311.788" rx="60" transform="matrix(0.97237 0.233445 0 1 1344.53 93)" stroke="url(#paint2_linear)" stroke-width="50" shape-rendering="crispEdges"/>
+</g>
+<g filter="url(#filter4_d)">
+<rect width="727.025" height="311.788" rx="60" transform="matrix(0.97237 0.233445 0 1 894.266 93)" fill="url(#paint3_linear)"/>
+<rect width="727.025" height="311.788" rx="60" transform="matrix(0.97237 0.233445 0 1 894.266 93)" stroke="url(#paint4_linear)" stroke-width="50"/>
+</g>
+<g filter="url(#filter5_d)">
+<rect width="727.025" height="311.788" rx="60" transform="matrix(0.97237 0.233445 0 1 444 93)" stroke="url(#paint5_linear)" stroke-width="50" shape-rendering="crispEdges"/>
+</g>
+<defs>
+<filter id="filter0_bd" x="-46" y="-50" width="3488" height="988" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dy="4"/>
+<feGaussianBlur stdDeviation="2"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
+<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
+</filter>
+<filter id="filter1_d" x="2161.75" y="20.7021" width="873.556" height="626.105" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feMorphology radius="9" operator="dilate" in="SourceAlpha" result="effect1_dropShadow"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="25"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.5 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+<filter id="filter2_d" x="1711.49" y="20.7021" width="873.556" height="626.105" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feMorphology radius="9" operator="dilate" in="SourceAlpha" result="effect1_dropShadow"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="25"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.5 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+<filter id="filter3_d" x="1261.22" y="20.7021" width="873.556" height="626.105" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feMorphology radius="9" operator="dilate" in="SourceAlpha" result="effect1_dropShadow"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="25"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.5 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+<filter id="filter4_d" x="810.957" y="20.7021" width="873.556" height="626.105" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feMorphology radius="9" operator="dilate" in="SourceAlpha" result="effect1_dropShadow"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="25"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.5 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+<filter id="filter5_d" x="360.691" y="20.7021" width="873.556" height="626.105" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feMorphology radius="9" operator="dilate" in="SourceAlpha" result="effect1_dropShadow"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="25"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.5 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+<linearGradient id="paint0_linear" x1="3.0037e-05" y1="-7.7497" x2="667.482" y2="407.834" gradientUnits="userSpaceOnUse">
+<stop stop-color="#D46899"/>
+<stop offset="1" stop-color="#BF5E9F"/>
+</linearGradient>
+<linearGradient id="paint1_linear" x1="3.0037e-05" y1="-7.7497" x2="667.482" y2="407.834" gradientUnits="userSpaceOnUse">
+<stop stop-color="#D46899"/>
+<stop offset="1" stop-color="#BF5E9F"/>
+</linearGradient>
+<linearGradient id="paint2_linear" x1="3.0037e-05" y1="-7.7497" x2="667.482" y2="407.834" gradientUnits="userSpaceOnUse">
+<stop stop-color="#D46899"/>
+<stop offset="1" stop-color="#BF5E9F"/>
+</linearGradient>
+<linearGradient id="paint3_linear" x1="0" y1="0" x2="567.74" y2="502.51" gradientUnits="userSpaceOnUse">
+<stop stop-color="#D46899"/>
+<stop offset="1" stop-color="#BF5E9F"/>
+</linearGradient>
+<linearGradient id="paint4_linear" x1="3.0037e-05" y1="-7.7497" x2="667.482" y2="407.834" gradientUnits="userSpaceOnUse">
+<stop stop-color="#D46899"/>
+<stop offset="1" stop-color="#BF5E9F"/>
+</linearGradient>
+<linearGradient id="paint5_linear" x1="3.0037e-05" y1="-7.7497" x2="667.482" y2="407.834" gradientUnits="userSpaceOnUse">
+<stop stop-color="#D46899"/>
+<stop offset="1" stop-color="#BF5E9F"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/Features/ClicksForms/Roles.svg b/public/Features/ClicksForms/Roles.svg
new file mode 100644
index 0000000..55c28d1
--- /dev/null
+++ b/public/Features/ClicksForms/Roles.svg
@@ -0,0 +1,57 @@
+<svg width="1196" height="896" viewBox="0 0 1196 896" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g filter="url(#filter0_bd)">
+<rect x="4" width="1188" height="888" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
+</g>
+<g clip-path="url(#clip0)">
+<g filter="url(#filter1_d)">
+<path d="M371.007 444.101V444.11L371.007 444.143C371.006 444.194 371.005 444.284 371.004 444.411C371 444.667 370.993 445.073 370.979 445.621C370.949 446.717 370.888 448.376 370.764 450.517C370.514 454.803 370.012 460.997 369 468.456C366.968 483.447 362.926 503.193 354.972 522.746C347.009 542.322 335.374 561.095 318.498 574.924C301.853 588.563 279.379 598.009 248.348 598.009C217.316 598.009 194.843 588.563 178.198 574.924C161.321 561.095 149.686 542.322 141.723 522.746C133.769 503.193 129.728 483.447 127.695 468.456C126.683 460.997 126.181 454.803 125.932 450.517C125.807 448.376 125.747 446.717 125.717 445.621C125.702 445.073 125.695 444.667 125.692 444.411C125.69 444.284 125.689 444.194 125.689 444.143L125.689 444.11L125.689 444.101L125.689 444.098V319.056H248.348H371.007V444.096V444.101Z" stroke="#F2D478" stroke-width="27.3771" shape-rendering="crispEdges"/>
+</g>
+</g>
+<path d="M123.222 740.763L124.54 747.574L126.298 740.396L145.341 679.752H152.812L171.635 739.884L173.686 748.233L175.37 740.543L191.63 679.752H200.712L177.641 759H170.17L149.809 696.158L148.856 691.837L147.904 696.231L127.909 759H120.438L97.4404 679.752H106.449L123.222 740.763ZM226.054 693.155C228.935 688.419 232.621 684.757 237.113 682.169C241.605 679.581 246.513 678.287 251.835 678.287C260.331 678.287 266.654 680.68 270.805 685.465C274.955 690.25 277.055 697.428 277.104 706.998V759H268.388V706.925C268.339 699.845 266.825 694.571 263.847 691.104C260.917 687.638 256.205 685.904 249.711 685.904C244.291 685.904 239.481 687.613 235.282 691.031C231.132 694.4 228.056 698.966 226.054 704.728V759H217.338V646.5H226.054V693.155ZM330.351 760.465C323.612 760.465 317.509 758.805 312.04 755.484C306.62 752.164 302.396 747.55 299.369 741.642C296.342 735.685 294.828 729.02 294.828 721.646V718.497C294.828 710.88 296.293 704.02 299.223 697.916C302.201 691.812 306.327 687.027 311.601 683.561C316.874 680.045 322.587 678.287 328.739 678.287C338.358 678.287 345.976 681.583 351.591 688.175C357.255 694.718 360.087 703.678 360.087 715.055V719.962H303.544V721.646C303.544 730.631 306.107 738.126 311.234 744.132C316.41 750.089 322.904 753.067 330.717 753.067C335.404 753.067 339.53 752.213 343.095 750.504C346.708 748.795 349.979 746.061 352.909 742.301L358.402 746.476C351.957 755.802 342.606 760.465 330.351 760.465ZM328.739 685.758C322.147 685.758 316.581 688.175 312.04 693.009C307.548 697.843 304.813 704.337 303.837 712.491H351.371V711.539C351.127 703.922 348.954 697.721 344.853 692.936C340.751 688.15 335.38 685.758 328.739 685.758ZM385.502 679.752L385.795 693.302C388.773 688.419 392.484 684.708 396.928 682.169C401.371 679.581 406.278 678.287 411.649 678.287C420.146 678.287 426.469 680.68 430.619 685.465C434.77 690.25 436.869 697.428 436.918 706.998V759H428.202V706.925C428.153 699.845 426.64 694.571 423.661 691.104C420.731 687.638 416.02 685.904 409.525 685.904C404.105 685.904 399.296 687.613 395.097 691.031C390.946 694.4 387.87 698.966 385.868 704.728V759H377.152V679.752H385.502ZM525.395 753.067C531.498 753.067 536.601 751.358 540.702 747.94C544.853 744.474 547.099 740.006 547.44 734.537H555.863C555.619 739.371 554.105 743.79 551.322 747.794C548.539 751.749 544.828 754.85 540.189 757.096C535.6 759.342 530.668 760.465 525.395 760.465C514.994 760.465 506.742 756.852 500.639 749.625C494.584 742.398 491.557 732.682 491.557 720.475V717.838C491.557 710.025 492.924 703.116 495.658 697.11C498.393 691.104 502.299 686.466 507.377 683.194C512.504 679.923 518.485 678.287 525.321 678.287C534.013 678.287 541.166 680.875 546.781 686.051C552.445 691.227 555.473 698.038 555.863 706.485H547.44C547.05 700.284 544.804 695.279 540.702 691.471C536.649 687.662 531.522 685.758 525.321 685.758C517.411 685.758 511.259 688.614 506.864 694.327C502.519 700.04 500.346 708.048 500.346 718.351V720.914C500.346 731.021 502.519 738.907 506.864 744.571C511.259 750.235 517.436 753.067 525.395 753.067ZM568.607 718.204C568.607 710.587 570.072 703.727 573.002 697.623C575.98 691.52 580.155 686.783 585.526 683.414C590.946 679.996 597.074 678.287 603.91 678.287C614.457 678.287 623.002 681.998 629.545 689.42C636.088 696.793 639.359 706.583 639.359 718.79V720.621C639.359 728.287 637.87 735.196 634.892 741.349C631.962 747.452 627.812 752.164 622.44 755.484C617.069 758.805 610.941 760.465 604.057 760.465C593.559 760.465 585.014 756.778 578.422 749.405C571.879 741.983 568.607 732.169 568.607 719.962V718.204ZM577.396 720.621C577.396 730.094 579.838 737.882 584.721 743.985C589.652 750.04 596.098 753.067 604.057 753.067C611.967 753.067 618.363 750.04 623.246 743.985C628.178 737.882 630.644 729.85 630.644 719.889V718.204C630.644 712.149 629.521 706.607 627.274 701.578C625.028 696.549 621.879 692.667 617.826 689.933C613.773 687.149 609.135 685.758 603.91 685.758C596.098 685.758 589.726 688.834 584.794 694.986C579.862 701.09 577.396 709.098 577.396 719.01V720.621ZM665.507 679.752L665.8 692.643C668.729 687.857 672.392 684.269 676.786 681.876C681.181 679.483 686.063 678.287 691.435 678.287C703.935 678.287 711.869 683.414 715.238 693.668C718.07 688.736 721.854 684.952 726.591 682.315C731.327 679.63 736.552 678.287 742.265 678.287C759.257 678.287 767.924 687.564 768.266 706.119V759H759.477V706.778C759.428 699.698 757.89 694.449 754.862 691.031C751.884 687.613 747.001 685.904 740.214 685.904C733.915 686.002 728.593 688.053 724.247 692.057C719.901 696.012 717.484 700.846 716.996 706.559V759H708.207V706.119C708.158 699.332 706.547 694.278 703.373 690.958C700.248 687.589 695.414 685.904 688.871 685.904C683.354 685.904 678.617 687.491 674.662 690.665C670.707 693.79 667.777 698.453 665.873 704.654V759H657.084V679.752H665.507ZM854.252 720.182C854.252 732.535 851.518 742.35 846.049 749.625C840.58 756.852 833.256 760.465 824.076 760.465C813.236 760.465 804.936 756.656 799.174 749.039V789.469H790.458V679.752H798.588L799.027 690.958C804.74 682.511 813.017 678.287 823.856 678.287C833.329 678.287 840.751 681.876 846.122 689.054C851.542 696.231 854.252 706.192 854.252 718.937V720.182ZM845.463 718.644C845.463 708.536 843.388 700.553 839.237 694.693C835.087 688.834 829.301 685.904 821.879 685.904C816.508 685.904 811.894 687.198 808.036 689.786C804.179 692.374 801.225 696.134 799.174 701.065V739.078C801.273 743.619 804.276 747.086 808.183 749.479C812.089 751.871 816.703 753.067 822.025 753.067C829.398 753.067 835.136 750.138 839.237 744.278C843.388 738.37 845.463 729.825 845.463 718.644ZM883.549 759H874.76V646.5H883.549V759ZM938.114 760.465C931.376 760.465 925.272 758.805 919.804 755.484C914.384 752.164 910.16 747.55 907.133 741.642C904.105 735.685 902.592 729.02 902.592 721.646V718.497C902.592 710.88 904.057 704.02 906.986 697.916C909.965 691.812 914.091 687.027 919.364 683.561C924.638 680.045 930.351 678.287 936.503 678.287C946.122 678.287 953.739 681.583 959.354 688.175C965.019 694.718 967.851 703.678 967.851 715.055V719.962H911.308V721.646C911.308 730.631 913.871 738.126 918.998 744.132C924.174 750.089 930.668 753.067 938.48 753.067C943.168 753.067 947.294 752.213 950.858 750.504C954.472 748.795 957.743 746.061 960.673 742.301L966.166 746.476C959.721 755.802 950.37 760.465 938.114 760.465ZM936.503 685.758C929.911 685.758 924.345 688.175 919.804 693.009C915.312 697.843 912.577 704.337 911.601 712.491H959.135V711.539C958.891 703.922 956.718 697.721 952.616 692.936C948.515 688.15 943.144 685.758 936.503 685.758ZM998.539 659.464V679.752H1014.95V686.93H998.539V739.737C998.539 744.132 999.32 747.403 1000.88 749.552C1002.49 751.7 1005.16 752.774 1008.87 752.774C1010.33 752.774 1012.7 752.53 1015.97 752.042L1016.34 759.22C1014.04 760.05 1010.92 760.465 1006.96 760.465C1000.96 760.465 996.586 758.731 993.852 755.265C991.117 751.749 989.75 746.598 989.75 739.811V686.93H975.175V679.752H989.75V659.464H998.539ZM1063.8 760.465C1057.06 760.465 1050.96 758.805 1045.49 755.484C1040.07 752.164 1035.84 747.55 1032.82 741.642C1029.79 735.685 1028.28 729.02 1028.28 721.646V718.497C1028.28 710.88 1029.74 704.02 1032.67 697.916C1035.65 691.812 1039.77 687.027 1045.05 683.561C1050.32 680.045 1056.03 678.287 1062.19 678.287C1071.81 678.287 1079.42 681.583 1085.04 688.175C1090.7 694.718 1093.53 703.678 1093.53 715.055V719.962H1036.99V721.646C1036.99 730.631 1039.55 738.126 1044.68 744.132C1049.86 750.089 1056.35 753.067 1064.16 753.067C1068.85 753.067 1072.98 752.213 1076.54 750.504C1080.16 748.795 1083.43 746.061 1086.36 742.301L1091.85 746.476C1085.4 755.802 1076.05 760.465 1063.8 760.465ZM1062.19 685.758C1055.59 685.758 1050.03 688.175 1045.49 693.009C1041 697.843 1038.26 704.337 1037.28 712.491H1084.82V711.539C1084.57 703.922 1082.4 697.721 1078.3 692.936C1074.2 688.15 1068.83 685.758 1062.19 685.758Z" fill="black"/>
+<path d="M194.633 220.329C191.508 224.772 186.601 228.239 179.911 230.729C173.271 233.22 165.824 234.465 157.572 234.465C149.223 234.465 141.801 232.463 135.307 228.459C128.812 224.455 123.783 218.791 120.219 211.467C116.654 204.143 114.848 195.744 114.799 186.271V172.795C114.799 158 118.534 146.33 126.005 137.785C133.476 129.191 143.51 124.895 156.107 124.895C167.094 124.895 175.932 127.702 182.621 133.317C189.311 138.884 193.29 146.574 194.56 156.389H185.551C184.232 148.576 181.034 142.668 175.956 138.664C170.927 134.611 164.335 132.585 156.181 132.585C146.22 132.585 138.334 136.125 132.523 143.205C126.713 150.285 123.808 160.271 123.808 173.161V185.759C123.808 193.864 125.175 201.042 127.909 207.292C130.692 213.493 134.647 218.303 139.774 221.721C144.95 225.139 150.883 226.848 157.572 226.848C165.336 226.848 172.001 225.627 177.567 223.186C181.181 221.574 183.866 219.694 185.624 217.546V190.007H156.986V182.39H194.633V220.329ZM227.958 233H219.169V153.752H227.958V233ZM217.631 130.827C217.631 129.167 218.168 127.775 219.242 126.652C220.316 125.48 221.781 124.895 223.637 124.895C225.492 124.895 226.957 125.48 228.031 126.652C229.154 127.775 229.716 129.167 229.716 130.827C229.716 132.487 229.154 133.879 228.031 135.002C226.957 136.125 225.492 136.687 223.637 136.687C221.781 136.687 220.316 136.125 219.242 135.002C218.168 133.879 217.631 132.487 217.631 130.827ZM276.518 220.915L300.614 153.752H309.623L280.033 233H272.929L243.192 153.752H252.201L276.518 220.915ZM353.715 234.465C346.977 234.465 340.873 232.805 335.404 229.484C329.984 226.164 325.761 221.55 322.733 215.642C319.706 209.685 318.192 203.02 318.192 195.646V192.497C318.192 184.88 319.657 178.02 322.587 171.916C325.565 165.812 329.691 161.027 334.965 157.561C340.238 154.045 345.951 152.287 352.104 152.287C361.723 152.287 369.34 155.583 374.955 162.175C380.619 168.718 383.451 177.678 383.451 189.055V193.962H326.908V195.646C326.908 204.631 329.472 212.126 334.599 218.132C339.774 224.089 346.269 227.067 354.081 227.067C358.769 227.067 362.895 226.213 366.459 224.504C370.072 222.795 373.344 220.061 376.273 216.301L381.767 220.476C375.321 229.802 365.971 234.465 353.715 234.465ZM352.104 159.758C345.512 159.758 339.945 162.175 335.404 167.009C330.912 171.843 328.178 178.337 327.201 186.491H374.735V185.539C374.491 177.922 372.318 171.721 368.217 166.936C364.115 162.15 358.744 159.758 352.104 159.758ZM432.157 192.204C432.157 184.587 433.622 177.727 436.552 171.623C439.53 165.52 443.705 160.783 449.076 157.414C454.496 153.996 460.624 152.287 467.46 152.287C478.007 152.287 486.552 155.998 493.095 163.42C499.638 170.793 502.909 180.583 502.909 192.79V194.621C502.909 202.287 501.42 209.196 498.441 215.349C495.512 221.452 491.361 226.164 485.99 229.484C480.619 232.805 474.491 234.465 467.606 234.465C457.108 234.465 448.563 230.778 441.972 223.405C435.429 215.983 432.157 206.169 432.157 193.962V192.204ZM440.946 194.621C440.946 204.094 443.388 211.882 448.271 217.985C453.202 224.04 459.647 227.067 467.606 227.067C475.517 227.067 481.913 224.04 486.796 217.985C491.728 211.882 494.193 203.85 494.193 193.889V192.204C494.193 186.149 493.07 180.607 490.824 175.578C488.578 170.549 485.429 166.667 481.376 163.933C477.323 161.149 472.685 159.758 467.46 159.758C459.647 159.758 453.275 162.834 448.344 168.986C443.412 175.09 440.946 183.098 440.946 193.01V194.621ZM557.694 161.223C555.839 160.881 553.861 160.71 551.762 160.71C546.293 160.71 541.654 162.248 537.846 165.324C534.086 168.352 531.4 172.771 529.789 178.581V233H521.073V153.752H529.643L529.789 166.35C534.428 156.975 541.874 152.287 552.128 152.287C554.569 152.287 556.498 152.604 557.914 153.239L557.694 161.223ZM644.706 161.223C642.851 160.881 640.873 160.71 638.773 160.71C633.305 160.71 628.666 162.248 624.857 165.324C621.098 168.352 618.412 172.771 616.801 178.581V233H608.085V153.752H616.654L616.801 166.35C621.439 156.975 628.886 152.287 639.14 152.287C641.581 152.287 643.51 152.604 644.926 153.239L644.706 161.223ZM687.846 234.465C681.107 234.465 675.004 232.805 669.535 229.484C664.115 226.164 659.892 221.55 656.864 215.642C653.837 209.685 652.323 203.02 652.323 195.646V192.497C652.323 184.88 653.788 178.02 656.718 171.916C659.696 165.812 663.822 161.027 669.096 157.561C674.369 154.045 680.082 152.287 686.234 152.287C695.854 152.287 703.471 155.583 709.086 162.175C714.75 168.718 717.582 177.678 717.582 189.055V193.962H661.039V195.646C661.039 204.631 663.603 212.126 668.729 218.132C673.905 224.089 680.399 227.067 688.212 227.067C692.899 227.067 697.025 226.213 700.59 224.504C704.203 222.795 707.475 220.061 710.404 216.301L715.897 220.476C709.452 229.802 700.102 234.465 687.846 234.465ZM686.234 159.758C679.643 159.758 674.076 162.175 669.535 167.009C665.043 171.843 662.309 178.337 661.332 186.491H708.866V185.539C708.622 177.922 706.449 171.721 702.348 166.936C698.246 162.15 692.875 159.758 686.234 159.758ZM742.631 153.752L742.924 166.643C745.854 161.857 749.516 158.269 753.91 155.876C758.305 153.483 763.188 152.287 768.559 152.287C781.059 152.287 788.993 157.414 792.362 167.668C795.194 162.736 798.979 158.952 803.715 156.315C808.451 153.63 813.676 152.287 819.389 152.287C836.381 152.287 845.048 161.564 845.39 180.119V233H836.601V180.778C836.552 173.698 835.014 168.449 831.986 165.031C829.008 161.613 824.125 159.904 817.338 159.904C811.039 160.002 805.717 162.053 801.371 166.057C797.025 170.012 794.608 174.846 794.12 180.559V233H785.331V180.119C785.282 173.332 783.671 168.278 780.497 164.958C777.372 161.589 772.538 159.904 765.995 159.904C760.478 159.904 755.741 161.491 751.786 164.665C747.831 167.79 744.901 172.453 742.997 178.654V233H734.208V153.752H742.631ZM862.821 192.204C862.821 184.587 864.286 177.727 867.216 171.623C870.194 165.52 874.369 160.783 879.74 157.414C885.16 153.996 891.288 152.287 898.124 152.287C908.671 152.287 917.216 155.998 923.759 163.42C930.302 170.793 933.573 180.583 933.573 192.79V194.621C933.573 202.287 932.084 209.196 929.105 215.349C926.176 221.452 922.025 226.164 916.654 229.484C911.283 232.805 905.155 234.465 898.271 234.465C887.772 234.465 879.228 230.778 872.636 223.405C866.093 215.983 862.821 206.169 862.821 193.962V192.204ZM871.61 194.621C871.61 204.094 874.052 211.882 878.935 217.985C883.866 224.04 890.312 227.067 898.271 227.067C906.181 227.067 912.577 224.04 917.46 217.985C922.392 211.882 924.857 203.85 924.857 193.889V192.204C924.857 186.149 923.734 180.607 921.488 175.578C919.242 170.549 916.093 166.667 912.04 163.933C907.987 161.149 903.349 159.758 898.124 159.758C890.312 159.758 883.939 162.834 879.008 168.986C874.076 175.09 871.61 183.098 871.61 193.01V194.621ZM975.248 220.915L999.345 153.752H1008.35L978.764 233H971.659L941.923 153.752H950.932L975.248 220.915ZM1052.45 234.465C1045.71 234.465 1039.6 232.805 1034.13 229.484C1028.71 226.164 1024.49 221.55 1021.46 215.642C1018.44 209.685 1016.92 203.02 1016.92 195.646V192.497C1016.92 184.88 1018.39 178.02 1021.32 171.916C1024.3 165.812 1028.42 161.027 1033.7 157.561C1038.97 154.045 1044.68 152.287 1050.83 152.287C1060.45 152.287 1068.07 155.583 1073.69 162.175C1079.35 168.718 1082.18 177.678 1082.18 189.055V193.962H1025.64V195.646C1025.64 204.631 1028.2 212.126 1033.33 218.132C1038.5 224.089 1045 227.067 1052.81 227.067C1057.5 227.067 1061.62 226.213 1065.19 224.504C1068.8 222.795 1072.07 220.061 1075 216.301L1080.5 220.476C1074.05 229.802 1064.7 234.465 1052.45 234.465ZM1050.83 159.758C1044.24 159.758 1038.68 162.175 1034.13 167.009C1029.64 171.843 1026.91 178.337 1025.93 186.491H1073.47V185.539C1073.22 177.922 1071.05 171.721 1066.95 166.936C1062.85 162.15 1057.47 159.758 1050.83 159.758Z" fill="black"/>
+<g filter="url(#filter2_d)">
+<path d="M572.642 461.519H538.218V530H507.334V352.266H569.834C590.342 352.266 606.17 356.864 617.319 366.06C628.468 375.256 634.043 388.561 634.043 405.977C634.043 417.858 631.154 427.827 625.376 435.884C619.679 443.859 611.704 450.003 601.45 454.316L641.367 528.413V530H608.286L572.642 461.519ZM538.218 436.738H569.956C580.373 436.738 588.511 434.134 594.37 428.926C600.229 423.636 603.159 416.434 603.159 407.319C603.159 397.798 600.433 390.433 594.98 385.225C589.609 380.016 581.553 377.331 570.811 377.168H538.218V436.738ZM654.917 462.739C654.917 449.8 657.48 438.162 662.607 427.827C667.734 417.41 674.937 409.435 684.214 403.901C693.491 398.286 704.152 395.479 716.196 395.479C734.019 395.479 748.464 401.216 759.531 412.69C770.68 424.165 776.702 439.383 777.598 458.345L777.72 465.303C777.72 478.324 775.197 489.961 770.151 500.215C765.187 510.469 758.026 518.403 748.667 524.019C739.39 529.634 728.647 532.441 716.44 532.441C697.804 532.441 682.871 526.257 671.641 513.887C660.492 501.436 654.917 484.875 654.917 464.204V462.739ZM684.58 465.303C684.58 478.893 687.388 489.554 693.003 497.285C698.618 504.935 706.431 508.76 716.44 508.76C726.45 508.76 734.222 504.854 739.756 497.041C745.371 489.229 748.179 477.795 748.179 462.739C748.179 449.393 745.29 438.813 739.512 431.001C733.815 423.188 726.043 419.282 716.196 419.282C706.512 419.282 698.822 423.148 693.125 430.879C687.428 438.529 684.58 450.003 684.58 465.303ZM834.36 530H804.697V342.5H834.36V530ZM924.937 532.441C906.138 532.441 890.879 526.541 879.16 514.741C867.523 502.86 861.704 487.072 861.704 467.378V463.716C861.704 450.532 864.227 438.773 869.272 428.438C874.399 418.021 881.561 409.924 890.757 404.146C899.953 398.368 910.207 395.479 921.519 395.479C939.504 395.479 953.379 401.216 963.145 412.69C972.992 424.165 977.915 440.4 977.915 461.396V473.359H891.611C892.507 484.264 896.128 492.891 902.476 499.238C908.905 505.586 916.961 508.76 926.646 508.76C940.236 508.76 951.304 503.267 959.849 492.28L975.84 507.539C970.55 515.433 963.47 521.577 954.6 525.972C945.811 530.285 935.923 532.441 924.937 532.441ZM921.396 419.282C913.258 419.282 906.667 422.131 901.621 427.827C896.657 433.524 893.483 441.458 892.1 451.631H948.618V449.434C947.967 439.505 945.322 432.018 940.684 426.973C936.045 421.846 929.616 419.282 921.396 419.282ZM1075.08 494.111C1075.08 488.822 1072.89 484.793 1068.49 482.026C1064.18 479.259 1056.98 476.818 1046.88 474.702C1036.79 472.586 1028.37 469.901 1021.62 466.646C1006.81 459.484 999.399 449.108 999.399 435.518C999.399 424.124 1004.2 414.603 1013.8 406.953C1023.41 399.303 1035.61 395.479 1050.42 395.479C1066.21 395.479 1078.95 399.385 1088.63 407.197C1098.4 415.01 1103.28 425.142 1103.28 437.593H1073.62C1073.62 431.896 1071.5 427.176 1067.27 423.433C1063.04 419.608 1057.42 417.695 1050.42 417.695C1043.91 417.695 1038.58 419.201 1034.43 422.212C1030.36 425.223 1028.33 429.251 1028.33 434.297C1028.33 438.854 1030.24 442.394 1034.07 444.917C1037.89 447.44 1045.62 450.003 1057.26 452.607C1068.9 455.13 1078.01 458.182 1084.6 461.763C1091.28 465.262 1096.2 469.494 1099.38 474.458C1102.63 479.422 1104.26 485.444 1104.26 492.524C1104.26 504.406 1099.33 514.049 1089.49 521.455C1079.64 528.779 1066.74 532.441 1050.79 532.441C1039.97 532.441 1030.32 530.488 1021.86 526.582C1013.4 522.676 1006.81 517.305 1002.08 510.469C997.365 503.633 995.005 496.268 995.005 488.374H1023.81C1024.22 495.373 1026.87 500.785 1031.75 504.609C1036.63 508.353 1043.1 510.225 1051.16 510.225C1058.97 510.225 1064.91 508.76 1068.98 505.83C1073.05 502.819 1075.08 498.913 1075.08 494.111Z" fill="url(#paint0_linear)"/>
+</g>
+<defs>
+<filter id="filter0_bd" x="-46" y="-50" width="1288" height="988" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dy="4"/>
+<feGaussianBlur stdDeviation="2"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
+<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
+</filter>
+<filter id="filter1_d" x="44" y="237.367" width="408.695" height="442.33" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feMorphology radius="25" operator="dilate" in="SourceAlpha" result="effect1_dropShadow"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="21.5"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+<filter id="filter2_d" x="482.334" y="317.5" width="646.924" height="239.941" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="12.5"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+<linearGradient id="paint0_linear" x1="197" y1="352" x2="1115" y2="537" gradientUnits="userSpaceOnUse">
+<stop stop-color="#F2D478"/>
+<stop offset="1" stop-color="#EDC575"/>
+</linearGradient>
+<clipPath id="clip0">
+<rect width="390" height="390" fill="white" transform="translate(53 249)"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/Features/ClicksForms/Types.svg b/public/Features/ClicksForms/Types.svg
new file mode 100644
index 0000000..a2eca14
--- /dev/null
+++ b/public/Features/ClicksForms/Types.svg
@@ -0,0 +1,48 @@
+<svg width="1196" height="896" viewBox="0 0 1196 896" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g filter="url(#filter0_bd)">
+<rect x="4" width="1188" height="888" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
+</g>
+<path d="M179.618 181.329C176.493 185.772 171.586 189.239 164.896 191.729C158.256 194.22 150.81 195.465 142.558 195.465C134.208 195.465 126.786 193.463 120.292 189.459C113.798 185.455 108.769 179.791 105.204 172.467C101.64 165.143 99.833 156.744 99.7842 147.271V133.795C99.7842 119 103.52 107.33 110.99 98.7852C118.461 90.1914 128.495 85.8945 141.093 85.8945C152.079 85.8945 160.917 88.7021 167.606 94.3174C174.296 99.8838 178.275 107.574 179.545 117.389H170.536C169.218 109.576 166.02 103.668 160.941 99.6641C155.912 95.6113 149.32 93.585 141.166 93.585C131.205 93.585 123.319 97.125 117.509 104.205C111.698 111.285 108.793 121.271 108.793 134.161V146.759C108.793 154.864 110.16 162.042 112.895 168.292C115.678 174.493 119.633 179.303 124.76 182.721C129.936 186.139 135.868 187.848 142.558 187.848C150.321 187.848 156.986 186.627 162.553 184.186C166.166 182.574 168.852 180.694 170.609 178.546V151.007H141.972V143.39H179.618V181.329ZM233.817 195.465C227.079 195.465 220.976 193.805 215.507 190.484C210.087 187.164 205.863 182.55 202.836 176.642C199.809 170.685 198.295 164.02 198.295 156.646V153.497C198.295 145.88 199.76 139.02 202.689 132.916C205.668 126.812 209.794 122.027 215.067 118.561C220.341 115.045 226.054 113.287 232.206 113.287C241.825 113.287 249.442 116.583 255.058 123.175C260.722 129.718 263.554 138.678 263.554 150.055V154.962H207.011V156.646C207.011 165.631 209.574 173.126 214.701 179.132C219.877 185.089 226.371 188.067 234.184 188.067C238.871 188.067 242.997 187.213 246.562 185.504C250.175 183.795 253.446 181.061 256.376 177.301L261.869 181.476C255.424 190.802 246.073 195.465 233.817 195.465ZM232.206 120.758C225.614 120.758 220.048 123.175 215.507 128.009C211.015 132.843 208.28 139.337 207.304 147.491H254.838V146.539C254.594 138.922 252.421 132.721 248.319 127.936C244.218 123.15 238.847 120.758 232.206 120.758ZM294.242 94.4639V114.752H310.648V121.93H294.242V174.737C294.242 179.132 295.023 182.403 296.586 184.552C298.197 186.7 300.858 187.774 304.569 187.774C306.034 187.774 308.402 187.53 311.674 187.042L312.04 194.22C309.745 195.05 306.62 195.465 302.665 195.465C296.659 195.465 292.289 193.731 289.555 190.265C286.82 186.749 285.453 181.598 285.453 174.811V121.93H270.878V114.752H285.453V94.4639H294.242ZM415.312 194C414.433 191.51 413.871 187.823 413.627 182.94C410.551 186.944 406.62 190.045 401.835 192.242C397.099 194.391 392.069 195.465 386.747 195.465C379.13 195.465 372.953 193.341 368.217 189.093C363.529 184.845 361.186 179.474 361.186 172.979C361.186 165.265 364.384 159.161 370.78 154.669C377.226 150.177 386.186 147.931 397.66 147.931H413.554V138.922C413.554 133.258 411.796 128.814 408.28 125.592C404.813 122.32 399.735 120.685 393.046 120.685C386.942 120.685 381.889 122.247 377.885 125.372C373.881 128.497 371.879 132.257 371.879 136.651L363.09 136.578C363.09 130.279 366.02 124.835 371.879 120.245C377.738 115.606 384.94 113.287 393.485 113.287C402.323 113.287 409.281 115.509 414.359 119.952C419.486 124.347 422.123 130.499 422.27 138.409V175.909C422.27 183.575 423.075 189.312 424.687 193.121V194H415.312ZM387.772 187.701C393.632 187.701 398.856 186.285 403.446 183.453C408.085 180.621 411.454 176.837 413.554 172.101V154.669H397.88C389.14 154.767 382.304 156.378 377.372 159.503C372.44 162.579 369.975 166.827 369.975 172.247C369.975 176.69 371.61 180.377 374.882 183.307C378.202 186.236 382.499 187.701 387.772 187.701ZM454.057 114.752L454.35 128.302C457.328 123.419 461.039 119.708 465.482 117.169C469.926 114.581 474.833 113.287 480.204 113.287C488.7 113.287 495.023 115.68 499.174 120.465C503.324 125.25 505.424 132.428 505.473 141.998V194H496.757V141.925C496.708 134.845 495.194 129.571 492.216 126.104C489.286 122.638 484.574 120.904 478.08 120.904C472.66 120.904 467.851 122.613 463.651 126.031C459.501 129.4 456.425 133.966 454.423 139.728V194H445.707V114.752H454.057ZM575.639 173.858C575.639 169.513 573.881 166.021 570.365 163.385C566.898 160.748 561.649 158.697 554.618 157.232C547.587 155.719 542.118 154.01 538.212 152.105C534.354 150.152 531.474 147.784 529.569 145.001C527.714 142.218 526.786 138.849 526.786 134.894C526.786 128.644 529.398 123.492 534.623 119.439C539.848 115.338 546.537 113.287 554.691 113.287C563.529 113.287 570.609 115.484 575.932 119.879C581.303 124.225 583.988 129.913 583.988 136.944H575.199C575.199 132.306 573.246 128.448 569.34 125.372C565.482 122.296 560.6 120.758 554.691 120.758C548.93 120.758 544.291 122.052 540.775 124.64C537.309 127.179 535.575 130.499 535.575 134.601C535.575 138.556 537.016 141.632 539.896 143.829C542.826 145.978 548.124 147.955 555.79 149.762C563.505 151.568 569.267 153.497 573.075 155.548C576.933 157.599 579.789 160.064 581.645 162.945C583.5 165.826 584.428 169.317 584.428 173.419C584.428 180.108 581.718 185.455 576.298 189.459C570.927 193.463 563.896 195.465 555.204 195.465C545.976 195.465 538.48 193.243 532.719 188.8C527.006 184.308 524.149 178.644 524.149 171.808H532.938C533.28 176.935 535.429 180.938 539.384 183.819C543.388 186.651 548.661 188.067 555.204 188.067C561.308 188.067 566.239 186.725 569.999 184.039C573.759 181.354 575.639 177.96 575.639 173.858ZM623.173 175.763L624.491 182.574L626.249 175.396L645.292 114.752H652.763L671.586 174.884L673.637 183.233L675.321 175.543L691.581 114.752H700.663L677.592 194H670.121L649.76 131.158L648.808 126.837L647.855 131.231L627.86 194H620.39L597.392 114.752H606.4L623.173 175.763ZM747.978 195.465C741.239 195.465 735.136 193.805 729.667 190.484C724.247 187.164 720.023 182.55 716.996 176.642C713.969 170.685 712.455 164.02 712.455 156.646V153.497C712.455 145.88 713.92 139.02 716.85 132.916C719.828 126.812 723.954 122.027 729.228 118.561C734.501 115.045 740.214 113.287 746.366 113.287C755.985 113.287 763.603 116.583 769.218 123.175C774.882 129.718 777.714 138.678 777.714 150.055V154.962H721.171V156.646C721.171 165.631 723.734 173.126 728.861 179.132C734.037 185.089 740.531 188.067 748.344 188.067C753.031 188.067 757.157 187.213 760.722 185.504C764.335 183.795 767.606 181.061 770.536 177.301L776.029 181.476C769.584 190.802 760.233 195.465 747.978 195.465ZM746.366 120.758C739.774 120.758 734.208 123.175 729.667 128.009C725.175 132.843 722.44 139.337 721.464 147.491H768.998V146.539C768.754 138.922 766.581 132.721 762.479 127.936C758.378 123.15 753.007 120.758 746.366 120.758ZM831.4 122.223C829.545 121.881 827.567 121.71 825.468 121.71C819.999 121.71 815.36 123.248 811.552 126.324C807.792 129.352 805.106 133.771 803.495 139.581V194H794.779V114.752H803.349L803.495 127.35C808.134 117.975 815.58 113.287 825.834 113.287C828.275 113.287 830.204 113.604 831.62 114.239L831.4 122.223ZM892.777 173.858C892.777 169.513 891.02 166.021 887.504 163.385C884.037 160.748 878.788 158.697 871.757 157.232C864.726 155.719 859.257 154.01 855.351 152.105C851.493 150.152 848.612 147.784 846.708 145.001C844.853 142.218 843.925 138.849 843.925 134.894C843.925 128.644 846.537 123.492 851.762 119.439C856.986 115.338 863.676 113.287 871.83 113.287C880.668 113.287 887.748 115.484 893.07 119.879C898.441 124.225 901.127 129.913 901.127 136.944H892.338C892.338 132.306 890.385 128.448 886.479 125.372C882.621 122.296 877.738 120.758 871.83 120.758C866.068 120.758 861.43 122.052 857.914 124.64C854.447 127.179 852.714 130.499 852.714 134.601C852.714 138.556 854.154 141.632 857.035 143.829C859.965 145.978 865.263 147.955 872.929 149.762C880.644 151.568 886.405 153.497 890.214 155.548C894.071 157.599 896.928 160.064 898.783 162.945C900.639 165.826 901.566 169.317 901.566 173.419C901.566 180.108 898.856 185.455 893.437 189.459C888.065 193.463 881.034 195.465 872.343 195.465C863.114 195.465 855.619 193.243 849.857 188.8C844.145 184.308 841.288 178.644 841.288 171.808H850.077C850.419 176.935 852.567 180.938 856.522 183.819C860.526 186.651 865.8 188.067 872.343 188.067C878.446 188.067 883.378 186.725 887.138 184.039C890.897 181.354 892.777 177.96 892.777 173.858ZM1007.84 194C1006.96 191.51 1006.4 187.823 1006.16 182.94C1003.08 186.944 999.149 190.045 994.364 192.242C989.628 194.391 984.599 195.465 979.276 195.465C971.659 195.465 965.482 193.341 960.746 189.093C956.059 184.845 953.715 179.474 953.715 172.979C953.715 165.265 956.913 159.161 963.31 154.669C969.755 150.177 978.715 147.931 990.189 147.931H1006.08V138.922C1006.08 133.258 1004.33 128.814 1000.81 125.592C997.343 122.32 992.265 120.685 985.575 120.685C979.472 120.685 974.418 122.247 970.414 125.372C966.41 128.497 964.408 132.257 964.408 136.651L955.619 136.578C955.619 130.279 958.549 124.835 964.408 120.245C970.268 115.606 977.47 113.287 986.015 113.287C994.853 113.287 1001.81 115.509 1006.89 119.952C1012.02 124.347 1014.65 130.499 1014.8 138.409V175.909C1014.8 183.575 1015.6 189.312 1017.22 193.121V194H1007.84ZM980.302 187.701C986.161 187.701 991.386 186.285 995.976 183.453C1000.61 180.621 1003.98 176.837 1006.08 172.101V154.669H990.409C981.669 154.767 974.833 156.378 969.901 159.503C964.97 162.579 962.504 166.827 962.504 172.247C962.504 176.69 964.14 180.377 967.411 183.307C970.731 186.236 975.028 187.701 980.302 187.701ZM1085.7 173.858C1085.7 169.513 1083.94 166.021 1080.42 163.385C1076.96 160.748 1071.71 158.697 1064.68 157.232C1057.65 155.719 1052.18 154.01 1048.27 152.105C1044.41 150.152 1041.53 147.784 1039.63 145.001C1037.77 142.218 1036.84 138.849 1036.84 134.894C1036.84 128.644 1039.46 123.492 1044.68 119.439C1049.91 115.338 1056.6 113.287 1064.75 113.287C1073.59 113.287 1080.67 115.484 1085.99 119.879C1091.36 124.225 1094.05 129.913 1094.05 136.944H1085.26C1085.26 132.306 1083.3 128.448 1079.4 125.372C1075.54 122.296 1070.66 120.758 1064.75 120.758C1058.99 120.758 1054.35 122.052 1050.83 124.64C1047.37 127.179 1045.63 130.499 1045.63 134.601C1045.63 138.556 1047.07 141.632 1049.96 143.829C1052.88 145.978 1058.18 147.955 1065.85 149.762C1073.56 151.568 1079.33 153.497 1083.13 155.548C1086.99 157.599 1089.85 160.064 1091.7 162.945C1093.56 165.826 1094.49 169.317 1094.49 173.419C1094.49 180.108 1091.78 185.455 1086.36 189.459C1080.99 193.463 1073.95 195.465 1065.26 195.465C1056.03 195.465 1048.54 193.243 1042.78 188.8C1037.06 184.308 1034.21 178.644 1034.21 171.808H1043C1043.34 176.935 1045.49 180.938 1049.44 183.819C1053.45 186.651 1058.72 188.067 1065.26 188.067C1071.37 188.067 1076.3 186.725 1080.06 184.039C1083.82 181.354 1085.7 177.96 1085.7 173.858Z" fill="black"/>
+<g filter="url(#filter1_d)">
+<path d="M352.348 404V261.812H394.34C406.905 261.812 418.038 264.612 427.738 270.211C437.504 275.81 445.056 283.753 450.395 294.039C455.733 304.326 458.402 316.109 458.402 329.391V336.52C458.402 349.996 455.701 361.845 450.297 372.066C444.958 382.288 437.309 390.165 427.348 395.699C417.452 401.233 406.091 404 393.266 404H352.348ZM377.055 281.734V384.273H393.168C406.124 384.273 416.052 380.237 422.953 372.164C429.919 364.026 433.467 352.372 433.598 337.203V329.293C433.598 313.863 430.245 302.079 423.539 293.941C416.833 285.803 407.1 281.734 394.34 281.734H377.055ZM543.852 404C542.81 401.982 541.898 398.694 541.117 394.137C533.565 402.014 524.32 405.953 513.383 405.953C502.771 405.953 494.112 402.926 487.406 396.871C480.701 390.816 477.348 383.329 477.348 374.41C477.348 363.147 481.514 354.521 489.848 348.531C498.246 342.477 510.225 339.449 525.785 339.449H540.336V332.516C540.336 327.047 538.806 322.685 535.746 319.43C532.686 316.109 528.031 314.449 521.781 314.449C516.378 314.449 511.951 315.816 508.5 318.551C505.049 321.22 503.324 324.638 503.324 328.805H479.594C479.594 323.01 481.514 317.607 485.355 312.594C489.197 307.516 494.405 303.544 500.98 300.68C507.621 297.815 515.01 296.383 523.148 296.383C535.518 296.383 545.382 299.508 552.738 305.758C560.095 311.943 563.871 320.667 564.066 331.93V379.586C564.066 389.091 565.401 396.676 568.07 402.34V404H543.852ZM517.777 386.91C522.465 386.91 526.859 385.771 530.961 383.492C535.128 381.214 538.253 378.154 540.336 374.312V354.391H527.543C518.754 354.391 512.146 355.921 507.719 358.98C503.292 362.04 501.078 366.37 501.078 371.969C501.078 376.526 502.576 380.172 505.57 382.906C508.63 385.576 512.699 386.91 517.777 386.91ZM618.656 272.652V298.336H637.309V315.914H618.656V374.898C618.656 378.935 619.438 381.865 621 383.688C622.628 385.445 625.492 386.324 629.594 386.324C632.328 386.324 635.095 385.999 637.895 385.348V403.707C632.491 405.204 627.283 405.953 622.27 405.953C604.04 405.953 594.926 395.895 594.926 375.777V315.914H577.543V298.336H594.926V272.652H618.656ZM702.055 405.953C687.016 405.953 674.809 401.233 665.434 391.793C656.124 382.288 651.469 369.658 651.469 353.902V350.973C651.469 340.426 653.487 331.018 657.523 322.75C661.625 314.417 667.354 307.939 674.711 303.316C682.068 298.694 690.271 296.383 699.32 296.383C713.708 296.383 724.809 300.973 732.621 310.152C740.499 319.332 744.438 332.32 744.438 349.117V358.688H675.395C676.111 367.411 679.008 374.312 684.086 379.391C689.229 384.469 695.674 387.008 703.422 387.008C714.294 387.008 723.148 382.613 729.984 373.824L742.777 386.031C738.546 392.346 732.882 397.262 725.785 400.777C718.754 404.228 710.844 405.953 702.055 405.953ZM699.223 315.426C692.712 315.426 687.439 317.704 683.402 322.262C679.431 326.819 676.892 333.167 675.785 341.305H721V339.547C720.479 331.604 718.363 325.615 714.652 321.578C710.941 317.477 705.798 315.426 699.223 315.426ZM822.172 375.289C822.172 371.057 820.414 367.835 816.898 365.621C813.448 363.408 807.686 361.454 799.613 359.762C791.54 358.069 784.802 355.921 779.398 353.316C767.549 347.587 761.625 339.286 761.625 328.414C761.625 319.299 765.466 311.682 773.148 305.562C780.831 299.443 790.596 296.383 802.445 296.383C815.076 296.383 825.264 299.508 833.012 305.758C840.824 312.008 844.73 320.113 844.73 330.074H821C821 325.517 819.307 321.741 815.922 318.746C812.536 315.686 808.044 314.156 802.445 314.156C797.237 314.156 792.973 315.361 789.652 317.77C786.397 320.178 784.77 323.401 784.77 327.438C784.77 331.083 786.299 333.915 789.359 335.934C792.419 337.952 798.604 340.003 807.914 342.086C817.224 344.104 824.516 346.546 829.789 349.41C835.128 352.21 839.066 355.595 841.605 359.566C844.21 363.538 845.512 368.355 845.512 374.02C845.512 383.525 841.573 391.24 833.695 397.164C825.818 403.023 815.499 405.953 802.738 405.953C794.079 405.953 786.365 404.391 779.594 401.266C772.823 398.141 767.549 393.844 763.773 388.375C759.997 382.906 758.109 377.014 758.109 370.699H781.156C781.482 376.298 783.598 380.628 787.504 383.688C791.41 386.682 796.586 388.18 803.031 388.18C809.281 388.18 814.034 387.008 817.289 384.664C820.544 382.255 822.172 379.13 822.172 375.289Z" fill="#F27878"/>
+</g>
+<g filter="url(#filter2_d)">
+<path d="M434.477 457.734H390.141V580H365.629V457.734H321.684V437.812H434.477V457.734ZM476.176 580H452.445V474.336H476.176V580ZM450.98 446.895C450.98 443.249 452.12 440.221 454.398 437.812C456.742 435.404 460.062 434.199 464.359 434.199C468.656 434.199 471.977 435.404 474.32 437.812C476.664 440.221 477.836 443.249 477.836 446.895C477.836 450.475 476.664 453.47 474.32 455.879C471.977 458.223 468.656 459.395 464.359 459.395C460.062 459.395 456.742 458.223 454.398 455.879C452.12 453.47 450.98 450.475 450.98 446.895ZM524.418 474.336L525.102 485.371C532.523 476.712 542.68 472.383 555.57 472.383C569.698 472.383 579.366 477.786 584.574 488.594C592.257 477.786 603.064 472.383 616.996 472.383C628.65 472.383 637.309 475.605 642.973 482.051C648.702 488.496 651.632 498.001 651.762 510.566V580H628.031V511.25C628.031 504.544 626.566 499.629 623.637 496.504C620.707 493.379 615.857 491.816 609.086 491.816C603.682 491.816 599.255 493.281 595.805 496.211C592.419 499.076 590.043 502.852 588.676 507.539L588.773 580H565.043V510.469C564.717 498.034 558.37 491.816 546 491.816C536.495 491.816 529.757 495.69 525.785 503.438V580H502.055V474.336H524.418ZM722.66 581.953C707.621 581.953 695.414 577.233 686.039 567.793C676.729 558.288 672.074 545.658 672.074 529.902V526.973C672.074 516.426 674.092 507.018 678.129 498.75C682.23 490.417 687.96 483.939 695.316 479.316C702.673 474.694 710.876 472.383 719.926 472.383C734.314 472.383 745.414 476.973 753.227 486.152C761.104 495.332 765.043 508.32 765.043 525.117V534.688H696C696.716 543.411 699.613 550.312 704.691 555.391C709.835 560.469 716.28 563.008 724.027 563.008C734.9 563.008 743.754 558.613 750.59 549.824L763.383 562.031C759.151 568.346 753.487 573.262 746.391 576.777C739.359 580.228 731.449 581.953 722.66 581.953ZM719.828 491.426C713.318 491.426 708.044 493.704 704.008 498.262C700.036 502.819 697.497 509.167 696.391 517.305H741.605V515.547C741.085 507.604 738.969 501.615 735.258 497.578C731.547 493.477 726.404 491.426 719.828 491.426ZM842.777 551.289C842.777 547.057 841.02 543.835 837.504 541.621C834.053 539.408 828.292 537.454 820.219 535.762C812.146 534.069 805.408 531.921 800.004 529.316C788.155 523.587 782.23 515.286 782.23 504.414C782.23 495.299 786.072 487.682 793.754 481.562C801.436 475.443 811.202 472.383 823.051 472.383C835.681 472.383 845.87 475.508 853.617 481.758C861.43 488.008 865.336 496.113 865.336 506.074H841.605C841.605 501.517 839.913 497.741 836.527 494.746C833.142 491.686 828.65 490.156 823.051 490.156C817.842 490.156 813.578 491.361 810.258 493.77C807.003 496.178 805.375 499.401 805.375 503.438C805.375 507.083 806.905 509.915 809.965 511.934C813.025 513.952 819.21 516.003 828.52 518.086C837.829 520.104 845.121 522.546 850.395 525.41C855.733 528.21 859.672 531.595 862.211 535.566C864.815 539.538 866.117 544.355 866.117 550.02C866.117 559.525 862.178 567.24 854.301 573.164C846.423 579.023 836.104 581.953 823.344 581.953C814.685 581.953 806.97 580.391 800.199 577.266C793.428 574.141 788.155 569.844 784.379 564.375C780.603 558.906 778.715 553.014 778.715 546.699H801.762C802.087 552.298 804.203 556.628 808.109 559.688C812.016 562.682 817.191 564.18 823.637 564.18C829.887 564.18 834.639 563.008 837.895 560.664C841.15 558.255 842.777 555.13 842.777 551.289Z" fill="#F27878" fill-opacity="0.5" shape-rendering="crispEdges"/>
+</g>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M421.771 695.094H479.617V675.154H421.771V632.412H488.107V612.274H396.797V756.001H421.771V695.094ZM507.158 756.001H531.146V649.193H507.158V756.001ZM509.133 612.274C506.829 614.709 505.678 617.769 505.678 621.454C505.678 625.074 506.829 628.101 509.133 630.536C511.502 632.905 514.858 634.09 519.201 634.09C523.545 634.09 526.901 632.905 529.27 630.536C531.639 628.101 532.824 625.074 532.824 621.454C532.824 617.769 531.639 614.709 529.27 612.274C526.901 609.839 523.545 608.622 519.201 608.622C514.858 608.622 511.502 609.839 509.133 612.274ZM558.884 756.001H582.871V604.377H558.884V756.001ZM619.099 743.661C628.576 753.204 640.915 757.975 656.117 757.975C665.001 757.975 672.997 756.231 680.104 752.743C687.277 749.189 693.002 744.221 697.28 737.837L684.349 725.498C677.439 734.382 668.489 738.824 657.499 738.824C649.667 738.824 643.152 736.258 637.953 731.125C632.82 725.992 629.892 719.016 629.168 710.198H698.958V700.524C698.958 683.545 694.977 670.416 687.014 661.137C679.117 651.858 667.896 647.219 653.353 647.219C644.205 647.219 635.913 649.555 628.477 654.227C621.04 658.9 615.249 665.448 611.103 673.871C607.023 682.229 604.983 691.738 604.983 702.399V705.361C604.983 721.286 609.688 734.053 619.099 743.661ZM637.262 673.378C641.342 668.771 646.673 666.468 653.254 666.468C659.901 666.468 665.099 668.541 668.851 672.687C672.602 676.767 674.74 682.821 675.267 690.85V692.627H629.563C630.681 684.4 633.248 677.984 637.262 673.378ZM772.203 717.206C775.757 719.444 777.534 722.701 777.534 726.979C777.534 730.862 775.889 734.02 772.598 736.455C769.308 738.824 764.504 740.009 758.186 740.009C751.671 740.009 746.439 738.495 742.491 735.468C738.542 732.375 736.403 727.999 736.074 722.339H712.778C712.778 728.723 714.686 734.678 718.503 740.206C722.32 745.734 727.651 750.078 734.495 753.237C741.339 756.395 749.137 757.975 757.89 757.975C770.788 757.975 781.219 755.013 789.182 749.091C797.145 743.102 801.126 735.304 801.126 725.696C801.126 719.97 799.81 715.1 797.178 711.086C794.611 707.072 790.63 703.65 785.233 700.82C779.903 697.924 772.532 695.456 763.122 693.416C753.711 691.31 747.459 689.237 744.366 687.197C741.273 685.157 739.727 682.295 739.727 678.609C739.727 674.529 741.372 671.272 744.662 668.837C748.019 666.402 752.329 665.184 757.594 665.184C763.253 665.184 767.794 666.731 771.216 669.824C774.638 672.851 776.349 676.668 776.349 681.275H800.337C800.337 671.206 796.388 663.013 788.491 656.695C780.66 650.377 770.361 647.219 757.594 647.219C745.617 647.219 735.745 650.312 727.98 656.498C720.214 662.684 716.332 670.383 716.332 679.596C716.332 690.587 722.32 698.977 734.297 704.768C739.76 707.401 746.571 709.572 754.731 711.283C762.891 712.994 768.715 714.969 772.203 717.206Z" fill="#F27878" fill-opacity="0.25"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M220.693 886H195.719V785.274H220.693L283.927 886H257.743L220.693 827.03V886ZM473.202 886H449.214V822.193H471.82L472.511 833.347C480.013 824.595 490.279 820.219 503.309 820.219C517.59 820.219 527.362 825.681 532.627 836.605C540.393 825.681 551.317 820.219 565.4 820.219C577.18 820.219 585.932 823.476 591.658 829.991C597.449 836.506 600.41 846.114 600.542 858.815V886H576.554V859.506C576.554 852.728 575.074 847.759 572.112 844.601C569.151 841.442 564.248 839.862 557.404 839.862C551.942 839.862 547.467 841.343 543.979 844.305C540.557 847.2 538.155 851.017 536.773 855.755L536.814 886H512.884V858.717C512.555 846.147 506.139 839.862 493.635 839.862C484.027 839.862 477.216 843.778 473.202 851.609V886ZM718.475 886C718.758 883.023 718.899 879.917 718.899 876.682V875.3C718.899 857.927 715.181 844.403 707.744 834.729C700.308 825.055 690.075 820.219 677.045 820.219C665.331 820.219 656.019 824.299 649.109 832.459V777.377H625.121V886H649.109V853.485C653.32 844.403 660.625 839.862 671.023 839.862C678.789 839.862 684.711 842.758 688.791 848.549C692.872 854.34 694.912 863.027 694.912 874.61V877.67C694.877 880.644 694.706 883.421 694.399 886H718.475ZM759.487 886H735.375C735.118 883.54 734.989 880.994 734.989 878.361V875.399C734.989 864.738 737.029 855.229 741.109 846.871C745.255 838.448 751.047 831.9 758.483 827.227C765.919 822.555 774.211 820.219 783.359 820.219C797.902 820.219 809.123 824.858 817.02 834.137C824.983 843.416 828.964 856.545 828.964 873.524V883.198H759.174C759.252 884.154 759.357 885.088 759.487 886ZM871.608 886H847.621V822.193H870.523L871.115 834.137C876.906 824.858 884.935 820.219 895.201 820.219C898.623 820.219 901.453 820.679 903.69 821.6L903.591 844.107C900.433 843.581 897.175 843.317 893.819 843.317C882.829 843.317 875.425 847.529 871.608 855.953V886ZM999.38 886H962.904C960.777 885.401 958.413 884.829 955.811 884.283C947.651 882.572 940.839 880.401 935.377 877.768C923.4 871.977 917.411 863.587 917.411 852.596C917.411 843.383 921.294 835.684 929.06 829.498C936.825 823.312 946.696 820.219 958.673 820.219C971.44 820.219 981.739 823.377 989.571 829.695C997.468 836.013 1001.42 844.206 1001.42 854.275H977.429C977.429 849.668 975.718 845.851 972.296 842.824C968.874 839.731 964.333 838.184 958.673 838.184C953.409 838.184 949.098 839.402 945.742 841.837C942.452 844.272 940.806 847.529 940.806 851.609C940.806 855.295 942.353 858.157 945.446 860.197C948.539 862.237 954.791 864.31 964.201 866.416C973.612 868.456 980.983 870.924 986.313 873.82C991.71 876.65 995.691 880.072 998.258 884.086C998.663 884.704 999.037 885.342 999.38 886ZM424.832 886H400.845V822.193H424.832V886ZM360.372 886H336.385V822.193H360.372V886ZM309.733 886H284.956V785.274H309.733V886ZM767.268 846.378C771.349 841.771 776.679 839.468 783.26 839.468C789.907 839.468 795.106 841.541 798.857 845.687C802.608 849.767 804.747 855.821 805.273 863.85V865.627H759.569C760.688 857.4 763.254 850.984 767.268 846.378Z" fill="#F27878" fill-opacity="0.1"/>
+<defs>
+<filter id="filter0_bd" x="-46" y="-50" width="1288" height="988" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dy="4"/>
+<feGaussianBlur stdDeviation="2"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
+<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
+</filter>
+<filter id="filter1_d" x="327.348" y="236.812" width="543.164" height="194.141" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="12.5"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+<filter id="filter2_d" x="296.684" y="409.199" width="594.434" height="197.754" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset/>
+<feGaussianBlur stdDeviation="12.5"/>
+<feComposite in2="hardAlpha" operator="out"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+</defs>
+</svg>
diff --git a/public/Icons/Homepage.svg b/public/Icons/Homepage.svg
new file mode 100644
index 0000000..bc56da2
--- /dev/null
+++ b/public/Icons/Homepage.svg
@@ -0,0 +1,25 @@
+<svg width="2048" height="2048" viewBox="0 0 2048 2048" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="2048" height="2048" rx="1024" fill="url(#paint0_linear)"/>
+<g filter="url(#filter0_d)">
+<path d="M557.16 885.5V1472C557.16 1516.18 592.977 1552 637.16 1552H843.16C887.343 1552 923.16 1516.18 923.16 1472V1344C923.16 1299.82 958.977 1264 1003.16 1264H1045.16C1089.34 1264 1125.16 1299.82 1125.16 1344V1472C1125.16 1516.18 1160.98 1552 1205.16 1552H1411.16C1455.34 1552 1491.16 1516.18 1491.16 1472V885.5M1708.32 885.5L1076.83 333.078C1046.67 306.695 1001.65 306.695 971.487 333.078L340 885.5" stroke="url(#paint1_linear)" stroke-width="100" stroke-linecap="round"/>
+</g>
+<defs>
+<filter id="filter0_d" x="280" y="247.289" width="1508.32" height="1378.71" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="10" dy="4"/>
+<feGaussianBlur stdDeviation="10"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
+<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
+</filter>
+<linearGradient id="paint0_linear" x1="2048" y1="0" x2="0" y2="2048" gradientUnits="userSpaceOnUse">
+<stop stop-color="#78ECF2"/>
+<stop offset="1" stop-color="#71AFE5"/>
+</linearGradient>
+<linearGradient id="paint1_linear" x1="1708.16" y1="287" x2="340.16" y2="1552" gradientUnits="userSpaceOnUse">
+<stop stop-color="#8D8D8D"/>
+<stop offset="1" stop-color="#424242"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/styles/rsmv/rsmv.module.css b/styles/rsmv/rsmv.module.css
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/styles/rsmv/rsmv.module.css
diff --git a/yarn.lock b/yarn.lock
index 2c27341..21c21c1 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2475,6 +2475,11 @@
     object-assign "^4.1.1"
     scheduler "^0.20.2"
 
+react-hcaptcha@^0.1.1:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/react-hcaptcha/-/react-hcaptcha-0.1.1.tgz#da21311166f0153054624caf5784cfd977ef31f5"
+  integrity sha512-p0s7uDOZAh28dbcmP2bXsox2NmIwQ6OtDTgjCYwfe49kHeCU67Omma1DhzYiGWQJRC6eTUZEikjsm+WT7bmy2g==
+
 react-is@17.0.2:
   version "17.0.2"
   resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"