adding in the first iteration of the demo for teams

This commit is contained in:
Arjun Patel
2022-01-09 22:32:13 -08:00
parent 398c03e941
commit 1e013e71e9
126 changed files with 253 additions and 4 deletions
+6
View File
@@ -0,0 +1,6 @@
// {/* side bar */}
// <section className="flex-none w-80 p-10 border-r-2 flex flex-row bg-fuchsia-50 items-center">
// {/* logo */}
// <Image src="/handcrafts/undraw_handcrafts_leaf.svg" alt="logo" width={30} height={30} />
// <font className="top-0 text-3xl text-teal font-satisfy">nirvana</font>
// </section>
+16 -1
View File
@@ -8,7 +8,8 @@
"dependencies": {
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2"
"react-dom": "17.0.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"autoprefixer": "^10.4.2",
@@ -4998,6 +4999,14 @@
"react": "17.0.2"
}
},
"node_modules/react-icons": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.3.1.tgz",
"integrity": "sha512-cB10MXLTs3gVuXimblAdI71jrJx8njrJZmNMEMC+sQu5B/BIOmlsAjskdqpn81y8UBVEGuHODd7/ci5DvoSzTQ==",
"peerDependencies": {
"react": "*"
}
},
"node_modules/react-is": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
@@ -9652,6 +9661,12 @@
"scheduler": "^0.20.2"
}
},
"react-icons": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.3.1.tgz",
"integrity": "sha512-cB10MXLTs3gVuXimblAdI71jrJx8njrJZmNMEMC+sQu5B/BIOmlsAjskdqpn81y8UBVEGuHODd7/ci5DvoSzTQ==",
"requires": {}
},
"react-is": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
+2 -1
View File
@@ -10,7 +10,8 @@
"dependencies": {
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2"
"react-dom": "17.0.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"autoprefixer": "^10.4.2",
+158
View File
@@ -0,0 +1,158 @@
import Head from 'next/head'
import Image from 'next/image';
import React from 'react';
import { FaMicrophoneAlt, FaHeadphonesAlt, FaTh } from "react-icons/fa";
let testFriends = [
{
name: "Liam",
role: "engineer",
systemAvatar: "1",
status: "online"
},
{
name: "Emily",
role: "engineer",
systemAvatar: "2",
status: "online"
},
{
name: "Paul",
role: "architect",
systemAvatar: "3",
status: "online"
},
{
name: "Mark",
role: "engineer",
systemAvatar: "4",
status: "busy"
},
{
name: "Adriana",
role: "design",
systemAvatar: "5",
status: "busy"
},
{
name: "Josh",
role: "design",
systemAvatar: "6",
status: "offline"
}
]
export default class Demo extends React.Component {
constructor(props) {
super(props);
this.state = {
selectedChannel: 1
}
}
statusBubble(status) {
}
render() {
return (
<div className="container mx-auto max-w-screen-xl pt-10 flex flex-col">
<Head>
<link
href="https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Satisfy&display=swap"
rel="stylesheet"
/>
</Head>
{/* header content */}
<section className="flex-1 flex flex-row items-center justify-between py-5">
{/* welcome message */}
<span className='flex flex-col'>
<font className="font-sans font-bold text-xl">👋Hey Arjun, Good Afternoon!</font>
</span>
{/* avatar */}
<span className="flex flex-row items-center space-x-5">
<FaHeadphonesAlt className='text-lg text-gray-400 hover:text-teal-900 ease-in-out duration-300 hover:scale-110 hover:cursor-pointer' />
<FaMicrophoneAlt className='text-lg text-gray-400 hover:text-teal-900 ease-in-out duration-300 hover:scale-110 hover:cursor-pointer' />
<FaTh className='text-lg text-gray-400 hover:text-teal-900 ease-in-out duration-300 hover:scale-110 hover:cursor-pointer' />
<span className='relative flex'>
<span className="bg-gray-200 rounded-full shadow-md absolute w-full h-full"></span>
<span className="absolute top-0 right-0 w-3 h-3 bg-green-400 rounded-full"></span>
<Image src="/avatars/svg/Artboards_Diversity_Avatars_by_Netguru-05.svg" alt="profile" width={50} height={50} />
</span>
</span>
</section>
<div className='flex flex-row items-baseline space-x-5'>
{/* personal line */}
<section className='flex flex-col bg-gray-100 bg-opacity-25 rounded-lg shadow-md'>
<span className='p-5 flex flex-col'>
<span className="text-gray-300">PERSONAL LINE</span>
<font className="font-sans text-sm text-gray-400 pt-2">
<font className="rounded-full p-1 bg-opacity-30 bg-teal-700 text-teal-700 font-bold">3</font> teammates open for collab</font>
</span>
{/* list of team members */}
{
testFriends.map((friend, i) => {
console.log(friend)
return (
<span key={i} className={`flex flex-row items-center border-t-2 py-2 px-2 justify-items-start w-60${this.state.selectedNumber == i ? "bg-gray-300" : " "}`}>
<span className='relative flex mr-2'>
<span className="bg-gray-200 rounded-full shadow-md absolute w-full h-full"></span>
<span className="absolute top-0 right-0 w-3 h-3 bg-green-400 rounded-full"></span>
<Image src="/avatars/svg/Artboards_Diversity_Avatars_by_Netguru-05.svg" alt="profile" width={50} height={50} />
</span>
<span className='flex flex-col'>
<font className="text-sm text-black font-bold">{friend.name} {friend.status}</font>
<font className="text-gray-300 text-xs font-sans">{friend.role}</font>
</span>
{
this.state.selectedNumber == i ?
<span className="rounded-lg p-2 ml-auto border border-gray-300 shadow-lg">
<font className="text-gray-200">{i}</font>
</span>
:
<span className="rounded-lg p-2 ml-auto border border-gray-100 shadow-md">
<font className="text-gray-200">{i}</font>
</span>
}
</span>
)
})
}
</section>
{/* live conversations */}
<section className='p-5 flex flex-col bg-gray-100 bg-opacity-25 rounded-lg shadow-md'>
<span className="text-gray-300">LIVE CONVERSATIONS</span>
<span>
</span>
</section>
</div>
{/* */}
<section className=''>
</section>
</div>
)
}
}
+2 -2
View File
@@ -1,8 +1,8 @@
import Head from 'next/head';
import Image from 'next/image';
import styles from '../styles/Home.module.css';
import styles from '/styles/Home.module.css';
export default function Teams() {
export default function Home() {
return (
<div className={styles.container}>
<Head>
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:#845161;}.cls-3{fill:#69303a;}.cls-4{fill:url(#linear-gradient-2);}.cls-5{fill:#00214e;}.cls-6{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-7{fill:url(#linear-gradient-3);}</style><linearGradient id="linear-gradient" x1="-15.15" y1="263.47" x2="221.28" y2="43.73" gradientTransform="translate(69.34 -23.47) rotate(2.41)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#315676"/><stop offset="1" stop-color="#e1b9e0"/></linearGradient><linearGradient id="linear-gradient-2" x1="73.23" y1="308.27" x2="299.71" y2="308.27" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#16243f"/><stop offset="1" stop-color="#6878b1"/></linearGradient><linearGradient id="linear-gradient-3" x1="73.92" y1="213.74" x2="144.87" y2="76.5" xlink:href="#linear-gradient"/></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M276.33,133.92c-.28,6.74-9.1,12.18-10.63,18.49-1.57,6.51,3.74,15.38,1,21.31s-13,7.69-16.93,13-2.4,15.59-7.26,20.06-14.94,2.09-20.59,5.54-8.12,13.49-14.37,15.77-14.54-3.79-21.15-2.77c-6.42,1-12.58,9.32-19.32,9s-12.18-9.1-18.49-10.63c-6.5-1.58-15.38,3.74-21.31,1s-7.68-13-13-16.92-15.59-2.4-20.06-7.26-2.1-14.94-5.55-20.6S75.2,171.8,72.91,165.56s3.8-14.54,2.77-21.15c-1-6.42-9.32-12.59-9-19.32s9.11-12.18,10.64-18.49c1.57-6.5-3.74-15.38-1-21.31s13-7.68,16.92-13,2.41-15.59,7.27-20,14.94-2.1,20.59-5.55,8.12-13.48,14.37-15.77S150,34.72,156.59,33.7c6.41-1,12.58-9.32,19.31-9s12.18,9.11,18.5,10.63c6.5,1.58,15.37-3.74,21.3-1s7.69,13,13,16.92,15.59,2.4,20.06,7.26,2.1,14.95,5.55,20.6,13.48,8.12,15.77,14.36-3.8,14.54-2.78,21.15C268.28,121,276.62,127.19,276.33,133.92Z"/><path class="cls-2" d="M299.71,303.37a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34l1.12-.7c.4-.25.79-.51,1.18-.78a46.54,46.54,0,0,0,14.67-16.47c4-7.55,5.32-15.89,5.38-24.39,0-5.72-.31-11.44-.37-17.17q-.06-4.75-.1-9.51l2,1,5.2,2.69,30.29,5.15,31.12,5.3.94,32,.47,15.87,11.47,4.67,9,3.64Z"/><path class="cls-3" d="M217.65,254.32A60.08,60.08,0,0,1,187.58,252c-21.58-7.25-36.11-24.74-37.48-42.76l5.2,2.69,30.29,5.15,31.12,5.3Z"/><path class="cls-4" d="M299.71,303.37a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34c23.68,17.41,56.63,28.75,85.06,16,8.06-3.62,15.33-10.05,18.29-18.31l9,3.64Z"/><circle class="cls-2" cx="125.61" cy="174.64" r="17"/><circle class="cls-3" cx="131.69" cy="172.9" r="17"/><path class="cls-2" d="M209.28,242.38c-21-.89-71.22-19.8-81.25-60.94a98.19,98.19,0,0,1-2.8-26.21c0-1.73.16-3.44.3-5.14,2.47-28.26,17.95-51.33,41.12-57,1.34-.32,2.68-.59,4-.78A47.89,47.89,0,0,1,194.62,95a66.86,66.86,0,0,1,25.59,17.76,83.83,83.83,0,0,1,8.09,10.36,96.3,96.3,0,0,1,13.27,30.64C251.59,194.93,224.6,243,209.28,242.38Z"/><path class="cls-5" d="M176.54,156.08c6.09.31,5.7,9.62-.4,9.42h-.27c-6.1-.31-5.7-9.63.39-9.42h.28Z"/><path class="cls-5" d="M226.92,154.36c5.65.29,5.29,8.93-.37,8.74h-.26c-5.65-.28-5.29-8.93.37-8.74h.26Z"/><path class="cls-6" d="M208.64,154.07a57,57,0,0,0,1.52,11.56c.9,3.35,2.29,5.47,4.17,8.4a18.86,18.86,0,0,1,1.66,3.06c2.39,6-1.39,12.48-8.07,12.2l-4.12-.18"/><path class="cls-6" d="M179.4,199.27a29.8,29.8,0,0,0,18.12,10.46"/><path class="cls-6" d="M189.51,180.84a3.4,3.4,0,0,0,1.84,6.47"/><path class="cls-6" d="M213.89,142a31.12,31.12,0,0,1,22.92-1.2"/><path class="cls-6" d="M161.34,142.68a36.69,36.69,0,0,1,31.24.34"/><path class="cls-7" d="M222,113.51c.49,1.18.39,2.21-.45,3.82a24.48,24.48,0,0,1-3.72,5.25,24.34,24.34,0,0,1-24.28,7.15A22.06,22.06,0,0,1,187,127c-1.5-1-3.24-3.36-5.28-2.56a4.08,4.08,0,0,0-1.85,2c-3.27,5.78-5.28,11.85-11.74,14.89a19.72,19.72,0,0,1-11.92,1.16c-3.42-.61-4.48-3.32-7.41-4.15-1.65-.47-3.3.8-4.3,2.2-1.89,2.65-2.05,6-3.61,8.81-2,3.7-6.07,7-10.41,7.48a5.19,5.19,0,0,1-4.62-1.73c-2.21-2.86-.9-8-.48-11.31,1.6-12.38,5.86-24.64,13.39-34.69,6.79-9,16.28-16,27.34-18.65,19.15-4.67,42.86,6.5,54.75,21.16A7,7,0,0,1,222,113.51Z"/><path class="cls-5" d="M219.7,110.17h0c-18.41-4.94-40.11-4-54.84,4.27-25.6,14.34-31.61,25.72-39.75,37.65l-.35.53c0-.69,0-1.39.09-2.08,1.58-29.65,17.33-54.19,41.33-60,18.91-4.61,38.63,3.45,53.49,19.6Z"/></svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:#845161;}.cls-3{fill:#69303a;}.cls-4{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-5{fill:#ff2609;}.cls-6{fill:#00214e;}</style><linearGradient id="linear-gradient" x1="115.33" y1="201.98" x2="381.19" y2="-45.12" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#315676"/><stop offset="1" stop-color="#e1b9e0"/></linearGradient></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M301.17,138.92c0,7.61-8.67,14.27-10.09,21.47-1.47,7.41,4,16.88,1.14,23.7s-13.44,9.78-17.57,15.94-2.77,17.06-8,22.33-16.11,3.87-22.32,8-9,14.7-15.95,17.57-16.28-2.6-23.7-1.13c-7.19,1.42-13.86,10.09-21.47,10.09s-14.27-8.67-21.47-10.09c-7.41-1.47-16.88,4-23.7,1.13s-9.77-13.44-15.94-17.57-17.06-2.76-22.33-8-3.87-16.11-8-22.33S77,191,74.13,184.09s2.6-16.29,1.14-23.7c-1.43-7.2-10.1-13.86-10.1-21.47s8.67-14.28,10.1-21.47c1.46-7.41-4-16.88-1.14-23.7S87.57,84,91.7,77.8s2.76-17,8-22.32,16.11-3.87,22.33-8,9-14.69,15.94-17.57,16.29,2.61,23.7,1.14c7.2-1.42,13.86-10.09,21.47-10.09S197.45,29.59,204.64,31c7.42,1.47,16.88-4,23.7-1.14s9.78,13.45,15.95,17.58,17,2.76,22.32,8,3.88,16.11,8,22.33,14.69,9,17.57,15.94-2.61,16.29-1.14,23.7C292.5,124.64,301.17,131.31,301.17,138.92Z"/><circle class="cls-2" cx="132.17" cy="183.92" r="17"/><circle class="cls-3" cx="138.03" cy="182.92" r="16"/><path class="cls-2" d="M293.76,307.1a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38A46.35,46.35,0,0,0,137.26,263c4-7.55,5.32-15.89,5.38-24.39,0-1.74,0-3.49-.06-5.23-.09-4-.27-8-.31-11.94q-.06-4.76-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.36,12.21.1,3.33v.33l12.1,4.92Z"/><path class="cls-3" d="M212.09,270.47l-1.54.16A51.49,51.49,0,0,1,169.88,256L142.5,223.47c-.09-2.9-.2,0-.23-2.91q-.06-4.76-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32Z"/><path class="cls-2" d="M137.28,149.32c-.79,1-1.49,3-2.24,6.11-1.73,7.33,5.85,55.45,7.3,69.62l36.42,26.85a51.48,51.48,0,0,0,42.29,9c5.87-1.39,9.59-2.29,12.24-7,5.12-9,17.69-39.79,18.51-61.51.23-6.16.08-15.57-3.72-20.82-1.85-2.55-2.8-2.6-2.13-6.21.69-3.76,1.68-7.47,2.51-11.21,2.29-10.33,4.12-22,.81-32.28-1.76-5.5-4.87-9.14-9.29-12.68-4.72-3.78-6.67-3.59-9.5,2-1.91,3.8-3.83,7-7.7,9.16-5.61,3.11-9.43,1.09-15,.66-4.88-.37-4.36,3.4-5.43,6.95a16.8,16.8,0,0,1-6.77,9.25,18.53,18.53,0,0,1-20,.12,4.75,4.75,0,0,0-2.85-.89c-3.34.18-3.49,4.19-4.25,7.07-1.61,6-8.62,9.32-14.85,8.83C143.47,151.59,139.85,145.93,137.28,149.32Z"/><path class="cls-4" d="M217.54,167.2a57.24,57.24,0,0,0,2,11.49c1,3.31,2.52,5.36,4.52,8.22a18.39,18.39,0,0,1,1.79,3c2.64,5.94-.87,12.53-7.55,12.53h-4.13"/><path class="cls-4" d="M188.51,212.23a29.85,29.85,0,0,0,18.54,9.7"/><path class="cls-4" d="M169.84,156.09a80.82,80.82,0,0,1,28.13-.8"/><path class="cls-4" d="M228.89,156.2A55,55,0,0,1,246.34,155"/><path class="cls-5" d="M293.76,307.1a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38C148,294.84,180.17,305.41,208,292.9c6.62-3,12.7-7.84,16.3-14.06Z"/><path class="cls-4" d="M200.84,195.4a3.4,3.4,0,0,0,2.11,6.38"/><path class="cls-6" d="M185.34,163.73c6.1.05,6.1,9.37,0,9.42h-.28c-6.1-.05-6.1-9.37,0-9.42h.28Z"/><path class="cls-6" d="M235.6,163.73c5.66,0,5.66,8.7,0,8.74h-.26c-5.66,0-5.66-8.7,0-8.74h.26Z"/></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#00214e;}.cls-2{fill:#f2d4cf;}.cls-3{fill:#daaea8;}.cls-4{fill:#ff2609;}.cls-5{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-6{fill:#fff;}.cls-7{fill:url(#linear-gradient);}</style><linearGradient id="linear-gradient" x1="135.61" y1="137.64" x2="164.83" y2="68.33" gradientUnits="userSpaceOnUse"><stop offset="0.29" stop-color="#00214e"/><stop offset="0.51" stop-color="#6878b1"/><stop offset="0.79" stop-color="#00214e"/></linearGradient></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M244.67,107.86c-4.24-19.92-6-35.11-23.19-47.8-13.73-10.12-31.27-15.53-48.34-14.18-14.48,1.15-32.65,6.3-46.87,15A58.94,58.94,0,0,0,110.06,75c-6.31,8.32-10.83,18.44-14.27,29.18-5.18,16.15-8,33.72-10.79,48.71C80.15,178.4,75.81,204,71.46,229.6c29.94,3,186.24,2.11,186.24,2.11S254.12,152.15,244.67,107.86ZM170.5,128.3l-16.8-5.43,50.66-19,3.71,2.06Z"/><path class="cls-2" d="M296.41,282.34a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34l1.12-.7c.4-.25.79-.51,1.18-.78a46.54,46.54,0,0,0,14.67-16.47c4-7.55,5.32-15.89,5.38-24.39,0-5.72-.31-11.44-.37-17.17q-.06-4.75-.1-9.51l2,1,5.2,2.69L182.29,196l31.12,5.3.94,32,.47,15.87,11.47,4.67,9,3.64Z"/><path class="cls-3" d="M214.16,229.6c-2.72,1.68-5.29,2.47-7.54,2.23-14.79-1.59-43.64-13.18-61.8-34.63q0-1.57-.06-3.15-.06-4.76-.1-9.51l2,1,5.2,2.69,30.29,5.15,31.12,5.3Z"/><path class="cls-4" d="M296.41,282.34a184.56,184.56,0,0,1-226.48-1l48.66-22.81q2.25-1.06,4.35-2.33c23.68,17.41,56.64,28.74,85.06,15.95,8.06-3.62,15.33-10.05,18.29-18.31l9,3.64Z"/><circle class="cls-2" cx="118.14" cy="153.89" r="17"/><circle class="cls-3" cx="124.14" cy="151.89" r="17"/><path class="cls-2" d="M233.68,128.14c11.74,40.69-13.2,89.88-28.54,89.88-21,0-72-16.78-83.73-57.47s3.87-80.92,34.87-89.87S221.93,87.46,233.68,128.14Z"/><path class="cls-5" d="M202.93,124.13A31.08,31.08,0,0,1,225.78,122"/><path class="cls-5" d="M154.05,126.42a36.76,36.76,0,0,1,31.23-1"/><ellipse class="cls-1" cx="167.28" cy="139.45" rx="3.27" ry="7.94" transform="translate(15.86 295.97) rotate(-85.77)"/><ellipse class="cls-1" cx="218.77" cy="137.8" rx="7.94" ry="3.27" transform="translate(-25.74 53.74) rotate(-13.23)"/><path class="cls-5" d="M203.73,148.49s.29,5.65,1.62,8.3c.57,1.14,1.45,2.11,2,3.24,2.21,4.34-1.37,5.25-4.81,5.25"/><path class="cls-5" d="M189.81,158.37a3.4,3.4,0,0,0,2.11,6.38"/><path class="cls-6" d="M171.83,173.88a1.87,1.87,0,0,1,2.69-.5c2.07,1.46,5.87,4.56,11.27,5.63,7.36,1.47,13.75-1.48,15.27.42.86,1.07-.19,2.38-2.2,4A19.68,19.68,0,0,1,184,187.17c-7.09-1.33-12.4-9.53-12.4-12.43A1.69,1.69,0,0,1,171.83,173.88Z"/><polygon class="cls-1" points="226.5 95.61 204.36 103.9 153.7 122.87 153.69 122.87 115.86 137.04 115.28 110.47 114.5 74.61 137.99 67.29 175.5 55.61 226.5 95.61"/><path class="cls-7" d="M204.36,103.9l-50.66,19h0l-38.41-12.4-19.49-6.29c3.44-10.74,8-20.86,14.27-29.18a58.94,58.94,0,0,1,16.21-14.09c3.5,1.89,7.47,4,11.72,6.38C161.45,80.11,193.57,97.91,204.36,103.9Z"/></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#f2d4cf;}.cls-2{fill:#daaea8;}.cls-3{fill:url(#linear-gradient);}.cls-4{fill:url(#linear-gradient-2);}.cls-5{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-6{fill:#00214e;}.cls-7{fill:#fff;}</style><linearGradient id="linear-gradient" x1="141.11" y1="152.44" x2="296.66" y2="22.97" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#315676"/><stop offset="1" stop-color="#e1b9e0"/></linearGradient><linearGradient id="linear-gradient-2" x1="235.68" y1="3.82" x2="284.26" y2="264.56" xlink:href="#linear-gradient"/></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M296.41,283.6a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09A44.69,44.69,0,0,0,144.55,225a67.91,67.91,0,0,0,.74-9.91c0-5.72-.31-11.44-.37-17.17q-.06-4.76-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08v.33l12.1,4.92Z"/><path class="cls-2" d="M214.83,248.1a16,16,0,0,1-10.07-1.56l-59.67-48.78c-.07-2.26-.13.11-.16-2.15q-.06-4.76-.1-9.51l2,1,5.2,2.69,2.41.41L182.3,195l31.12,5.3.94,32,.31,10.46.15,5.08v.33Z"/><path class="cls-3" d="M282,44.42l-.27.11-3.06,58.12a78.13,78.13,0,0,1-50.17,68.9h0L145,200.42c0-.73-5.31-6-12-12.41a91.08,91.08,0,0,1-28.29-64h0c-.94-42.31,32-78.28,74.34-79.57.8,0,1.6,0,2.41,0Z"/><path class="cls-4" d="M281.71,44.53l-.53,52.25a80.53,80.53,0,0,1-52.7,74.77h0V102.92S253.27,44.81,281.71,44.53Z"/><circle class="cls-1" cx="134.98" cy="160.42" r="17"/><circle class="cls-2" cx="140.38" cy="160.42" r="15.22"/><path class="cls-1" d="M140.6,144.38l4.38,57,66.44,38.82a19.77,19.77,0,0,0,24.68-9.86c9.56-19.58,24.9-50.5,22.88-62-3-17-11-23-11-23l3.33-19.94c1.25-7.51,2.86-15.35,1-22.9-2.13-8.66-8.67-12.35-14.05-18.82-14.16,18.24-37.44,28.55-57.77,39C170,128.2,140.6,144.38,140.6,144.38Z"/><path class="cls-5" d="M172.65,132.59a80.57,80.57,0,0,1,28.13-.79"/><path class="cls-5" d="M231.7,132.7a55,55,0,0,1,17.45-1.21"/><path class="cls-5" d="M208.67,171.18a3.4,3.4,0,0,0,2.11,6.38"/><ellipse class="cls-6" cx="186.71" cy="146.86" rx="3.27" ry="7.94" transform="translate(26.47 322.22) rotate(-85.77)"/><ellipse class="cls-6" cx="238.79" cy="146.14" rx="7.94" ry="3.27" transform="translate(-16.57 31.39) rotate(-7.27)"/><path class="cls-5" d="M226.73,160.83s.29,5.65,1.61,8.3c.57,1.14,1.46,2.1,2,3.24,2.22,4.33-1.36,5.24-4.81,5.24"/><path class="cls-6" d="M296.41,283.6a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09A44.69,44.69,0,0,0,144.55,225a28.66,28.66,0,0,0,2.22,1.94,95.14,95.14,0,0,0,19.82,11.26,99,99,0,0,0,10.46,3.69,93.52,93.52,0,0,0,33,3.49c1.54-.12,3.09-.27,4.63-.38l.15,5.08v.33l12.1,4.92Z"/><path class="cls-7" d="M192.16,189.07a1.85,1.85,0,0,1,2.68-.5c2.08,1.46,5.88,4.56,11.28,5.63,7.36,1.47,13.74-1.48,15.27.42.86,1.07-.19,2.37-2.2,4a19.74,19.74,0,0,1-14.86,3.69c-7.08-1.33-12.4-9.53-12.4-12.44A1.68,1.68,0,0,1,192.16,189.07Z"/></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#00214e;}.cls-2{fill:#e18477;}.cls-3{fill:#a76962;}.cls-4{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-5{fill:url(#linear-gradient);}</style><linearGradient id="linear-gradient" x1="69.93" y1="299.08" x2="296.41" y2="299.08" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#315676"/><stop offset="1" stop-color="#e1b9e0"/></linearGradient></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M278.48,125.53c0,7.87-8.9,14.47-10.84,21.73-2,7.52,2.34,17.67-1.46,24.25s-14.87,8-20.28,13.37-6.71,16.42-13.38,20.28-16.73-.54-24.24,1.47c-7.26,1.94-13.86,10.84-21.74,10.84s-14.47-8.9-21.73-10.84c-7.51-2-17.67,2.34-24.24-1.47s-8-14.86-13.38-20.28-16.42-6.7-20.28-13.37.54-16.73-1.46-24.25c-1.94-7.26-10.84-13.86-10.84-21.73s8.9-14.47,10.84-21.73c2-7.52-2.34-17.67,1.46-24.25s14.87-8,20.28-13.37,6.7-16.42,13.38-20.28,16.73.54,24.24-1.47c7.26-1.94,13.86-10.84,21.73-10.84s14.48,8.9,21.74,10.84c7.51,2,17.66-2.34,24.24,1.47s8,14.86,13.38,20.28,16.42,6.7,20.28,13.37-.55,16.73,1.46,24.25C269.58,111.06,278.48,117.66,278.48,125.53Z"/><circle class="cls-2" cx="134.82" cy="171.25" r="17"/><circle class="cls-3" cx="140.68" cy="170.25" r="16"/><path class="cls-2" d="M296.41,294.43a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09c4-7.55,5.32-15.89,5.38-24.39,0-5.72-.31-11.44-.37-17.17q-.06-4.75-.1-9.51l2,1L152,203l2.41.41,27.88,4.74,31.12,5.3.94,32,.46,15.54v.33l12.1,4.92Z"/><path class="cls-3" d="M214.69,257.38l-1.54.16a51.49,51.49,0,0,1-40.67-14.65L145.1,210.38c-.09-2.9-.2,0-.23-2.91q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32Z"/><path class="cls-2" d="M139.93,136.65c-.79,1-1.49,2.95-2.24,6.11-1.73,7.33,5.85,55.46,7.3,69.62l36.42,26.86a51.51,51.51,0,0,0,42.29,8.94c5.87-1.39,9.59-2.29,12.24-7,5.12-9,17.69-39.79,18.51-61.51.23-6.16.08-15.56-3.72-20.82-1.85-2.55-2.8-2.6-2.13-6.21s1.68-7.47,2.51-11.21c2.29-10.33,4.12-22,.81-32.28-1.76-5.5-4.87-9.14-9.29-12.67-4.72-3.78-6.67-3.6-9.5,2-1.91,3.8-3.83,7-7.7,9.16-5.61,3.11-9.43,1.09-15,.66-4.88-.37-4.36,3.4-5.43,7a16.87,16.87,0,0,1-6.77,9.25,18.53,18.53,0,0,1-20,.11,4.75,4.75,0,0,0-2.85-.89c-3.34.18-3.49,4.19-4.25,7.07-1.61,6-8.62,9.32-14.85,8.84C146.12,138.92,142.5,133.26,139.93,136.65Z"/><path class="cls-4" d="M220.19,154.54a57.27,57.27,0,0,0,2,11.48c1,3.31,2.52,5.37,4.52,8.22a18.39,18.39,0,0,1,1.79,3c2.64,5.94-.87,12.53-7.55,12.53h-4.13"/><path class="cls-4" d="M191.16,199.57a29.83,29.83,0,0,0,18.54,9.69"/><path class="cls-4" d="M172.49,143.42a80.57,80.57,0,0,1,28.13-.79"/><path class="cls-4" d="M231.54,143.53A55,55,0,0,1,249,142.32"/><path class="cls-5" d="M296.41,294.43a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38,23.55,16.76,55.69,27.33,83.49,14.82,6.62-3,12.7-7.84,16.3-14.06Z"/><path class="cls-4" d="M203.49,182.73a3.41,3.41,0,0,0,2.11,6.39"/><path class="cls-1" d="M187.17,152.93c6.11,0,6.11,9.38,0,9.43h-.27c-6.1-.05-6.1-9.38,0-9.43h.27Z"/><path class="cls-1" d="M237.44,152.27c5.66,0,5.66,8.7,0,8.75h-.26c-5.66-.05-5.66-8.7,0-8.75h.26Z"/></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#00214e;}.cls-2{fill:#e18477;}.cls-3{fill:#a76962;}.cls-4{fill:#ff2609;}.cls-5{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-6{fill:#fff;}</style></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M218.31,54.07c-12-4-24.85-7.28-37.54-5.85a115,115,0,0,0-55.55,22C93.33,94,85.13,137,71.81,172.53c-5,13.33-10,26.79-12.17,40.87-6.32,41.77,21.57,56.83,57.72,67.09,45.55,12.93,95.4,9.07,139.81-6.53,37.83-13.29,53-45.33,45-83.6-4-18.88-11.54-36.8-19.14-54.55C268.57,102.13,254.9,66.42,218.31,54.07Z"/><path class="cls-2" d="M307.6,280.15a184.58,184.58,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34l1.12-.7c.4-.25.79-.51,1.18-.78A46.54,46.54,0,0,0,151.1,236c4-7.55,5.32-15.88,5.38-24.38,0-5.73-.31-11.44-.37-17.18q-.06-4.75-.1-9.51l2,1,5.2,2.69,30.29,5.15,31.12,5.3.94,32L226,247l11.47,4.67,9,3.64Z"/><path class="cls-3" d="M225.51,227.76c-2.72,1.68-5.29,2.47-7.54,2.23-14.79-1.59-43.64-13.18-61.8-34.63q0-1.58-.06-3.15-.06-4.76-.1-9.51l2,1,5.2,2.69,30.29,5.15,31.12,5.3Z"/><path class="cls-4" d="M307.6,280.15a184.58,184.58,0,0,1-226.48-1l48.66-22.81q2.25-1.06,4.35-2.33c23.68,17.41,56.64,28.74,85.06,15.95,8.06-3.62,15.33-10,18.29-18.31l9,3.64Z"/><circle class="cls-2" cx="130.67" cy="152.96" r="17"/><circle class="cls-3" cx="137.67" cy="150.96" r="17"/><path class="cls-2" d="M217.67,217.09c-20.64,3.86-72-16.78-83.74-57.46a98.14,98.14,0,0,1-3.9-26.07c0-1.73,0-3.45.08-5.15,1.28-28.34,15.78-52,38.69-58.65,1.32-.38,2.65-.7,4-1a47.86,47.86,0,0,1,24,1.68,66.87,66.87,0,0,1,26.32,16.67,84.09,84.09,0,0,1,8.52,10,96.4,96.4,0,0,1,14.54,30.05C258,167.9,233.08,214.22,217.67,217.09Z"/><path class="cls-5" d="M213.32,128.89a58,58,0,0,0,2,11.49c1,3.31,2.52,5.36,4.52,8.22a17.7,17.7,0,0,1,1.79,3c2.65,5.94-.86,12.53-7.54,12.53H210"/><path class="cls-5" d="M195.34,156.45a3.4,3.4,0,0,0,2.11,6.38"/><path class="cls-5" d="M218.05,116.61a31.19,31.19,0,0,1,22.85-2.16"/><path class="cls-5" d="M165.58,119.5a36.76,36.76,0,0,1,31.23-1"/><path class="cls-1" d="M210.21,64.69c-9.92-1.93-21.82-1.59-31.55-1.47-5.31.06-10.69.4-15.75,2-14,4.51-23.11,18-28.79,31.6-1.45,3.47-16.44,38-16.11,38.07,9.6,3.12,19.88-1.22,28.89-5.75,26.74-13.47,55.12-35.12,66.62-63.74C212.45,65.16,211.34,64.91,210.21,64.69Z"/><path class="cls-6" d="M185,172.55a1.86,1.86,0,0,1,2.68-.5c2.08,1.46,5.88,4.56,11.28,5.64,7.36,1.46,13.75-1.48,15.27.41.86,1.07-.19,2.38-2.2,4.05a19.69,19.69,0,0,1-14.86,3.69c-7.08-1.33-12.4-9.53-12.4-12.43A1.72,1.72,0,0,1,185,172.55Z"/><path class="cls-1" d="M179.41,130.89c6.1.05,6.1,9.37,0,9.42h-.27c-6.1-.05-6.1-9.37,0-9.42h.27Z"/><path class="cls-1" d="M229.67,130.23c5.67,0,5.67,8.7,0,8.74h-.25c-5.67,0-5.67-8.7,0-8.74h.25Z"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#f2d4cf;}.cls-2{fill:#f2a196;}.cls-3{fill:#e88870;}.cls-4,.cls-5{fill:none;stroke-miterlimit:10;}.cls-4{stroke:#fff;}.cls-5{stroke:#00214e;}.cls-6{fill:#00214e;}.cls-7{fill:#fff;}</style></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M204.73,256a388.83,388.83,0,0,1-55.49-9.31c-37-9.22-72.77-25.51-101-51.14,24.9-26,38.47-41.05,58-71.26,14.49-22.42,32.29-61.84,59.13-72,42.07-15.93,98.88-.45,110.84,46.87,5.05,20,5.24,40.92,2.38,61.26-1.3,9.17-10.58,98.69-15.9,98.6C243.36,258.68,224,257.89,204.73,256Z"/><path class="cls-2" d="M318.09,281.81a184.56,184.56,0,0,1-226.48-1L140.27,258a47.68,47.68,0,0,0,4.35-2.34l1.12-.7c.4-.25.79-.51,1.18-.78a46.54,46.54,0,0,0,14.67-16.47c4-7.55,5.32-15.89,5.38-24.39,0-5.72-.31-11.44-.37-17.17q-.06-4.75-.1-9.51l2,1,5.2,2.69L204,195.49l31.12,5.3.94,32,.47,15.87L248,253.3l9,3.64Z"/><path class="cls-3" d="M235.91,227.67c-2.72,1.68-5.29,2.47-7.54,2.23-14.79-1.59-43.64-13.18-61.8-34.63q0-1.58-.06-3.15-.06-4.76-.1-9.51l2,1,5.2,2.69,30.29,5.15,31.12,5.3Z"/><circle class="cls-2" cx="141.5" cy="154.63" r="17"/><circle class="cls-3" cx="147.5" cy="152.63" r="17"/><path class="cls-2" d="M257,128.88c11.74,40.69-13.21,89.87-28.54,89.87-21,0-72-16.77-83.74-57.46s3.87-80.92,34.87-89.87S245.29,88.2,257,128.88Z"/><circle class="cls-4" cx="193.86" cy="142.13" r="19"/><circle class="cls-4" cx="247" cy="139.13" r="19"/><path class="cls-1" d="M218.33,74.8c-4.3,18.7-13.69,34.58-30.86,46.14-18.52,12.83-39.8,14.63-61.13,18.86.54-13.11.83-27.15,7.6-38.85A79.46,79.46,0,0,1,166.25,70.6c14.8-7.66,37.71-15.16,54.35-9.85A112.5,112.5,0,0,1,218.33,74.8Z"/><path class="cls-5" d="M220.08,130.78c-.08.35,7.92,32.35,7.92,32.35H215.5"/><path class="cls-5" d="M231.53,120.57a31.21,31.21,0,0,1,22.86-2.16"/><path class="cls-5" d="M176.42,124.27a36.76,36.76,0,0,1,31.23-1"/><line class="cls-4" x1="212.86" y1="142.13" x2="228" y2="140.84"/><path class="cls-6" d="M318.09,281.81a184.56,184.56,0,0,1-226.48-1L140.27,258a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,28.66,28.66,0,0,0,2.22,1.94,95.14,95.14,0,0,0,19.82,11.26,99,99,0,0,0,10.46,3.69,93.52,93.52,0,0,0,33,3.49c1.54-.12,3.09-.27,4.63-.38l.15,5.08v.33l12.1,4.92Z"/><path class="cls-7" d="M194.09,174.42a1.85,1.85,0,0,1,2.68-.51c2.08,1.47,5.88,4.56,11.28,5.64,7.36,1.46,13.74-1.48,15.27.42.86,1.07-.19,2.37-2.2,4.05a19.74,19.74,0,0,1-14.86,3.68c-7.08-1.32-12.4-9.53-12.4-12.43A1.66,1.66,0,0,1,194.09,174.42Z"/><path class="cls-6" d="M194.82,135.78c6.1.05,6.1,9.38,0,9.43h-.28c-6.1-.05-6.1-9.38,0-9.43h.28Z"/><path class="cls-6" d="M245.08,135.12c5.66,0,5.66,8.7,0,8.75h-.26c-5.66-.05-5.66-8.7,0-8.75h.26Z"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#f2a196;}.cls-2{fill:#e88870;}.cls-3{fill:#ff2609;}.cls-4{fill:#f2d4cf;}.cls-5{fill:#daaea8;}.cls-6{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-7{fill:#fff;}.cls-8{fill:#00214e;}</style></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M296.41,291.18a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,67.91,67.91,0,0,0,.74-9.91c0-5.72-.31-11.44-.37-17.17q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08V258l12.1,4.92Z"/><path class="cls-2" d="M214.71,255.63a16,16,0,0,1-10.07-1.56L145,205.29c-.07-2.26-.13.11-.16-2.15q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08v.33Z"/><path class="cls-3" d="M296.41,291.18a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38,23.55,16.76,55.69,27.33,83.49,14.82,6.62-3,12.7-7.84,16.3-14.06Z"/><path class="cls-4" d="M278.51,90.9c-.09.59-.2,1.17-.33,1.75a32.08,32.08,0,0,1-3.31,8.49l-.08.14c-.57,1-1.18,2-1.84,3a74.32,74.32,0,0,1-5.72,7.35L266,113c-.83.93-1.67,1.84-2.51,2.74a6.29,6.29,0,0,1,1.93-.11,4.21,4.21,0,0,1,.71.12c3.19.66,5.92,3.63,6.77,7,.05.22.1.45.14.67.79,4.48-1,9-3.21,13-3.87,7.08-9.45,11.79-14.36,17.94-3.68,4.58-5.72,10-9.73,14.38l-.3.33-.24.24c-10.6,10.92-27.17,13.51-41,18.23-5,1.72-59.22,17.12-59.22,20.48,0-.73-5.31-6-12-12.41-24-22.79-31.89-58-17.61-88.2,15.35-32.5,50.21-55.69,83.41-66.83,10.38-3.48,22.16-5.82,32-1s14.74,19.77,6.58,27.07a26.16,26.16,0,0,1,17.93-5.21,24.46,24.46,0,0,1,15.72,7.07,26.83,26.83,0,0,1,5.58,8.18,28.64,28.64,0,0,1,1.37,3.9A24.94,24.94,0,0,1,278.51,90.9Z"/><path class="cls-5" d="M278.51,90.9c-.09.59-.2,1.17-.33,1.75a32.08,32.08,0,0,1-3.31,8.49l-.08.14c-.57,1-1.18,2-1.84,3a74.32,74.32,0,0,1-5.72,7.35L266,113c-.83.93-1.67,1.84-2.51,2.74a6.29,6.29,0,0,1,1.93-.11,4.21,4.21,0,0,1,.71.12c3.19.66,5.92,3.63,6.77,7,.05.22.1.45.14.67.79,4.48-1,9-3.21,13-3.87,7.08-9.45,11.79-14.36,17.94-3.68,4.58-5.72,10-9.73,14.38l-.3.33-.24.24a39.31,39.31,0,0,1-7.44-18.45c-1.71-13.84-.67-28.92-1.14-42.93-.16-4.89-.45-10.72,1.12-15.36a14.35,14.35,0,0,1,1.71-3.24,59.49,59.49,0,0,1,6.27-8.37,22,22,0,0,1,9.68-6,32.54,32.54,0,0,1,6.11-1.12,28.37,28.37,0,0,1,6.64.13,25,25,0,0,1,8.38,2.77,28.64,28.64,0,0,1,1.37,3.9A24.94,24.94,0,0,1,278.51,90.9Z"/><circle class="cls-1" cx="134.98" cy="168" r="17"/><circle class="cls-2" cx="140.38" cy="168" r="15.22"/><path class="cls-1" d="M140.6,152,145,209l66.44,38.82A19.76,19.76,0,0,0,236.1,238c9.56-19.58,24.9-50.49,22.88-62-3-17-11-23-11-23l3.33-19.94c1.25-7.51,2.86-15.35,1-22.9-2.13-8.65-8.67-12.35-14.05-18.82-14.16,18.24-37.44,28.55-57.77,39C170,135.78,140.6,152,140.6,152Z"/><path class="cls-6" d="M215.13,147.1c-.08.34,13.36,36.12,13.36,36.12l-17.94.88"/><path class="cls-6" d="M172.65,140.17a80.57,80.57,0,0,1,28.13-.79"/><path class="cls-6" d="M231.7,140.28a55.64,55.64,0,0,1,17.45-1.21"/><path class="cls-7" d="M192.17,194.1a1.86,1.86,0,0,1,2.68-.5c2.08,1.46,5.88,4.56,11.28,5.63,7.36,1.47,13.74-1.48,15.27.42.86,1.07-.19,2.38-2.2,4a19.69,19.69,0,0,1-14.86,3.69c-7.08-1.33-12.4-9.53-12.4-12.44A1.68,1.68,0,0,1,192.17,194.1Z"/><path class="cls-8" d="M189.53,151.64c6.1.05,6.1,9.37,0,9.42h-.28c-6.1-.05-6.1-9.37,0-9.42h.28Z"/><path class="cls-8" d="M239.79,151c5.66,0,5.66,8.7,0,8.74h-.25c-5.67,0-5.67-8.7,0-8.74h.25Z"/></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:url(#linear-gradient-2);}.cls-3{fill:#845161;}.cls-4{fill:#69303a;}.cls-5{fill:url(#linear-gradient-3);}.cls-6,.cls-8{fill:none;stroke-miterlimit:10;}.cls-6{stroke:#fff;}.cls-7{fill:url(#linear-gradient-4);}.cls-8{stroke:#00214e;}.cls-9{fill:#00214e;}.cls-10{fill:#fff;}</style><linearGradient id="linear-gradient" x1="-1177.82" y1="131.56" x2="-1082.82" y2="131.56" gradientTransform="translate(1276.99 198.93) rotate(13.12)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#16243f"/><stop offset="1" stop-color="#6878b1"/></linearGradient><linearGradient id="linear-gradient-2" x1="98.71" y1="168.67" x2="260.69" y2="168.67" gradientTransform="matrix(1, 0, 0, 1, 0, 0)" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-3" x1="58.45" y1="339.99" x2="265.95" y2="282.46" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#315676"/><stop offset="1" stop-color="#e1b9e0"/></linearGradient><linearGradient id="linear-gradient-4" x1="111.94" y1="98.26" x2="210.94" y2="139.54" gradientTransform="matrix(1, 0, 0, 1, 0, 0)" xlink:href="#linear-gradient"/></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M192.58,81.19c-1.37,5.88-9.2,8.78-12.51,13.39-3.43,4.79-3.74,13.1-8.66,16.16s-12.52-.34-18.32.62c-5.61.93-11.68,6.68-17.55,5.31s-8.78-9.21-13.39-12.52c-4.79-3.43-13.1-3.74-16.16-8.66s.34-12.51-.62-18.32c-.93-5.61-6.68-11.67-5.31-17.55s9.21-8.78,12.52-13.39c3.43-4.79,3.74-13.1,8.66-16.16s12.51.34,18.32-.62c5.61-.93,11.67-6.67,17.55-5.3s8.78,9.2,13.39,12.51c4.79,3.43,13.1,3.74,16.16,8.66s-.34,12.52.62,18.33C188.21,69.25,194,75.32,192.58,81.19Z"/><path class="cls-2" d="M210.4,216c-2.52,3-4.7,6.28-7.26,9.23-13.62,15.66-43.3,5.37-58.06-4-10.83-6.85-19-17.18-26-27.94-8.6-13.27-15.79-27.7-18.9-43.2C85.93,79.1,177,48.22,228.07,83.07c19,13,36.18,42.16,32,65.53-2.13,11.86-10.57,22.53-9.67,34.54,1,12.94,12.7,25.27,7.8,37.29-1.92,4.7-6.05,8.06-9.41,11.87-4.53,5.15-7.83,11.59-8.23,18.43s2.45,14,8.1,17.92c-13.93-1.86-22.52-18.54-18.91-32.12,1.18-4.46,3.35-8.62,4.3-13.14s.4-9.77-3.05-12.83c-4.43-3.93-11.65-2.44-16.31,1.22A30.41,30.41,0,0,0,210.4,216Z"/><path class="cls-3" d="M296.41,304.08a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34l1.12-.7c.4-.25.79-.51,1.18-.78A46.54,46.54,0,0,0,139.91,260c4-7.55,5.32-15.89,5.38-24.39,0-5.72-.31-11.44-.37-17.17q-.06-4.75-.1-9.51l.2.1,1.78.92,5.2,2.69,30.29,5.15,31.12,5.3.72,24.47.22,7.5.47,15.87,11.47,4.67,9,3.64Z"/><path class="cls-4" d="M214.13,247.53a12,12,0,0,1-7.22,2c-14.79-1.59-43.64-13.18-61.8-34.63q0-1.58-.06-3.15l0-2.79,1.78.92,5.2,2.69,30.29,5.15,31.12,5.3Z"/><path class="cls-5" d="M296.41,304.09a184.56,184.56,0,0,1-226.48-1l48.66-22.81a49.22,49.22,0,0,0,4.36-2.34c23.67,17.41,56.63,28.75,85.05,16,8.06-3.62,15.33-10.05,18.29-18.31l9,3.64Z"/><circle class="cls-3" cx="119.82" cy="176.91" r="17"/><circle class="cls-4" cx="125.82" cy="174.91" r="17"/><path class="cls-3" d="M235.36,151.16C247.1,191.85,222.16,241,206.82,241c-21,0-72-16.77-83.73-57.46S127,102.65,158,93.7,223.62,110.48,235.36,151.16Z"/><ellipse class="cls-6" cx="170.38" cy="164.41" rx="19" ry="11.84"/><ellipse class="cls-6" cx="225.18" cy="161.85" rx="19" ry="11.84"/><path class="cls-7" d="M200.54,101.22c-2.4,4.74-7.4,8.86-10.37,13.71-3.89,6.35-6.83,13.25-10.13,19.92-2.45,5-5.18,9.94-9.33,13.61s-10,5.84-15.31,4.31c-3.64-1.05-6.59-3.65-9.85-5.58s-7.43-3.22-10.77-1.42c-4.92,2.64-4.85,9.81-8.37,14.14-8.07,9.93-22.88-3.45-24.67-12.12-2.6-12.67,7.79-23.26,15.35-32,6.31-7.3,14.83-18.44,24.73-20.87.18,0,58-23,58-23,.52,7.73,3.64,19.16,1.78,26.56A13,13,0,0,1,200.54,101.22Z"/><path class="cls-8" d="M198.4,153.06c-.05.24,5.54,15.88,8.93,25.32a5.26,5.26,0,0,1-4.94,7h-3.64"/><path class="cls-8" d="M209.86,142.85a31.18,31.18,0,0,1,22.85-2.16"/><path class="cls-8" d="M154.75,146.55a36.72,36.72,0,0,1,31.23-1"/><line class="cls-6" x1="189.38" y1="164.41" x2="206.32" y2="163.11"/><path class="cls-9" d="M172.92,157.63c6.1,0,6.1,9.37,0,9.42h-.27c-6.11-.05-6.11-9.38,0-9.42h.27Z"/><path class="cls-9" d="M223.18,154.54c5.66.05,5.66,8.7,0,8.75h-.25c-5.67,0-5.67-8.7,0-8.75h.25Z"/><path class="cls-8" d="M191.3,179.65a3.38,3.38,0,0,0-3,3.15,2.65,2.65,0,0,0,3.24,2.5"/><path class="cls-10" d="M173.65,194.77a1.86,1.86,0,0,1,2.68-.5c2.08,1.46,5.88,4.56,11.28,5.63,7.36,1.47,13.75-1.48,15.27.42.86,1.07-.19,2.37-2.2,4.05a19.74,19.74,0,0,1-14.86,3.69c-7.08-1.33-12.4-9.53-12.4-12.44A1.68,1.68,0,0,1,173.65,194.77Z"/></svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#00214e;}.cls-2{fill:#845161;}.cls-3{fill:#69303a;}.cls-4{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-5{fill:#ff2609;}</style></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M118.72,166.8c-1.57-3.12-3.09-6.28-4.55-9.45-2.86-6.2-5.54-12.55-6.74-19.27-3.89-21.68,7.32-45.32,23.41-59.22,22.9-19.77,55.34-27.24,80.57-44.78a34.59,34.59,0,0,1-12.9,21.76c11.81-9.1,47,5.89,58,11.51a116.3,116.3,0,0,1,44.94,40.08,73.87,73.87,0,0,0-37.51-4.8c9.88,9.57,20.16,19.78,23.9,33C270.11,122.85,241.8,129,231,148.05c-6.93,12.2-6.83,27.06-11,40.47-4.4,14.2-16.27,23.22-30.23,27-10.52,2.88-31.22,4.18-40.75-2-2.89-1.87-5-4.73-6.94-7.55A318.87,318.87,0,0,1,118.72,166.8Z"/><circle class="cls-2" cx="129.75" cy="170.77" r="17"/><circle class="cls-3" cx="135.61" cy="169.77" r="16"/><path class="cls-2" d="M291.34,294a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09c4-7.55,5.32-15.89,5.38-24.39,0-2.81-.06-5.63-.14-8.45s-.2-5.81-.23-8.72q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.39,13.29.07,2.25v.33l12.1,4.92Z"/><path class="cls-3" d="M209.67,258.19l-1.54.16a51.49,51.49,0,0,1-40.67-14.65l-27.38-33.34c-.09-2.9-.2.83-.23-2.08q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32Z"/><path class="cls-2" d="M138.41,139.06a17.1,17.1,0,0,0-5.64,10.69c-2.09,19.53,5.14,42.58,7.15,62.14l36.42,26.86a51.48,51.48,0,0,0,42.29,8.94c5.87-1.39,9.59-2.29,12.24-7,5.12-9,17.69-39.79,18.51-61.51.23-6.17.08-15.57-3.72-20.82-1.85-2.55-2.8-2.61-2.13-6.21.69-3.76,1.68-7.48,2.51-11.21a52,52,0,0,0,1-16.45c-.55-5-.53-9.44-1.06-14.53-.26-2.47-1.36-13.28-1.36-13.28-6.35,9.56-17.81,14.58-28.41,17.88-14.42,4.48-29.43,6.67-44.05,10.43C162.47,127.52,146.8,131.12,138.41,139.06Z"/><path class="cls-1" d="M181.62,154.13c6.1.05,6.1,9.38,0,9.43h-.27c-6.11-.05-6.11-9.38,0-9.43h.27Z"/><path class="cls-1" d="M234.31,151.28c5.67,0,5.67,8.7,0,8.75h-.25c-5.66-.05-5.66-8.71,0-8.75h.25Z"/><path class="cls-4" d="M186.09,199.08a29.76,29.76,0,0,0,18.54,9.69"/><path class="cls-4" d="M167.42,142.94a80.34,80.34,0,0,1,28.13-.8"/><path class="cls-4" d="M226.47,143a55.64,55.64,0,0,1,17.45-1.21"/><path class="cls-5" d="M291.34,294a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38,23.55,16.76,55.69,27.33,83.49,14.82,6.62-3,12.7-7.84,16.3-14.06Z"/><path class="cls-4" d="M198.42,182.25a3.4,3.4,0,0,0,2.11,6.38"/><path class="cls-4" d="M213.83,153.21c2.49,9.55,4.56,19,6.93,28.57a7,7,0,0,1,.3,2.72c-.43,2.75-3.7,3.88-6.42,4.47"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:#e18477;}.cls-3{fill:#a76962;}.cls-4{fill:#00214e;}.cls-5{fill:url(#linear-gradient-2);}.cls-6{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-7{fill:url(#linear-gradient-3);}.cls-8{fill:#ff2609;}.cls-9{fill:#f2d4cf;}.cls-10{fill:#fff;}</style><linearGradient id="linear-gradient" x1="87.83" y1="312.28" x2="245.56" y2="104.06" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#16243f"/><stop offset="1" stop-color="#6878b1"/></linearGradient><linearGradient id="linear-gradient-2" x1="103.72" y1="136.5" x2="185.85" y2="68.22" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-3" x1="69.93" y1="271.9" x2="296.41" y2="271.9" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#315676"/><stop offset="1" stop-color="#e1b9e0"/></linearGradient></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M188.53,287.7c-16.55,1.06-32.6.47-49,.19-18.65,0-40.88,4.86-54.85-11.39-9.66-11.24-8.5-28.29-3.52-42.25,3.51-9.83,8.72-19.88,6.78-30.14-1.47-7.77-6.85-14.22-9.24-21.75-2.33-7.34-1.67-16.32,2.31-23,3.63-6.12,9.47-9.29,10.68-17.05.66-4.26-.52-8.55-1.21-12.81-5.65-34.91,22.61-59.35,50.46-74,17.08-9,37.59-13.12,56-5.54a13.29,13.29,0,0,0,4.32,1.29,21.77,21.77,0,0,0,4.08-.56c22.9-3.38,52.56,37.46,46.24,58.17-1.92,6.27-4.94,12.77-3.24,19.11,2.51,9.34,14.29,14.3,15.75,23.86,1.58,10.31-9.95,19.54-7.68,29.73,1.34,6,7.05,9.92,10.67,14.93a24.17,24.17,0,0,1,4.47,13,23.68,23.68,0,0,1-1.15,8.52c-2.7,8.15-9.86,15.56-8.07,24,2.12,10,15,13.54,14.33,24.92-.37,6.08-5.7,10.79-11.33,13.1a76.62,76.62,0,0,1-12.48,3.54c-3.14.7-5.91.07-9.05.39-8.74.89-17.36,2.26-26.16,2.76C208,287.2,198.23,287.08,188.53,287.7Z"/><path class="cls-2" d="M296.41,282a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34l1.12-.7c.4-.25.79-.51,1.18-.78a46.54,46.54,0,0,0,14.67-16.47c4-7.55,5.32-15.89,5.38-24.39,0-5.72-.31-11.44-.37-17.17q-.06-4.76-.1-9.51l2,1,5.2,2.69,30.29,5.15,31.12,5.3.94,32,.47,15.87,11.47,4.67,9,3.64Z"/><path class="cls-3" d="M214.32,224.69c-2.72,1.68-5.29,2.47-7.54,2.23-14.79-1.59-43.64-13.18-61.8-34.63q0-1.57-.06-3.15-.06-4.75-.1-9.51l2,1,5.2,2.69,30.29,5.15,31.12,5.3Z"/><circle class="cls-2" cx="119.82" cy="154.58" r="17"/><circle class="cls-3" cx="125.82" cy="152.58" r="17"/><path class="cls-2" d="M235.36,129.11C247.1,169.8,222.16,219,206.82,219c-21,0-72-16.77-83.73-57.46S127,80.6,158,71.65,223.61,88.43,235.36,129.11Z"/><path class="cls-4" d="M169.92,136.18c6.1,0,6.1,9.38,0,9.42h-.28c-6.1,0-6.1-9.37,0-9.42h.28Z"/><path class="cls-4" d="M220,134.79c5.67,0,5.67,8.7,0,8.75h-.25c-5.66,0-5.66-8.71,0-8.75H220Z"/><path class="cls-5" d="M198.08,79.8c-.12.27-.24.55-.37.83a67,67,0,0,1-11.44,16.91c-9.25,10.2-20.84,18.16-32.86,24.77a192.39,192.39,0,0,1-21.48,10.54c-10.63,4.23-19.64,6.34-19.93,6.64-.93-11.89-7.43-36.83,24.82-61.25,26-19.67,63.69-18.13,63.69-18.13C200.39,67.52,201,73,198.08,79.8Z"/><path class="cls-6" d="M198.4,131c-.08.35,8.36,36.41,8.36,36.41h-12.5"/><path class="cls-6" d="M209.86,120.8a31.18,31.18,0,0,1,22.85-2.16"/><path class="cls-6" d="M154.75,124.5a36.68,36.68,0,0,1,31.23-1"/><path class="cls-7" d="M296.41,282a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,28.66,28.66,0,0,0,2.22,1.94,95.14,95.14,0,0,0,19.82,11.26,99,99,0,0,0,10.46,3.69,93.52,93.52,0,0,0,33,3.49c1.54-.12,3.09-.27,4.63-.38l.15,5.08v.33l12.1,4.92Z"/><rect class="cls-8" x="125.22" y="86.33" width="28.06" height="9.73" rx="4.86" transform="translate(41.79 -43.74) rotate(20.94)"/><rect class="cls-9" x="118.57" y="101.17" width="28.06" height="9.73" rx="4.86" transform="translate(46.65 -40.39) rotate(20.94)"/><path class="cls-10" d="M172.41,174.65a1.85,1.85,0,0,1,2.68-.51c2.08,1.47,5.88,4.56,11.28,5.64,7.36,1.46,13.75-1.48,15.27.42.86,1.07-.19,2.37-2.2,4.05a19.74,19.74,0,0,1-14.86,3.68c-7.08-1.32-12.4-9.53-12.4-12.43A1.66,1.66,0,0,1,172.41,174.65Z"/></svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#de8276;}.cls-2{fill:#a76962;}.cls-3{fill:url(#linear-gradient);}.cls-4{fill:url(#linear-gradient-2);}.cls-5{fill:#e18477;}.cls-6{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-7{fill:#00214e;}</style><linearGradient id="linear-gradient" x1="108.28" y1="122.42" x2="268.26" y2="122.42" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#16243f"/><stop offset="1" stop-color="#6878b1"/></linearGradient><linearGradient id="linear-gradient-2" x1="219.28" y1="72.92" x2="269.19" y2="152.46" xlink:href="#linear-gradient"/></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M296.41,282a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,67.91,67.91,0,0,0,.74-9.91c0-5.72-.31-11.44-.37-17.17q-.06-4.76-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08v.33l12.1,4.92Z"/><path class="cls-2" d="M214.63,246.85a16,16,0,0,1-10.07-1.56l-59.67-48.78c-.07-2.26-.13.11-.16-2.15q-.06-4.76-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08v.33Z"/><path class="cls-3" d="M245.43,159.9a35.93,35.93,0,0,1-5.09,4.41c-10.4,7.53-24.28,10-36.14,14.06-5,1.71-59.22,17.12-59.22,20.47,0-.73-5.31-6-12-12.4a79.91,79.91,0,0,1-19.56-85.74c10.91-28.67,45.69-48.43,74.82-53,13.87-2.17,30.33-3.38,43.14,3.27,6.55,3.41,12,8.38,17,13.89q2.34,2.61,4.54,5.33c.63.76,1.25,1.52,1.86,2.29C277.55,101.08,269.48,134.63,245.43,159.9Z"/><path class="cls-4" d="M245.43,159.9a35.93,35.93,0,0,1-5.09,4.41,22.42,22.42,0,0,1-1.15-2.3c-2.64-6-4-12.51-5-19A275.93,275.93,0,0,1,231,114.49c-.91-15.34-7.46-22.95,5.57-34.91a43,43,0,0,1,16.35-9.38c.63.76,1.25,1.52,1.86,2.29C277.55,101.08,269.48,134.63,245.43,159.9Z"/><circle class="cls-5" cx="134.98" cy="158.85" r="17"/><circle class="cls-2" cx="140.38" cy="158.85" r="15.22"/><path class="cls-1" d="M141.65,142.73c.83,10.86.8,24.12,1.09,28q1.13,14.59,2.24,29.17l66.44,38.81a19.76,19.76,0,0,0,24.68-9.85c9.56-19.58,24.9-50.5,22.88-62-3-17-11-23-11-23l3.33-19.94c3.37-20.27-3.58-39.46-27.26-41.68-5-.46-10.57.49-13.54,4.48-8,10.76-3.39,24-15.4,34C180.53,132.75,148,138,140.38,128.29,140.38,128.29,141.08,135.16,141.65,142.73Z"/><path class="cls-6" d="M191.51,185.15a29.78,29.78,0,0,0,18.54,9.69"/><path class="cls-6" d="M215.13,137.94c-.08.35,13.36,36.13,13.36,36.13l-17.94.87"/><path class="cls-6" d="M172.65,131a80.58,80.58,0,0,1,28.13-.8"/><path class="cls-6" d="M231.7,131.13a55,55,0,0,1,17.45-1.21"/><path class="cls-7" d="M296.41,282a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,28.66,28.66,0,0,0,2.22,1.94,95.14,95.14,0,0,0,19.82,11.26,99,99,0,0,0,10.46,3.69,93.52,93.52,0,0,0,33,3.49c1.54-.12,3.09-.27,4.63-.38l.15,5.08v.33l12.1,4.92Z"/><path class="cls-7" d="M186.28,142.24c6.1,0,6.1,9.38,0,9.43H186c-6.11,0-6.11-9.38,0-9.43h.27Z"/><path class="cls-7" d="M236.41,140.85c5.66.05,5.66,8.7,0,8.75h-.26c-5.66,0-5.66-8.7,0-8.75h.26Z"/></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:#e18477;}.cls-3{fill:#a76962;}.cls-4{fill:#f2d4cf;}.cls-5{fill:url(#linear-gradient-2);}.cls-6{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-7{fill:#00214e;}</style><linearGradient id="linear-gradient" x1="69.46" y1="135.08" x2="265.13" y2="135.08" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#315676"/><stop offset="1" stop-color="#e1b9e0"/></linearGradient><linearGradient id="linear-gradient-2" x1="52.67" y1="156.37" x2="257.22" y2="40.38" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#315676"/><stop offset="0.08" stop-color="#375979"/><stop offset="0.18" stop-color="#496383"/><stop offset="0.2" stop-color="#4d6585"/><stop offset="0.29" stop-color="#546989"/><stop offset="0.43" stop-color="#677495"/><stop offset="0.6" stop-color="#8786a9"/><stop offset="0.78" stop-color="#b39fc4"/><stop offset="0.95" stop-color="#e1b9e0"/></linearGradient></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M69.46,224.32s19-105.26,27.23-125.44c12.82-31.53,43.39-50.33,76.92-53,24.51-1.94,47.64,8.38,60.25,29.37,16.1,26.81,31.27,149.22,31.27,149.22Z"/><path class="cls-2" d="M296.88,282.36a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34l1.12-.7c.4-.25.79-.51,1.18-.78a46.54,46.54,0,0,0,14.67-16.47c4-7.55,5.32-15.89,5.38-24.39,0-5.72-.31-11.44-.37-17.17q-.06-4.75-.1-9.51h0l2,1,5.2,2.69L182.76,196l31.12,5.3.7,23.8.24,8.17.47,15.87,11.47,4.67,9,3.64Z"/><path class="cls-3" d="M214.58,225.14c-2.67,1.63-5.19,2.39-7.4,2.15-14.79-1.59-43.64-13.18-61.8-34.63q0-1.57-.06-3.15c0-.78,0-1.55,0-2.33l2,1,5.2,2.69L182.76,196l31.12,5.3Z"/><path class="cls-4" d="M296.89,282.36a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34c23.68,17.41,56.64,28.75,85.06,16,8.06-3.62,15.33-10.05,18.29-18.31l9,3.64Z"/><circle class="cls-2" cx="118.62" cy="153.9" r="17"/><circle class="cls-3" cx="124.62" cy="151.9" r="17"/><path class="cls-2" d="M234.15,128.16C245.9,168.84,221,218,205.62,218c-21,0-72-16.78-83.74-57.46s3.87-80.92,34.87-89.87S222.41,87.47,234.15,128.16Z"/><path class="cls-5" d="M199.29,78.62a32.79,32.79,0,0,1-1.66,5.56c-7.52,18.57-19.12,34.58-36,45.7-20,13.16-39.6,12.58-62,15.8,1.27-8.18,4.14-16,4.39-24.57.4-13.42,3.43-18.54,11.89-28.34,6.3-7.29,14.83-18.43,24.73-20.87.17,0,58-23,58-23C199.28,58.89,201.24,69.12,199.29,78.62Z"/><path class="cls-6" d="M207,121.54a31.13,31.13,0,0,1,22.85-2.15"/><path class="cls-6" d="M154.53,124.44a36.75,36.75,0,0,1,31.23-1"/><path class="cls-6" d="M204.21,148.5s.29,5.66,1.61,8.31c.58,1.14,1.46,2.1,2,3.23,2.22,4.34-1.36,5.25-4.81,5.25"/><path class="cls-6" d="M190.28,158.38a3.4,3.4,0,0,0,2.11,6.38"/><path class="cls-6" d="M174.38,177.51a29.78,29.78,0,0,0,18.54,9.69"/><ellipse class="cls-7" cx="171.02" cy="138.97" rx="3.27" ry="7.94" transform="translate(19.8 299.26) rotate(-85.77)"/><ellipse class="cls-7" cx="222.52" cy="137.33" rx="7.94" ry="3.27" transform="translate(-18.5 35.92) rotate(-8.86)"/></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#e18477;}.cls-2{fill:#a76962;}.cls-3{fill:url(#linear-gradient);}.cls-4{fill:url(#linear-gradient-2);}.cls-5,.cls-7{fill:none;stroke-miterlimit:10;}.cls-5{stroke:#00214e;}.cls-6{fill:#00214e;}.cls-7{stroke:#fff;}.cls-8{fill:#fff;}</style><linearGradient id="linear-gradient" x1="140.91" y1="159.12" x2="288.5" y2="36.28" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#16243f"/><stop offset="1" stop-color="#6878b1"/></linearGradient><linearGradient id="linear-gradient-2" x1="228.69" y1="124.59" x2="298.39" y2="124.59" xlink:href="#linear-gradient"/></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M294.43,285.76a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,67.91,67.91,0,0,0,.74-9.91c0-5.72-.31-11.44-.37-17.17q-.06-4.76-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08v.33l12.1,4.92Z"/><path class="cls-2" d="M212.81,251.37a16,16,0,0,1-10.07-1.56L143.07,201c-.07-2.26-.13.11-.16-2.15q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08v.33Z"/><path class="cls-3" d="M257.43,89.23a90.48,90.48,0,0,1,38.48,42.88,80.12,80.12,0,0,0-19.49,4.06l-.06,0q-2.46.84-4.88,1.85l-1,.43-1.59.7,0,0c-.53.23-1.06.48-1.58.74s-1,.51-1.57.78-1,.53-1.55.81-.91.49-1.36.75c-1.08.6-2.14,1.23-3.18,1.88q-.62.38-1.23.78a78.68,78.68,0,0,0-11.25,8.83c-4.39,4.15-8.49,8.92-13,13.18a46.31,46.31,0,0,1-13.38,9.39c-9.64,4.15-20.79,6.55-30.8,10l-47,16.25c0-.74-5.32-6-12-12.41a91.07,91.07,0,0,1-28.3-64c-1.62-73.26,84.44-94.8,143-79.1A91.21,91.21,0,0,1,271.9,58.77,76,76,0,0,1,286.44,71,63.12,63.12,0,0,1,298.39,89.5l-.79-.14A112.73,112.73,0,0,0,257.43,89.23Z"/><path class="cls-4" d="M295.91,132.11a80.12,80.12,0,0,0-19.49,4.06l-.06,0a47.36,47.36,0,0,0-4.88,1.85l-1,.43-1.61.72c-.53.24-1.05.48-1.58.74s-1,.51-1.57.78-1,.53-1.55.81-.91.49-1.36.75c-1.08.6-2.14,1.23-3.18,1.88l-1.23.78a78.68,78.68,0,0,0-11.25,8.83c-4.39,4.15-8.49,8.92-13,13.18-1.46.6-2.91,1.23-4.36,1.86.18-.08-1.15-17-1.11-18.71a110.5,110.5,0,0,1,2.23-19.44c2.54-12.31.92-23.76,3.37-36.38a80.44,80.44,0,0,1,2-8.35c4.18-3.12,10-4.08,15.07-4.81C263.5,79.34,276,81,287.69,84.68a57.24,57.24,0,0,1,5.69,2.14c.88.39,1.74.81,2.59,1.26a12.24,12.24,0,0,0,2.42,1.42,117.17,117.17,0,0,0-41-.27A90.48,90.48,0,0,1,295.91,132.11Z"/><circle class="cls-1" cx="133" cy="162.58" r="17"/><circle class="cls-2" cx="138.39" cy="162.58" r="15.22"/><path class="cls-1" d="M138.62,146.54l4.38,57,66.44,38.82a19.77,19.77,0,0,0,24.68-9.86c9.56-19.58,24.9-50.49,22.88-62-3-17-11-23-11-23q1.67-10,3.32-19.94c1.26-7.51,2.86-15.35,1-22.9-2.13-8.65-8.67-12.35-14.05-18.82-14.16,18.24-37.44,28.55-57.77,39C168,130.36,138.62,146.54,138.62,146.54Z"/><path class="cls-5" d="M170.67,134.75A80.57,80.57,0,0,1,198.8,134"/><path class="cls-5" d="M229.72,134.86a55.64,55.64,0,0,1,17.45-1.21"/><path class="cls-5" d="M206.69,173.34a3.4,3.4,0,0,0,2.11,6.38"/><path class="cls-5" d="M224.74,163s.29,5.65,1.62,8.3c.57,1.14,1.46,2.1,2,3.24,2.21,4.33-1.36,5.25-4.81,5.25"/><path class="cls-6" d="M294.43,285.76a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,28.66,28.66,0,0,0,2.22,1.94,95.14,95.14,0,0,0,19.82,11.26,99,99,0,0,0,10.46,3.69,93.52,93.52,0,0,0,33,3.49c1.54-.12,3.09-.27,4.63-.38l.15,5.08v.33l12.1,4.92Z"/><circle class="cls-7" cx="191.59" cy="149.75" r="19"/><circle class="cls-7" cx="244.73" cy="146.75" r="19"/><line class="cls-7" x1="210.59" y1="149.75" x2="225.73" y2="148.45"/><path class="cls-8" d="M190.17,191.23a1.87,1.87,0,0,1,2.69-.5c2.07,1.46,5.88,4.56,11.28,5.63,7.36,1.47,13.74-1.48,15.27.42.86,1.07-.19,2.38-2.2,4.05a19.75,19.75,0,0,1-14.86,3.69c-7.08-1.33-12.4-9.53-12.4-12.44A1.79,1.79,0,0,1,190.17,191.23Z"/><ellipse class="cls-6" cx="187.13" cy="149.58" rx="3.27" ry="7.94" transform="translate(24.14 325.16) rotate(-85.77)"/><ellipse class="cls-6" cx="238.63" cy="147.94" rx="7.94" ry="3.27" transform="translate(-19.94 38.53) rotate(-8.86)"/></svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#daaea8;}.cls-2{fill:#f2d4cf;}.cls-3{fill:#845161;}.cls-4{fill:#69303a;}.cls-5{fill:#00214e;}.cls-6,.cls-7{fill:none;stroke-miterlimit:10;}.cls-6{stroke:#00214e;}.cls-7{stroke:#f2d4cf;}.cls-8{fill:#fff;}</style></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M192.58,81.19c-1.37,5.88-9.21,8.78-12.52,13.39-3.43,4.79-3.73,13.1-8.66,16.16s-12.51-.34-18.32.62c-5.6.93-11.67,6.68-17.54,5.31s-8.78-9.21-13.4-12.52c-4.78-3.43-13.1-3.74-16.16-8.66s.34-12.51-.62-18.32c-.92-5.61-6.67-11.67-5.3-17.55s9.21-8.78,12.52-13.39c3.43-4.79,3.73-13.1,8.66-16.16s12.51.34,18.32-.62c5.6-.93,11.67-6.67,17.55-5.3s8.77,9.2,13.39,12.51c4.78,3.43,13.1,3.74,16.16,8.66s-.34,12.52.62,18.33C188.21,69.25,194,75.32,192.58,81.19Z"/><path class="cls-2" d="M210.4,216c-2.52,3-4.7,6.28-7.27,9.23-13.62,15.66-43.29,5.37-58-4-10.83-6.85-19-17.18-26-27.94-8.6-13.27-15.79-27.7-18.91-43.2C85.93,79.1,177,48.22,228.07,83.07c19,13,36.17,42.16,32,65.53-2.13,11.86-10.56,22.53-9.66,34.54,1,12.94,12.69,25.27,7.8,37.29-1.92,4.7-6.06,8.06-9.41,11.87-4.53,5.15-7.84,11.59-8.23,18.43s2.45,14,8.09,17.92c-13.93-1.86-22.51-18.54-18.91-32.12,1.18-4.46,3.36-8.62,4.31-13.14s.39-9.77-3.06-12.83c-4.43-3.93-11.65-2.44-16.3,1.22A30.41,30.41,0,0,0,210.4,216Z"/><path class="cls-3" d="M296.41,304.09a184.58,184.58,0,0,1-226.48-1l48.66-22.81a47.6,47.6,0,0,0,4.35-2.33c.38-.23.75-.46,1.12-.71s.79-.5,1.18-.77A46.57,46.57,0,0,0,139.91,260c4-7.54,5.32-15.88,5.38-24.38,0-5.73-.31-11.44-.37-17.18q-.06-4.75-.1-9.51l.19.1,1.79.93,5.2,2.68,30.29,5.15,31.12,5.31.72,24.45.22,7.51.47,15.87,11.47,4.67,9,3.65Z"/><path class="cls-4" d="M214.13,247.52a12,12,0,0,1-7.23,2c-14.79-1.59-43.64-13.18-61.8-34.63q0-1.58-.06-3.15l0-2.79,1.79.93,5.2,2.68,30.29,5.15,31.12,5.31Z"/><path class="cls-5" d="M296.41,304.09a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34c23.68,17.41,56.64,28.75,85.06,16,8.06-3.62,15.33-10.05,18.29-18.31l9,3.64Z"/><circle class="cls-3" cx="119.82" cy="176.91" r="17"/><circle class="cls-4" cx="125.82" cy="174.91" r="17"/><path class="cls-3" d="M235.36,151.16C247.1,191.85,222.15,241,206.82,241c-21,0-72-16.77-83.73-57.46S127,102.65,158,93.7,223.61,110.48,235.36,151.16Z"/><path class="cls-2" d="M200.54,101.22c-2.4,4.74-7.4,8.86-10.37,13.71-3.89,6.35-6.83,13.25-10.13,19.92-2.45,5-5.19,9.94-9.33,13.61s-10,5.84-15.31,4.31c-3.64-1.05-6.6-3.65-9.85-5.58s-7.43-3.22-10.77-1.42c-4.92,2.64-4.85,9.81-8.37,14.14-8.08,9.93-22.89-3.45-24.67-12.12-2.61-12.67,7.79-23.26,15.35-32,6.3-7.3,14.83-18.44,24.73-20.87.17,0,58-23,58-23,.52,7.73,3.64,19.16,1.77,26.56A13,13,0,0,1,200.54,101.22Z"/><path class="cls-6" d="M198.4,153.06c-.06.24,5.54,15.88,8.93,25.32a5.26,5.26,0,0,1-4.94,7h-3.64"/><path class="cls-7" d="M209.86,142.85a31.18,31.18,0,0,1,22.85-2.16"/><path class="cls-7" d="M154.75,146.55a36.7,36.7,0,0,1,31.22-1"/><path class="cls-5" d="M172.92,157.63c6.1,0,6.1,9.37,0,9.42h-.28c-6.1-.05-6.1-9.38,0-9.42h.28Z"/><path class="cls-5" d="M223.18,154.54c5.66.05,5.66,8.7,0,8.75h-.26c-5.66,0-5.66-8.7,0-8.75h.26Z"/><path class="cls-6" d="M191.3,179.65a3.37,3.37,0,0,0-3,3.15,2.65,2.65,0,0,0,3.24,2.5"/><path class="cls-8" d="M173.65,194.77a1.86,1.86,0,0,1,2.68-.5c2.07,1.46,5.88,4.56,11.28,5.63,7.36,1.47,13.74-1.48,15.27.42.86,1.07-.19,2.37-2.2,4.05a19.75,19.75,0,0,1-14.86,3.69c-7.08-1.33-12.4-9.53-12.4-12.44A1.68,1.68,0,0,1,173.65,194.77Z"/></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#daaea8;}.cls-2{fill:#845161;}.cls-3{fill:#69303a;}.cls-4{fill:#00214e;}.cls-5,.cls-6{fill:none;stroke-miterlimit:10;}.cls-5{stroke:#00214e;}.cls-6{stroke:#daaea8;}.cls-7{fill:#de8276;}</style></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M118.72,166.8c-1.57-3.12-3.09-6.28-4.55-9.45-2.86-6.2-5.54-12.55-6.74-19.27-3.89-21.68,7.32-45.32,23.41-59.22,22.9-19.77,55.34-27.24,80.57-44.78a34.59,34.59,0,0,1-12.9,21.76c11.81-9.1,47,5.89,58,11.51a116.3,116.3,0,0,1,44.94,40.08,73.87,73.87,0,0,0-37.51-4.8c9.88,9.57,20.16,19.78,23.9,33C270.11,122.85,241.8,129,231,148.05c-6.93,12.2-6.83,27.06-11,40.47-4.4,14.2-16.27,23.22-30.23,27-10.52,2.88-31.22,4.18-40.75-2-2.89-1.87-5-4.73-6.94-7.55A318.87,318.87,0,0,1,118.72,166.8Z"/><circle class="cls-2" cx="129.75" cy="170.77" r="17"/><circle class="cls-3" cx="135.61" cy="169.77" r="16"/><path class="cls-2" d="M291.34,294a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09c4-7.55,5.32-15.89,5.38-24.39,0-2.81-.06-5.63-.14-8.45s-.2-5.81-.23-8.72q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.39,13.29.07,2.25v.33l12.1,4.92Z"/><path class="cls-3" d="M209.67,258.19l-1.54.16a51.49,51.49,0,0,1-40.67-14.65l-27.58-32.51c-.09-2.9,0,0,0-2.91q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32Z"/><path class="cls-2" d="M138.41,139.06a17.1,17.1,0,0,0-5.64,10.69c-2.09,19.53,5.14,42.58,7.15,62.14l36.42,26.86a51.48,51.48,0,0,0,42.29,8.94c5.87-1.39,9.59-2.29,12.24-7,5.12-9,17.69-39.79,18.51-61.51.23-6.17.08-15.57-3.72-20.82-1.85-2.55-2.8-2.61-2.13-6.21.69-3.76,1.68-7.48,2.51-11.21a52,52,0,0,0,1-16.45c-.55-5-.53-9.44-1.06-14.53-.26-2.47-1.36-13.28-1.36-13.28-6.35,9.56-17.81,14.58-28.41,17.88-14.42,4.48-29.43,6.67-44.05,10.43C162.47,127.52,146.8,131.12,138.41,139.06Z"/><path class="cls-4" d="M181.62,154.13c6.1.05,6.1,9.38,0,9.43h-.27c-6.11-.05-6.11-9.38,0-9.43h.27Z"/><path class="cls-4" d="M234.31,151.28c5.67,0,5.67,8.7,0,8.75h-.25c-5.66-.05-5.66-8.71,0-8.75h.25Z"/><path class="cls-5" d="M186.09,199.08a29.76,29.76,0,0,0,18.54,9.69"/><path class="cls-6" d="M167.42,142.94a80.34,80.34,0,0,1,28.13-.8"/><path class="cls-6" d="M226.47,143a55.64,55.64,0,0,1,17.45-1.21"/><path class="cls-7" d="M291.34,294a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38,23.55,16.76,55.69,27.33,83.49,14.82,6.62-3,12.7-7.84,16.3-14.06Z"/><path class="cls-5" d="M198.42,182.25a3.4,3.4,0,0,0,2.11,6.38"/><path class="cls-5" d="M213.83,153.21c2.49,9.55,4.56,19,6.93,28.57a7,7,0,0,1,.3,2.72c-.43,2.75-3.7,3.88-6.42,4.47"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:url(#linear-gradient-2);}.cls-3{fill:#f2a196;}.cls-4{fill:#e88870;}.cls-5{fill:#00214e;}.cls-6,.cls-8{fill:none;stroke-miterlimit:10;}.cls-6{stroke:#fff;}.cls-7{fill:url(#linear-gradient-3);}.cls-8{stroke:#00214e;}.cls-9{fill:#845161;}.cls-10{fill:#fff;}</style><linearGradient id="linear-gradient" x1="142.7" y1="64.13" x2="204.05" y2="64.13" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#16243f"/><stop offset="1" stop-color="#6878b1"/></linearGradient><linearGradient id="linear-gradient-2" x1="110.02" y1="244.18" x2="233.57" y2="117.8" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-3" x1="119.33" y1="162.85" x2="169.56" y2="104.52" xlink:href="#linear-gradient"/></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><circle class="cls-1" cx="173.37" cy="64.13" r="30.67"/><path class="cls-2" d="M199.87,230.57a324.47,324.47,0,0,1-47.8-4.38c-31.48-5.26-62.3-15.31-90.26-30.8-1.66-.93-3.32-1.87-5-2.83,24.79-23.53,43.19-52,58.74-82.2,11.2-21.79,17-36.16,41.19-45.33,42.06-15.93,98.88-.44,110.84,46.88,5.05,20,5.24,40.91,2.37,61.26-2.77,19.68-10.06,57.58-10.06,57.58S207.72,230.71,199.87,230.57Z"/><path class="cls-3" d="M309.5,294.57a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34l1.12-.7c.4-.25.79-.51,1.18-.78A46.54,46.54,0,0,0,153,250.46c4-7.55,5.32-15.89,5.38-24.39,0-4.67-.19-9.34-.31-14q0-1.58-.06-3.15-.06-4.76-.1-9.51l.07,0,1.91,1,5.2,2.69,30.29,5.15,31.12,5.3.71,24,.2,6.88,0,1.07.47,15.87,11.47,4.67,9,3.64Z"/><path class="cls-4" d="M227.21,237.57a12.12,12.12,0,0,1-7.34,2.11c-14.79-1.59-43.64-13.18-61.8-34.63q0-1.58-.06-3.15l0-2.47,1.91,1,5.2,2.69,30.29,5.15,31.12,5.3Z"/><circle class="cls-3" cx="132.9" cy="167.39" r="17"/><circle class="cls-4" cx="138.9" cy="165.39" r="17"/><path class="cls-3" d="M248.44,141.65c11.75,40.68-13.2,89.87-28.54,89.87-21,0-72-16.78-83.73-57.46S140,93.14,171,84.19,236.7,101,248.44,141.65Z"/><path class="cls-5" d="M185.28,150.1c6.1.05,6.1,9.37,0,9.42H185c-6.1-.05-6.1-9.37,0-9.42h.27Z"/><path class="cls-5" d="M235.54,146.26c5.67.05,5.67,8.7,0,8.75h-.25c-5.66,0-5.66-8.7,0-8.75h.25Z"/><circle class="cls-6" cx="185.27" cy="154.89" r="19"/><circle class="cls-6" cx="238.4" cy="151.89" r="19"/><path class="cls-7" d="M209.74,87.56c-4.31,18.7-13.7,34.58-30.86,46.15-18.52,12.82-38.07,19-59.4,23.25.54-13.11-.9-31.55,5.86-43.24a79.48,79.48,0,0,1,32.31-30.36c14.81-7.65,37.72-15.15,54.36-9.85A113.76,113.76,0,0,1,209.74,87.56Z"/><path class="cls-8" d="M211.48,143.55c-.08.34,7.92,32.34,7.92,32.34H206.9"/><path class="cls-8" d="M222.94,133.34a31.08,31.08,0,0,1,22.85-2.16"/><path class="cls-8" d="M167.83,137a36.75,36.75,0,0,1,31.23-1"/><line class="cls-6" x1="204.27" y1="154.89" x2="219.4" y2="153.6"/><path class="cls-9" d="M309.49,294.57a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38A46.35,46.35,0,0,0,153,250.46,44.69,44.69,0,0,0,157.63,236a28.66,28.66,0,0,0,2.22,1.94,95.14,95.14,0,0,0,19.82,11.26,99,99,0,0,0,10.46,3.69,93.52,93.52,0,0,0,33,3.49c1.54-.12,3.09-.27,4.63-.38l.15,5.08v.33l12.1,4.92Z"/><path class="cls-10" d="M185.49,187.18a1.87,1.87,0,0,1,2.69-.5c2.07,1.46,5.87,4.56,11.27,5.63,7.36,1.47,13.75-1.48,15.27.42.86,1.07-.19,2.38-2.2,4.05a19.72,19.72,0,0,1-14.85,3.69c-7.09-1.33-12.4-9.53-12.4-12.44A1.68,1.68,0,0,1,185.49,187.18Z"/></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#f2a196;}.cls-2{fill:#e88870;}.cls-3{fill:url(#linear-gradient);}.cls-4{fill:#845161;}.cls-5{fill:#69303a;}.cls-6{fill:#00214e;}.cls-7{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-8{fill:#fff;}</style><linearGradient id="linear-gradient" x1="69.93" y1="295.83" x2="296.41" y2="295.83" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#16243f"/><stop offset="1" stop-color="#6878b1"/></linearGradient></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M296.41,291.18a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,67.91,67.91,0,0,0,.74-9.91c0-3.46-.09-6.92-.21-10.38-.07-2.26-.13-4.53-.16-6.79q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08V258l1,.42,11.07,4.5Z"/><path class="cls-2" d="M214.82,258a16,16,0,0,1-10.07-1.56l-59.67-48.77c-.07-2.26-.13.1-.16-2.16q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08V258Z"/><path class="cls-3" d="M296.41,291.18a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38,23.55,16.76,55.69,27.33,83.49,14.82,6.62-3,12.7-7.84,16.3-14.06Z"/><path class="cls-4" d="M278.51,90.9c-.09.59-.2,1.17-.33,1.75a32.08,32.08,0,0,1-3.31,8.49l-.08.14c-.57,1-1.18,2-1.84,3a74.32,74.32,0,0,1-5.72,7.35L266,113c-.83.93-1.67,1.84-2.51,2.74,4.45-1,8.76,3.15,9.55,7.63s-1,9-3.21,13c-3.87,7.08-9.45,11.79-14.36,17.94-3.68,4.58-5.72,10-9.73,14.38l-.3.33c-10.59,11.12-27.31,13.72-41.23,18.47-5,1.72-59.22,17.12-59.22,20.48,0-.73-5.31-6-12-12.41-24-22.79-31.89-58-17.61-88.2,15.35-32.5,50.21-55.69,83.41-66.83,10.38-3.48,22.16-5.82,32-1s14.74,19.77,6.58,27.07a26.16,26.16,0,0,1,17.93-5.21,24.46,24.46,0,0,1,15.72,7.07,27,27,0,0,1,6.95,12.08A24.94,24.94,0,0,1,278.51,90.9Z"/><path class="cls-5" d="M278.51,90.9c-.09.59-.2,1.17-.33,1.75-.09.17-.18.35-.27.55-1.13,2.58-1.65,5.36-3,7.94l-.08.14c-.57,1-1.18,2-1.84,3a67.09,67.09,0,0,1-5.72,7.35L266,113c-.83.93-1.67,1.84-2.51,2.74,4.45-1,8.76,3.15,9.55,7.63s-1,9-3.21,13c-3.87,7.08-9.45,11.79-14.36,17.94-3.68,4.58-5.72,10-9.73,14.38a37.7,37.7,0,0,1-8.54-19.47c-1.64-13.26-.64-27.71-1.09-41.13-.28-8.44-3-10,2.06-16.83a74.3,74.3,0,0,1,14-13.29c4.08-2.69,9.33-3.11,14.2-2.42a23.5,23.5,0,0,1,11.58,5A24.94,24.94,0,0,1,278.51,90.9Z"/><circle class="cls-1" cx="134.98" cy="168" r="17"/><circle class="cls-2" cx="140.37" cy="168" r="15.22"/><path class="cls-1" d="M140.6,152,145,209l66.44,38.82A19.77,19.77,0,0,0,236.1,238c9.56-19.58,24.9-50.5,22.88-62-3-17-11-23-11-23q1.67-10,3.32-19.94c1.26-7.51,2.87-15.35,1-22.9-2.13-8.66-8.67-12.35-14.05-18.82-14.16,18.24-37.44,28.55-57.77,39C170,135.78,140.6,152,140.6,152Z"/><path class="cls-6" d="M189.72,149.8c6.1,0,6.1,9.38,0,9.43h-.28c-6.1,0-6.1-9.38,0-9.43h.28Z"/><path class="cls-6" d="M239.84,148.41c5.67.05,5.67,8.7,0,8.75h-.25c-5.66,0-5.66-8.7,0-8.75h.25Z"/><path class="cls-7" d="M215.13,147.09c-.08.35,13.36,36.13,13.36,36.13l-17.94.87"/><path class="cls-7" d="M172.65,140.17a80.57,80.57,0,0,1,28.13-.79"/><path class="cls-7" d="M231.7,140.28a55.34,55.34,0,0,1,17.45-1.21"/><path class="cls-8" d="M192.17,194.1a1.85,1.85,0,0,1,2.68-.5c2.08,1.46,5.88,4.56,11.28,5.63,7.36,1.47,13.74-1.48,15.27.42.86,1.07-.19,2.37-2.2,4a19.74,19.74,0,0,1-14.86,3.69c-7.08-1.33-12.4-9.53-12.4-12.44A1.66,1.66,0,0,1,192.17,194.1Z"/></svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#00214e;}.cls-2{fill:#f2a196;}.cls-3{fill:#e88870;}.cls-4{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-5{fill:#f2d4cf;}.cls-6{fill:url(#linear-gradient);}</style><linearGradient id="linear-gradient" x1="109.87" y1="140.89" x2="166.58" y2="65.41" gradientUnits="userSpaceOnUse"><stop offset="0.29" stop-color="#00214e"/><stop offset="0.51" stop-color="#6878b1"/><stop offset="0.79" stop-color="#00214e"/></linearGradient></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M258.38,149.67c-.41-33.19-6.33-69.59-36.31-89.15C195,42.86,158.32,43.72,131.45,61a77.55,77.55,0,0,0-10.22,7.8,105.09,105.09,0,0,0-26.66,39,130.84,130.84,0,0,0-9,54.2c1.67,37.14-2.36,74.39-2.36,111.68,0,1.29,0,2.77,1,3.59a4.27,4.27,0,0,0,3,.59c15.62-.87,29.45-3.57,44.53-6.08,18.8-3.12,39.07-2.23,58.1-3.42,11.33-.66,23.24-2.49,34.57-2,3.61.16,35.22,4.85,35.36,6.8C256.75,231.8,258.89,191,258.38,149.67ZM148,145.49l-14.09-10a130.31,130.31,0,0,0,31.94-16,70.63,70.63,0,0,0,21.84-23l5.71,3.61Z"/><path class="cls-2" d="M296.41,280.37a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34l1.12-.7c.4-.25.79-.51,1.18-.78a46.54,46.54,0,0,0,14.67-16.47c4-7.55,5.32-15.89,5.38-24.39,0-4.67-.19-9.34-.31-14q0-1.57-.06-3.15-.06-4.75-.1-9.51l.07,0,1.91,1,5.2,2.69,30.29,5.15,31.12,5.3.71,24,.2,6.88,0,1.07.47,15.87,11.47,4.67,9,3.64Z"/><path class="cls-3" d="M214.12,223.37a12.12,12.12,0,0,1-7.34,2.11C192,223.89,163.14,212.3,145,190.85q0-1.57-.06-3.15l0-2.47,1.91,1,5.2,2.69,30.29,5.15,31.12,5.3Z"/><circle class="cls-2" cx="119.82" cy="153.19" r="17"/><circle class="cls-3" cx="125.82" cy="151.19" r="17"/><path class="cls-2" d="M235.36,127.45c11.74,40.68-13.2,89.87-28.54,89.87-21,0-72-16.78-83.73-57.46S127,78.94,158,70,223.62,86.76,235.36,127.45Z"/><path class="cls-4" d="M177.31,176.87a29.74,29.74,0,0,0,18.54,9.69"/><path class="cls-4" d="M197.93,131.73c-.05.2,4.79,8.56,7.31,17.59a58,58,0,0,1,1.62,14.76H193.35"/><path class="cls-4" d="M210.34,123.22a31.18,31.18,0,0,1,22.85-2.16"/><path class="cls-4" d="M151.19,127.2a36.75,36.75,0,0,1,31.23-1"/><path class="cls-1" d="M168.73,136.06c6.1.05,6.1,9.38,0,9.42h-.27c-6.1,0-6.1-9.37,0-9.42h.27Z"/><path class="cls-1" d="M218.86,134.67c5.66,0,5.66,8.7,0,8.74h-.25c-5.67,0-5.67-8.7,0-8.74h.25Z"/><path class="cls-1" d="M198.93,59.32a113.91,113.91,0,0,1-2.27,14,81,81,0,0,1-9,23.18,70.63,70.63,0,0,1-21.84,23,130.31,130.31,0,0,1-31.94,16,202.94,202.94,0,0,1-27.46,7.23c.31-7.63,0-17.07.94-25.93.7-6.36,2.1-12.43,4.92-17.32a79.54,79.54,0,0,1,32.19-30.3l.12-.06C159.38,61.51,182.29,54,198.93,59.32Z"/><path class="cls-5" d="M296.41,280.37a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,28.66,28.66,0,0,0,2.22,1.94A95.14,95.14,0,0,0,166.59,235a99,99,0,0,0,10.46,3.69,93.52,93.52,0,0,0,33,3.49c1.54-.12,3.09-.27,4.63-.38l.15,5.08v.33l12.1,4.92Z"/><path class="cls-6" d="M187.64,96.54a70.63,70.63,0,0,1-21.84,23,130.31,130.31,0,0,1-31.94,16l-26.52-18.7-12.77-9a105.09,105.09,0,0,1,26.66-39A77.55,77.55,0,0,1,131.45,61l13,8.22Z"/></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#00214e;}.cls-2{fill:#f2a196;}.cls-3{fill:#e88870;}.cls-4{fill:#845161;}.cls-5,.cls-6{fill:none;stroke-miterlimit:10;}.cls-5{stroke:#00214e;}.cls-6{stroke:#f2a196;}</style></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M256.93,135.87c-2.42,7.2-2.81,17-7.06,23.38-9.35,14-27.49,16.4-42.25,21.44a11.74,11.74,0,0,0-2.82.91l-5.22,1.65q-7.53,2.37-15,4.8c-6.92,2.25-16.43,3.63-21.41,9.31a109.81,109.81,0,0,0-8,10.33c-.48.71-1.07,1.49-1.92,1.56-.54,0-1-.71-1.45-1-8.88-4.78-15.41-11.34-20.88-19.66a126,126,0,0,1-19-86.17c.06-.44.12-.87.19-1.31a51.6,51.6,0,0,1,12.78-26.06A86.79,86.79,0,0,1,148.39,57a148.21,148.21,0,0,1,16.18-7.35A110,110,0,0,1,202.25,42,94.36,94.36,0,0,1,238,49.07c15.62,6.25,27.73,17.92,28.74,35.58C267.74,102.06,262.46,119.41,256.93,135.87Z"/><circle class="cls-2" cx="134.83" cy="162.86" r="17"/><circle class="cls-3" cx="140.68" cy="161.86" r="16"/><path class="cls-2" d="M296.41,286a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82l1.11-.78.78-.6a46.35,46.35,0,0,0,12.78-15.09c4-7.55,5.32-15.89,5.38-24.39,0-2.87-.06-5.74-.15-8.61s-.19-5.7-.22-8.56q-.06-4.76-.1-9.51l1.84.95.14.07,5.2,2.69,2.41.41,27.88,4.74,11.05,1.88L213.41,205l.94,32,.39,13.3.07,2.24v.33l12.1,4.92.75.31Z"/><path class="cls-3" d="M145.14,202.68,178,233.5a51.66,51.66,0,0,0,36.77,12.79l-.39-13.3-.94-32-20.07-3.42c-2.74,1.24-5.48,2.48-8.22,3.56-8.2,3.23-17.47,2-25.42-1.36a36.93,36.93,0,0,1-14.87-12Z"/><path class="cls-4" d="M296.41,286a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82l1.11-.78c24.36,16.61,56.82,26.66,85,14a37.81,37.81,0,0,0,16.31-13.51Z"/><path class="cls-2" d="M254.46,171.31a106,106,0,0,1-3.51,21.6c-4.31,16.92-11.45,33.65-15,39.91-2.66,4.67-6.37,5.57-12.24,7a51.47,51.47,0,0,1-42.29-8.94L145,204c-.51-5-1.37-10.25-2.33-15.6-2.78-15.54-6.38-32-4.82-46.54a17,17,0,0,1,5.64-10.69c8.38-7.94,24-11.54,33.74-14,14.62-3.76,29.64-6,44.05-10.43,10.61-3.3,22.06-8.32,28.42-17.88,0,0,1.1,10.81,1.35,13.28.53,5.09.52,9.51,1.07,14.53a52,52,0,0,1-1,16.45c-.83,3.73-1.81,7.45-2.51,11.21-.67,3.6.28,3.66,2.13,6.21C254.54,155.74,254.69,165.14,254.46,171.31Z"/><path class="cls-1" d="M187.56,143c6.1,0,6.1,9.38,0,9.43h-.27c-6.1,0-6.1-9.38,0-9.43h.27Z"/><path class="cls-1" d="M237.69,141.6c5.66.05,5.66,8.7,0,8.75h-.25c-5.67,0-5.67-8.7,0-8.75h.25Z"/><path class="cls-5" d="M219.4,147c-.05.2,4.79,8.56,7.31,17.59a58,58,0,0,1,1.62,14.75H214.82"/><path class="cls-1" d="M251,192.91c-4.31,16.92-11.45,33.65-15,39.91-2.66,4.67-6.37,5.57-12.24,7a51.47,51.47,0,0,1-42.29-8.94L145,204c-.6-5.89-2.75-11.53-4-17.33-.54-2.62-1-5.36-.36-8a6.84,6.84,0,0,0,1.71,3.73c4.72,6.42,10.24,13.67,18.1,16.31,8.2,2.75,17.54,3.18,25.45-.7,6.89-3.38,13.64-7.79,20.83-10.57a35.05,35.05,0,0,1,15.11-2.61c7.34.5,10.48,3.81,15.85,8.18,1.76,1.44,3.73,2.94,6,2.95C246.29,196,248.79,194.56,251,192.91Z"/><path class="cls-6" d="M204.37,198.32a29.8,29.8,0,0,0,20.89-1.21"/><path class="cls-5" d="M172.49,135a80.35,80.35,0,0,1,28.13-.8"/><path class="cls-5" d="M231.54,135.13A55.7,55.7,0,0,1,249,133.92"/><path class="cls-5" d="M203.49,174.34a3.4,3.4,0,0,0,2.11,6.38"/><polygon class="cls-1" points="141.67 188.44 142.67 188.38 143.33 189.16 145.48 202.98 145 203.16 144.28 202.17 141.67 188.44"/></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:#845161;}.cls-3{fill:#69303a;}.cls-4{fill:url(#linear-gradient-2);}.cls-5{fill:url(#linear-gradient-3);}.cls-6{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-7{fill:#ff2609;}.cls-8{fill:#fff;}.cls-9{fill:#00214e;}</style><linearGradient id="linear-gradient" x1="87.92" y1="169" x2="257.77" y2="169" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#16243f"/><stop offset="1" stop-color="#6878b1"/></linearGradient><linearGradient id="linear-gradient-2" x1="58.45" y1="317.63" x2="265.95" y2="260.1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#315676"/><stop offset="1" stop-color="#e1b9e0"/></linearGradient><linearGradient id="linear-gradient-3" x1="112.17" y1="74.28" x2="211.94" y2="115.88" xlink:href="#linear-gradient"/></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M254.17,286.72c-10.65,1.33-20.37,4.17-31.25,4.83-8.19.5-16.4-.43-24.58-1.14a470.21,470.21,0,0,0-53.61-1.59c-9.72.27-19.31,2.64-29.08,2.1-5.15-.28-8-1.59-12.34-4-1.52-.85-15.56-7.49-15.39-6.78.68,2.79,7.28-125.76,9.63-148.16,1.9-18.09,5.88-36.31,14.34-52.54C120.19,63.49,134.8,55,151.83,50.1c25.24-7.23,54.29-4.37,76.24,10.6,16,10.9,25.18,36.72,27.32,56C259,149.41,258.4,260.8,254.17,286.72Z"/><path class="cls-2" d="M296.41,281.72a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34l1.12-.7c.4-.25.79-.51,1.18-.78a46.54,46.54,0,0,0,14.67-16.47c4-7.55,5.32-15.89,5.38-24.39,0-5.72-.31-11.44-.37-17.17q-.06-4.76-.1-9.51l2,1,5.2,2.69,30.29,5.15,31.12,5.3.94,32,.47,15.87,11.47,4.67,9,3.64Z"/><path class="cls-3" d="M214.15,225.15a60.08,60.08,0,0,1-30.07-2.35C162.5,215.55,148,198.06,146.6,180l5.2,2.69,30.29,5.15,31.12,5.3Z"/><path class="cls-4" d="M296.41,281.72a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34c23.68,17.41,56.64,28.75,85.06,16,8.06-3.62,15.33-10,18.29-18.31l9,3.64Z"/><circle class="cls-2" cx="119.82" cy="154.54" r="17"/><circle class="cls-3" cx="125.82" cy="152.54" r="17"/><path class="cls-2" d="M235.36,128.8c11.74,40.68-13.2,89.87-28.54,89.87-21,0-72-16.78-83.73-57.46S127,80.29,158,71.34,223.61,88.11,235.36,128.8Z"/><path class="cls-5" d="M200.62,78.88a77.34,77.34,0,0,1-4.45,10.59c-6.7,13.54-18.56,23.91-30.52,32.73-9.17,6.76-19,13.13-30.18,15.45-10.15,2.12-27.26.12-33-10.08-6.63-11.67,8-26.39,14.67-34.16,6.3-7.29,14.83-18.43,24.73-20.87.17,0,58-23,58-23,.46,6.9,2.43,13.71,2.36,20.65A30.3,30.3,0,0,1,200.62,78.88Z"/><path class="cls-6" d="M198.4,130.7c-.05.24,5.54,15.88,8.93,25.32a5.25,5.25,0,0,1-4.94,7h-3.64"/><path class="cls-6" d="M209.86,120.48a31.13,31.13,0,0,1,22.85-2.15"/><path class="cls-6" d="M154.75,124.18a36.75,36.75,0,0,1,31.23-1"/><path class="cls-6" d="M191.3,157.29a3.37,3.37,0,0,0-3,3.15,2.65,2.65,0,0,0,3.24,2.5"/><circle class="cls-7" cx="195.78" cy="114.76" r="4.02"/><path class="cls-8" d="M172.41,174.33a1.86,1.86,0,0,1,2.68-.5c2.08,1.46,5.88,4.56,11.28,5.63,7.36,1.47,13.75-1.48,15.27.42.86,1.07-.19,2.37-2.2,4.05a19.74,19.74,0,0,1-14.86,3.69c-7.08-1.33-12.4-9.53-12.4-12.44A1.68,1.68,0,0,1,172.41,174.33Z"/><path class="cls-9" d="M170.55,134.05c6.1-.07,6.28,9.26.18,9.43h-.27c-6.1.07-6.28-9.25-.18-9.42h.27Z"/><path class="cls-9" d="M220.79,132.42c5.66-.07,5.83,8.58.17,8.74h-.26c-5.66.06-5.83-8.59-.16-8.75h.25Z"/></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:url(#linear-gradient-2);}.cls-3{fill:#845161;}.cls-4{fill:#69303a;}.cls-5,.cls-9{fill:none;stroke-miterlimit:10;}.cls-5{stroke:#00214e;}.cls-6{fill:#ff2609;}.cls-7{fill:#fff;}.cls-8{fill:#00214e;}.cls-9{stroke:#f2a196;}</style><linearGradient id="linear-gradient" x1="271.65" y1="101.91" x2="417.78" y2="129.84" gradientTransform="matrix(1, -0.02, 0.02, 1, -101.09, 27.27)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#16243f"/><stop offset="1" stop-color="#6878b1"/></linearGradient><linearGradient id="linear-gradient-2" x1="60.16" y1="198.42" x2="253.42" y2="53.37" gradientTransform="matrix(1, 0, 0, 1, 0, 0)" xlink:href="#linear-gradient"/></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M262.58,131.33c-1.37,17.78-6.49,35.49-16.48,49.67a26.21,26.21,0,0,1-5.82,6.31c-4,.08-9.63,4.05-14.21,4.49-3.45.34-7.12-.61-10.46-.06-10.42,1.69-21.47,9.34-31,13.85-6.43,3-13,6.12-20.11,6.72-8.6.71-16.7-2.31-23.88-7.2a73.62,73.62,0,0,1-15.9-15.27c-15.07-19.11-24.92-44.64-21.93-69.63C109.53,64,179.5,28.27,230.66,43.28a28,28,0,0,1,7.54,3.46c.72.8,1.43,1.63,2.11,2.46,1.42,1.71,2.78,3.47,4.1,5.27l.68.94a111.69,111.69,0,0,1,12.12,22C264.62,95.38,264.05,112.11,262.58,131.33Z"/><path class="cls-2" d="M240.31,49.2c-1.83,7.51-9.46,18.06-12.59,23.55-14.75,25.79-37.44,45-53.3,69.26-1.13,1.73-2.11,3.55-3.12,5.35-5.2,9.21-10.21,18.54-15.19,27.88q-4.46,8.37-8.83,16.78c-1.15,2.24-2.87,4.32-3.12,6.83a62.23,62.23,0,0,0-.5,7.21,10.2,10.2,0,0,0,.55,2.88c.11.34.8,2.52,1.19,2.54a8.27,8.27,0,0,1-4-1.69c-7.69-5.13-13.37-11.72-18.86-19a112.1,112.1,0,0,1-6.92-10c-5.31-8.91-8.18-19-10.32-29.06-2.23-10.5-3.79-20.76-2.5-31.51C109.53,64,179.5,28.27,230.66,43.28a28,28,0,0,1,7.54,3.46C238.92,47.54,239.63,48.37,240.31,49.2Z"/><circle class="cls-3" cx="126.3" cy="166.14" r="17"/><circle class="cls-4" cx="132.13" cy="165.02" r="16"/><path class="cls-3" d="M296.41,288.18a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09c4-7.55,5.32-15.89,5.38-24.39v-.62c0-4.75-.23-9.51-.33-14.27,0-.76,0-1.52,0-2.28q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,3.79.65,27.33,4.65.94,32,.27,9.21.19,6.33V255l12.1,4.92Z"/><path class="cls-4" d="M214.62,248.34a51.59,51.59,0,0,1-40.18-8.61l-29.15-20.67c0-4.75-.23-9.51-.33-14.27,10.57,5.35,23.21,7.27,33.35,2,2.6-1.33,5.18-2.83,7.77-4.32l27.33,4.65.94,32Z"/><path class="cls-3" d="M246.07,172.2c-.39,21.74-12.34,52.75-17.28,61.87-2.55,4.72-6.25,5.7-12.09,7.2a51.43,51.43,0,0,1-42.46-8.09l-37-26.82c-1.56-12.66-4.81-24.32-6.82-36.91-1.29-8.1-5.32-25.36,1.41-31.82a11.42,11.42,0,0,1,3.15-2c4.41-2.07,10.95-3.27,14.57-4.7q10-3.93,19.81-8.31,10-4.49,19.84-9.42,9.41-4.73,18.58-9.85l9.79,5.68q8.94,5.19,17.87,10.38c11.91,6.91,6.11,14.8,4.28,25.92-.6,3.61.35,3.65,2.26,6.16C245.84,156.64,246.19,166,246.07,172.2Z"/><path class="cls-5" d="M163.4,137.56a80.77,80.77,0,0,1,28.11-1.35"/><path class="cls-5" d="M222.44,136.49a55.62,55.62,0,0,1,17.43-1.56"/><path class="cls-6" d="M296.41,288.18a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38,23.55,16.76,55.69,27.33,83.49,14.82,6.62-3,12.7-7.84,16.3-14.06Z"/><path class="cls-5" d="M195.18,176.25a3.4,3.4,0,0,0,2.24,6.34"/><path class="cls-5" d="M210,146.91c2.68,9.5,4.94,18.86,7.5,28.43a6.8,6.8,0,0,1,.35,2.71c-.37,2.76-3.62,3.95-6.33,4.59"/><circle class="cls-6" cx="208.08" cy="130.65" r="4.02"/><path class="cls-7" d="M220.15,110.52c-7.73.2-17.89.5-25.58,1.59-2.22.32-5.41,1.06-5.41,1.06q9.41-4.73,18.58-9.85Z"/><path class="cls-8" d="M243,193.83c-4,17-10.58,33.91-14,40.24-2.56,4.72-6.26,5.69-12.1,7.2a51,51,0,0,1-40.69-6.76c-4.51-2.88-9.13-5.56-13.73-8.28-5.19-3.06-10.35-6.18-15.25-9.67-4.27-3.05-8.27-6.09-10.54-11a39.17,39.17,0,0,1-2-5.59c-.46-1.59-1-3.43-.64-5.1a1.88,1.88,0,0,1,1.23-1.43,2.36,2.36,0,0,1,1.36.12c2.87.86,5.49,2.81,8.09,4.26a41.79,41.79,0,0,0,8.88,3.83c8.08,2.34,17.08,2.54,24.71-1.39,6.82-3.51,13.48-8.06,20.61-11A34.88,34.88,0,0,1,214,186.39c7.35.35,10.55,3.6,16,7.86,1.79,1.4,3.79,2.86,6.06,2.83C238.6,197,240.88,195.52,243,193.83Z"/><path class="cls-9" d="M196.56,201.5a29.73,29.73,0,0,0,20.92.39"/><path class="cls-8" d="M176.08,146.39c6.1-.07,6.29,9.25.19,9.42H176c-6.1.07-6.28-9.25-.18-9.42h.27Z"/><path class="cls-8" d="M226.32,144.75c5.66-.06,5.83,8.59.17,8.74h-.25c-5.67.06-5.83-8.59-.17-8.75h.25Z"/></svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:#00214e;}.cls-3{fill:#f2a196;}.cls-4{fill:#e88870;}.cls-5{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-6{fill:#ff2609;}.cls-7{fill:url(#linear-gradient-2);}</style><linearGradient id="linear-gradient" x1="91.81" y1="173.54" x2="257.42" y2="173.54" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#16243f"/><stop offset="1" stop-color="#6878b1"/></linearGradient><linearGradient id="linear-gradient-2" x1="91.27" y1="159.59" x2="264.79" y2="159.59" xlink:href="#linear-gradient"/></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M220.15,252.36a131.89,131.89,0,0,1-18.72,17.3c-12.11,9.13-21.08,8.08-35.15,6.86-16.35-1.41-32.57-4-48.87-5.92-2.07-.24-4.29-.55-5.81-2a9.83,9.83,0,0,1-2.36-4.81,501.3,501.3,0,0,1-17.3-107c-1.8-34.6,16-68.48,49.59-81.18,34.85-13.2,80.21-4.43,100.87,28.58C271.39,150.56,255.38,213,220.15,252.36Z"/><path class="cls-2" d="M296.41,281.93a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34l1.12-.7c.4-.25.79-.51,1.18-.78a46.54,46.54,0,0,0,14.67-16.47c4-7.55,5.32-15.89,5.38-24.39,0-5.72-.31-11.44-.37-17.17q-.06-4.75-.1-9.51l2,1,5.2,2.69,30.29,5.15,31.12,5.3.94,32,.47,15.87,11.47,4.67,9,3.64Z"/><path class="cls-3" d="M214.35,232.88a60.08,60.08,0,0,1-30.07-2.35c-21.58-7.25-36.11-24.74-37.48-42.76l5.2,2.69,30.29,5.15,31.12,5.3Z"/><circle class="cls-3" cx="119.82" cy="154.75" r="17"/><circle class="cls-4" cx="125.82" cy="152.75" r="17"/><path class="cls-3" d="M235.36,129c11.74,40.68-13.2,89.87-28.54,89.87-21,0-72-16.78-83.73-57.46S127,80.5,158,71.55,223.61,88.33,235.36,129Z"/><path class="cls-5" d="M177.78,176.05a29.76,29.76,0,0,0,18.54,9.69"/><path class="cls-6" d="M240.36,104.75C236.19,94.63,225,89.63,214.71,85.88c-5.56-2-11.26-4-17.18-4.13A41.21,41.21,0,0,0,181.59,85c-8.87,3.48-18,8.68-24.81,15.37-3.31,3.25-6.32,6.66-9.74,9.91-1.88,1.8-3.69,3.68-5.41,5.63-1.31,1.49-2.89,4.6-4.53,5.6C167.63,103,205.53,96.15,240.36,104.75Z"/><path class="cls-5" d="M198.4,130.91c0,.2,4.79,8.56,7.32,17.59a57.7,57.7,0,0,1,1.61,14.75H193.82"/><path class="cls-5" d="M210.81,122.4a31.08,31.08,0,0,1,22.85-2.16"/><path class="cls-5" d="M151.67,126.38a36.75,36.75,0,0,1,31.23-1"/><path class="cls-2" d="M169.21,135.24c6.1,0,6.1,9.37,0,9.42h-.28c-6.1,0-6.1-9.37,0-9.42h.28Z"/><path class="cls-2" d="M219.33,133.85c5.67,0,5.67,8.7,0,8.74h-.25c-5.66,0-5.66-8.7,0-8.74h.25Z"/><path class="cls-7" d="M262.21,116.54c-6-30.47-23-57.83-54.63-67.31C160.21,35,100.29,70.87,92.77,120.19,86,164.45,102.3,225.85,136.82,255.64c19.59,16.9,48.88,22.29,72.91,12.81,14-5.51,19-15.86,25.39-28.39,9.84-19.3,19.15-39,24.87-59.9A142.39,142.39,0,0,0,262.21,116.54ZM209.6,217.64c-11.48,4.63-28.46-.46-38.7-6q-2.18-1.19-4.24-2.54c-20.78-13.66-31.66-37.58-38.32-60.7a101.49,101.49,0,0,1-2.53-10.14c.07.32,6.41-2.82,6.89-3.06a51.36,51.36,0,0,0,8.75-6c9.86-8.06,15.93-19.15,24.72-28.19,6.43-6.61,14-12.46,23-14.77,14.68-3.73,29.4,8.31,36.3,20.39,7.88,13.78,12.42,28.74,11.51,44.65a145.7,145.7,0,0,1-4,27.24c-3.17,12.54-8.44,24.5-17,34a23,23,0,0,1-4.46,4A11.21,11.21,0,0,1,209.6,217.64Z"/></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#daaea8;}.cls-2{fill:#f2a196;}.cls-3{fill:#e88870;}.cls-4{fill:#f2d4cf;}.cls-5{fill:#00214e;}.cls-6,.cls-7,.cls-8{fill:none;stroke-miterlimit:10;}.cls-6,.cls-8{stroke:#00214e;}.cls-7{stroke:#f2a196;}.cls-8{stroke-linecap:round;stroke-width:3px;}</style></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M270.23,277.9c-2-66.11-4.78-135.39-38.18-192.48-8.2-14-21.14-28.45-37.29-26.94C175.88,60.24,166.5,81.72,161,99.86c-8.18,26.89-16.38,53.8-23.23,81.07-4.95,19.73-18.64,53.57-11.16,74C139.93,291.26,238.9,279,270.23,277.9Z"/><circle class="cls-2" cx="127.47" cy="162.34" r="17"/><circle class="cls-3" cx="133.3" cy="161.19" r="16"/><path class="cls-2" d="M296.41,283.36a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82l1.11-.78.78-.6a46.35,46.35,0,0,0,12.78-15.09c4-7.55,5.32-15.89,5.38-24.39,0-2.87-.06-5.74-.15-8.61s-.19-5.7-.22-8.56q-.06-4.75-.1-9.51l1.84.95.14.07,5.2,2.69,2.41.41L182.29,197l11.05,1.88,20.07,3.42.94,32,.39,13.3.07,2.24v.33l12.1,4.92.75.31Z"/><path class="cls-3" d="M145.14,204,178,234.82a51.66,51.66,0,0,0,36.77,12.79l-.39-13.3-.94-32-20.07-3.42c-2.74,1.24-5.48,2.48-8.22,3.56-8.2,3.23-17.47,2-25.42-1.36a36.93,36.93,0,0,1-14.87-12Z"/><path class="cls-4" d="M296.41,283.36a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82l1.11-.78c24.36,16.61,56.82,26.66,85,14a37.81,37.81,0,0,0,16.31-13.51Z"/><path class="cls-2" d="M247.28,167.76a105.75,105.75,0,0,1-3,21.68c-3.88,17-10.59,33.93-14,40.28-2.55,4.74-6.23,5.73-12.06,7.27a51.49,51.49,0,0,1-42.51-7.87l-37.09-25.93c-.63-5-1.63-10.21-2.72-15.53-3.17-15.47-7.19-31.84-6-46.4a17,17,0,0,1,5.37-10.83c8.17-8.15,23.75-12.15,33.37-14.88,14.52-4.13,29.48-6.7,43.77-11.55,10.53-3.56,21.85-8.87,28-18.59,0,0,1.38,10.78,1.69,13.24.66,5.08.76,9.49,1.44,14.5a52.06,52.06,0,0,1-.6,16.47c-.73,3.75-1.62,7.49-2.22,11.27-.58,3.62.37,3.65,2.28,6.15C247,152.19,247.35,161.59,247.28,167.76Z"/><path class="cls-5" d="M179.69,141.15c6.1-.11,6.33,9.21.24,9.42h-.28c-6.1.1-6.34-9.22-.24-9.43h.28Z"/><path class="cls-5" d="M229.76,138.49c5.66-.1,5.88,8.55.22,8.74h-.25c-5.66.09-5.88-8.56-.22-8.75h.25Z"/><path class="cls-6" d="M211.61,144.36c0,.2,5,8.43,7.76,17.4a57.71,57.71,0,0,1,2,14.7l-13.51.35"/><path class="cls-5" d="M244.32,189.44c-3.88,17-10.59,33.93-14,40.28-2.55,4.74-6.23,5.73-12.06,7.27a51.49,51.49,0,0,1-42.51-7.87l-37.09-25.93c-.74-5.86-3-11.45-4.39-17.21-.61-2.62-1.16-5.34-.56-8a6.8,6.8,0,0,0,1.8,3.69c4.88,6.3,10.58,13.4,18.51,15.84,8.26,2.54,17.61,2.74,25.42-1.34,6.8-3.55,13.44-8.13,20.56-11.1a35.1,35.1,0,0,1,15-3c7.35.32,10.58,3.55,16.06,7.78,1.79,1.39,3.8,2.84,6.08,2.8C239.74,192.63,242.2,191.15,244.32,189.44Z"/><path class="cls-7" d="M197.89,196a29.74,29.74,0,0,0,20.85-1.74"/><path class="cls-6" d="M164.42,133.57a80.49,80.49,0,0,1,28.1-1.51"/><path class="cls-6" d="M223.45,132.18a55.28,55.28,0,0,1,17.42-1.65"/><path class="cls-6" d="M196.4,172.08a3.4,3.4,0,0,0,2.28,6.33"/><polygon class="cls-5" points="134.96 187.74 135.96 187.66 136.64 188.42 139.14 202.18 138.66 202.37 137.92 201.4 134.96 187.74"/><path class="cls-4" d="M159.44,168.25c-5.35,23.06-18.32,117.88-19,141.48.19-7-54.58-17.11-59.26-24,0,0,34.33-166.88,35.31-182.24.08-1.26,3-13.5,4.71-16.63C150.07,35.12,219.5,30.2,252.75,76.29c.67.93,2.26,7.78,2.89,8.73,1.85,2.78,3.21,5.56,4.81,8.33,9.82,17,10.6,41.25,11.4,60.74,1,24.41,13.94,127.46,13.94,127.46s-34.12,10-34.4,10.06c0,0,1.28-121.58.24-134.13-1-12-3.43-27.55-9.76-38-5-8.22-43.87-6.61-54.51-3.18-14.53,4.68-20.18,17.24-23.55,32.59Q161.68,158.61,159.44,168.25Z"/><path class="cls-8" d="M118.43,84.41A235.81,235.81,0,0,0,196,91.68,232,232,0,0,0,256.92,79.5"/><path class="cls-8" d="M115.1,94a254.59,254.59,0,0,0,82.74,8A241.13,241.13,0,0,0,261.41,89.3"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#f2a196;}.cls-2{fill:url(#linear-gradient);}.cls-3{fill:#e88870;}.cls-4{fill:#00214e;}.cls-5,.cls-7{fill:none;}.cls-5{stroke:#00214e;stroke-miterlimit:10;}.cls-6{fill:#fff;}.cls-8{fill:#845161;}</style><linearGradient id="linear-gradient" x1="69.93" y1="287.28" x2="296.41" y2="287.28" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#16243f"/><stop offset="1" stop-color="#6878b1"/></linearGradient></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M296.41,282.63a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09A44.69,44.69,0,0,0,144.55,224a67.91,67.91,0,0,0,.74-9.91c0-5.72-.31-11.44-.37-17.17q-.06-4.76-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08v.33l12.1,4.92Z"/><path class="cls-2" d="M296.41,282.63a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38,23.55,16.76,55.69,27.33,83.49,14.82,6.62-3,12.7-7.84,16.3-14.06Z"/><path class="cls-3" d="M214.81,249.12c-10.45.63-21-7.48-31.9-13.75-20.41-11.79-32.42-26.94-28.5-43.8l27.88,4.74,31.12,5.3.94,32Z"/><path class="cls-4" d="M262.75,88.46c5.14,20-3.23,38.7-11.3,57-10.21,23.13-24.87,25.88-47.25,33.52-5,1.72-59.22,17.12-59.22,20.48,0-.73-5.31-6-12-12.41-24-22.79-31.89-58-17.61-88.2,19-40.11,75.62-47.28,114.48-37.53,13.4,3.36,26.48,8.66,31.51,22.55C261.88,85.41,262.35,86.94,262.75,88.46Z"/><circle class="cls-1" cx="134.98" cy="159.45" r="17"/><circle class="cls-3" cx="140.38" cy="159.45" r="15.22"/><path class="cls-1" d="M140.6,143.41l4.38,57,66.44,38.82a19.76,19.76,0,0,0,24.68-9.86c9.56-19.58,24.9-50.49,22.88-62-3-17-11-23-11-23l3.33-19.94c1.25-7.51,2.86-15.35,1-22.9-2.13-8.65-8.67-12.35-14.05-18.82-14.16,18.24-37.44,28.55-57.77,39C170,127.23,140.6,143.41,140.6,143.41Z"/><path class="cls-5" d="M215.13,138.55c-.08.34,13.36,36.12,13.36,36.12l-17.94.88"/><path class="cls-5" d="M172.65,131.62a80.57,80.57,0,0,1,28.13-.79"/><path class="cls-5" d="M231.7,131.73a55.64,55.64,0,0,1,17.45-1.21"/><path class="cls-6" d="M192.17,185.55a1.86,1.86,0,0,1,2.68-.5c2.08,1.46,5.88,4.56,11.28,5.63,7.36,1.47,13.74-1.48,15.27.42.86,1.07-.19,2.38-2.2,4.05a19.69,19.69,0,0,1-14.86,3.69c-7.08-1.33-12.4-9.53-12.4-12.44A1.68,1.68,0,0,1,192.17,185.55Z"/><path class="cls-7" d="M123.25,105C142.76,70.44,183.54,49.19,223,53c18.35,1.76,37.82,10,45.47,26.79"/><path class="cls-4" d="M189,141.52c6.11,0,6.11,9.38,0,9.43h-.27c-6.1,0-6.1-9.38,0-9.43H189Z"/><path class="cls-4" d="M239.17,140.13c5.66.05,5.66,8.7,0,8.75h-.25c-5.67,0-5.67-8.7,0-8.75h.25Z"/><path class="cls-8" d="M239,64.3a270.32,270.32,0,0,0-62.3,8.5A270.62,270.62,0,0,0,117.7,94.72c4.46-20.63,24.89-39.67,52.74-46.66S225.28,48.23,239,64.3Z"/></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:#845161;}.cls-3{fill:#69303a;}.cls-4{fill:url(#linear-gradient-2);}.cls-5{fill:#00214e;}.cls-6{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-7{fill:url(#linear-gradient-3);}</style><linearGradient id="linear-gradient" x1="100.63" y1="129.59" x2="274.46" y2="129.59" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#315676"/><stop offset="1" stop-color="#e1b9e0"/></linearGradient><linearGradient id="linear-gradient-2" x1="69.93" y1="298.77" x2="296.41" y2="298.77" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#16243f"/><stop offset="1" stop-color="#6878b1"/></linearGradient><linearGradient id="linear-gradient-3" x1="66.81" y1="112.45" x2="237.28" y2="78.04" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#315676"/><stop offset="0.98" stop-color="#e1b9e0"/></linearGradient></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M262.16,125c.79,8.12,8.29,15.14,6.76,23.14-2.11,11-18.81,13.28-22.34,23.89-2.11,6.31,1.32,13.36-.31,19.81-1.86,7.35-9.69,11.59-17.14,13-11,2-21,1.06-30.94,7-5.28,3.17-9.32,8.14-15,10.61-16.55,7.16-35.93-1.29-47.23-13.86-14.71-16.38-21.47-37.27-25.83-58.44q-1.17-5.7-2.15-11.41c-.09-.53-.19-1.06-.29-1.59-1.8-9.47-5-19.9-6.37-30.1q-.21-1.56-.36-3.12c-1.06-11.07.42-21.72,8.6-30.39a36.33,36.33,0,0,1,31.25-10.83c3.65.54,7.3,1.65,10.95,1.16,6.18-.81,10.79-5.84,15.15-10.28,9.66-9.82,23.21-18.69,36.39-14.7,5.11,1.55,9.69,4.95,15,5.39l.91.05c6.19.12,11.83-3.67,17.37-6.63,5.8-3.1,13.29-5.28,18.63-1.44,9.65,6.93,1.27,22.95,6.07,33.82,2.9,6.57,10.4,10.45,12.57,17.29C277.91,100.18,260.86,111.53,262.16,125Z"/><path class="cls-2" d="M296.41,293.87a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34l1.12-.7c.4-.25.79-.51,1.18-.78a46.54,46.54,0,0,0,14.67-16.47c4-7.55,5.32-15.89,5.38-24.39,0-5.72-.31-11.44-.37-17.17q-.06-4.75-.1-9.51l2,1,5.2,2.69,30.29,5.15,31.12,5.3.94,32,.47,15.87,11.47,4.67,9,3.64Z"/><path class="cls-3" d="M214.35,244.82a60.08,60.08,0,0,1-30.07-2.35c-21.58-7.25-36.11-24.74-37.48-42.76l5.2,2.69,30.29,5.15,31.12,5.3Z"/><path class="cls-4" d="M296.41,293.87a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34c23.68,17.41,56.64,28.75,85.06,16,8.06-3.62,15.33-10.05,18.29-18.31l9,3.64Z"/><circle class="cls-2" cx="121.76" cy="165.14" r="17"/><circle class="cls-3" cx="127.84" cy="163.4" r="17"/><path class="cls-2" d="M206,232.88c-21-.89-71.22-19.8-81.24-60.94a97.83,97.83,0,0,1-2.8-26.21c0-1.73.15-3.45.29-5.14,2.48-28.26,18-51.33,41.13-57a40.14,40.14,0,0,1,4-.78,47.88,47.88,0,0,1,23.94,2.69,66.82,66.82,0,0,1,25.6,17.76A84.8,84.8,0,0,1,225,113.65a96.41,96.41,0,0,1,13.26,30.64C248.3,185.42,221.3,233.52,206,232.88Z"/><path class="cls-5" d="M173.24,146.58c6.1.3,5.71,9.62-.39,9.41h-.28c-6.09-.3-5.7-9.62.4-9.41h.27Z"/><path class="cls-5" d="M223.62,144.86c5.66.28,5.29,8.93-.37,8.74H223c-5.66-.29-5.29-8.93.37-8.74h.25Z"/><path class="cls-6" d="M205.35,144.57a57.66,57.66,0,0,0,1.51,11.56c.9,3.35,2.29,5.46,4.17,8.4a18.17,18.17,0,0,1,1.67,3.06c2.39,6-1.4,12.48-8.07,12.19l-4.13-.17"/><path class="cls-6" d="M176.11,189.76a29.76,29.76,0,0,0,18.12,10.47"/><path class="cls-6" d="M186.22,171.34a3.4,3.4,0,0,0,1.84,6.47"/><path class="cls-6" d="M210.59,132.49a31.17,31.17,0,0,1,22.92-1.19"/><path class="cls-6" d="M158.05,133.18a36.73,36.73,0,0,1,31.24.33"/><path class="cls-7" d="M232.9,92.92c-.9,4.6-4.09,8.5-10,11-5.11,2.18-10.7,2.88-16.08,4.26-7.71,2-12.25,7.8-19.45,10.09-6.16,2-12.74,1.69-19.23,1.92a54,54,0,0,0-8.91.9,52.34,52.34,0,0,0-13.37,5,106.49,106.49,0,0,0-17.29,11.45c-2.6,2.1-5.71,4.72-6.41,8.16-.24,1.18-.31,2.56-1.25,3.32a4.09,4.09,0,0,1-2,.68c-2.91.45-5.92,1-8.29,2.81-1.51-4.27-1.88-9.37-2.64-13.83-.09-.53-.19-1.06-.29-1.59-1.8-9.47-5-19.9-6.37-30.1q-.21-1.56-.36-3.12c-1.06-11.07.42-21.72,8.6-30.39a36.33,36.33,0,0,1,31.25-10.83c3.65.54,7.3,1.65,10.95,1.16l.51-.08c5.93-1,10.4-5.88,14.64-10.2,9.66-9.82,23.21-18.69,36.39-14.7,5.11,1.55,9.69,4.95,15,5.39,3.14.26,1.48,6.05,1.27,8.34-.53,5.81-.88,9.09,2.42,14.35,2.6,4.12,5.67,7.94,8,12.2C232.64,84,233.72,88.74,232.9,92.92Z"/></svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#00214e;}.cls-2{fill:#845161;}.cls-3{fill:#69303a;}.cls-4{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-5{fill:#ff2609;}</style></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M122.06,169.38c-.59-1.4-1.16-2.82-1.69-4.25-13-34.59-7.74-76.87,22.21-100.87,8.26-6.62,15.89-12.24,25.74-16.5,3.06-1.32,6.51-2.58,9.65-1.45s4.89,5.87,2.22,7.86a65.82,65.82,0,0,1,20.5-9.67c4.38-1.19,9.2-1.9,13.36-.07s7.06,7.06,5,11.1c6-2.19,12.45-4.07,18.68-2.72,9.39,2,16.72,16,20.75,24a84.12,84.12,0,0,1,8.62,37c.11,10.64-2.82,21.06-6,31.2-4.46,14.21-9.72,28.63-19.62,39.76C231.38,196,220,199.13,205.59,200c-8.4.51-16.78,1.34-25.16,2.08-4.25.38-8.51.76-12.77,1-3.8.23-7.27,2.16-11.1,2.67a15,15,0,0,1-9.55-1.55,22.34,22.34,0,0,1-5.57-5.28,167.81,167.81,0,0,1-11.29-14.4A91.67,91.67,0,0,1,122.06,169.38Z"/><circle class="cls-2" cx="134.82" cy="161.53" r="17"/><circle class="cls-3" cx="140.68" cy="160.53" r="16"/><path class="cls-2" d="M296.41,284.71a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09c4-7.55,5.32-15.89,5.38-24.39,0-1.74,0-3.49-.06-5.23-.09-4-.27-8-.31-11.94q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.36,12.21.1,3.33v.33l12.1,4.92Z"/><path class="cls-3" d="M214.74,248.08l-1.54.16a51.49,51.49,0,0,1-40.67-14.65l-27.38-31.91c-.09-2.9-.2-.6-.23-3.51q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32Z"/><path class="cls-2" d="M155.85,128.81a80.43,80.43,0,0,0-1,16c-.9-.19-17.43-4.6-17.31-3.22.87,10.36,6.38,50.77,7.43,61l36.42,26.86a51.47,51.47,0,0,0,42.29,8.94c5.87-1.38,9.59-2.29,12.24-7,5.12-9,17.69-39.79,18.51-61.51.23-6.17.08-15.57-3.72-20.82-1.85-2.55-2.8-2.61-2.13-6.21.69-3.76,1.68-7.47,2.51-11.21,2-9.06,2.75-17.46.75-26.74-1.37-6.33-7.47-17.72-7.47-17.72-.81,4.61-8,11.55-14.87,12.94-15.83,3.2-28.73-3.86-44-4.63-6.43-.33-13.21,1.18-18,5.46-3.68,3.27-5.91,7.86-7.63,12.48A80.56,80.56,0,0,0,155.85,128.81Z"/><path class="cls-4" d="M220.19,144.81a56.66,56.66,0,0,0,2,11.49c1,3.31,2.51,5.36,4.52,8.21a19.71,19.71,0,0,1,1.79,3c2.64,5.94-.87,12.53-7.55,12.53h-4.13"/><path class="cls-4" d="M191.16,189.84a29.76,29.76,0,0,0,18.54,9.69"/><path class="cls-4" d="M172.49,133.7a80.34,80.34,0,0,1,28.13-.8"/><path class="cls-4" d="M231.54,133.81A55.35,55.35,0,0,1,249,132.59"/><path class="cls-5" d="M296.41,284.71a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38,23.55,16.76,55.69,27.33,83.49,14.82,6.62-3,12.7-7.84,16.3-14.06Z"/><path class="cls-4" d="M203.49,173a3.4,3.4,0,0,0,2.11,6.38"/><path class="cls-1" d="M188,141.33c6.1,0,6.1,9.38,0,9.43h-.28c-6.1,0-6.1-9.38,0-9.43H188Z"/><path class="cls-1" d="M238.25,141.33c5.66,0,5.66,8.71,0,8.75H238c-5.66,0-5.66-8.7,0-8.75h.26Z"/></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#845161;}.cls-2{fill:#f2a196;}.cls-3{fill:#e88870;}.cls-4{fill:#00214e;}.cls-5,.cls-6{fill:none;stroke-miterlimit:10;}.cls-5{stroke:#fff;}.cls-6{stroke:#00214e;}.cls-7{fill:url(#linear-gradient);}.cls-8{fill:#fff;}</style><linearGradient id="linear-gradient" x1="86.18" y1="272.08" x2="312.66" y2="272.08" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#16243f"/><stop offset="1" stop-color="#6878b1"/></linearGradient></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M198.55,230.49c-10.4-.18-20.81-.68-31.62-1.34-13.47-.83-29.84,2.5-42.7-2.66-12.48-5-20.43-12.93-28.63-23-4.27-5.21-10.86-7.86-17.25-10s-13.06-4.11-18.2-8.47-8.27-11.93-5.33-18c7.23-14.91,30.75-9.93,30.8-32.43,0-7.65-3.41-16.22,1.13-22.38a19.07,19.07,0,0,1,5.54-4.58c10.3-6.35,23.58-5.73,33.8-12,11.54-7.14,9.14-20.65,19.42-30.07a71.87,71.87,0,0,1,11.08-7.94c26.92-16.66,54.75-15.1,82.33.77C253.67,66.9,266.48,82.16,272.51,98c6.69,17.64-6.51,37.25,4.6,52.59,2.52,3.48,5.86,6.3,8.59,9.62,11.44,13.9-6.17,22.46-13.39,31.9-5.79,7.59-4.9,18.69-10.46,26.45-6.45,9-19,10.51-30.09,11.2C220.37,230.51,209.46,230.68,198.55,230.49Z"/><path class="cls-2" d="M312.66,282.21a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34l1.12-.7c.4-.25.79-.51,1.18-.78a46.54,46.54,0,0,0,14.67-16.47c4-7.55,5.32-15.89,5.38-24.39,0-4.67-.19-9.34-.31-14q0-1.58-.06-3.15-.06-4.75-.1-9.51l2,1,5.2,2.69,30.29,5.15,31.12,5.3.91,30.9,0,1.07.47,15.87,11.47,4.67,9,3.64Z"/><path class="cls-3" d="M230.57,225.09c-2.72,1.68-5.29,2.47-7.54,2.23-14.79-1.59-43.64-13.18-61.8-34.63q0-1.58-.06-3.15-.06-4.75-.1-9.51l2,1,5.2,2.69,30.29,5.15,31.12,5.3Z"/><circle class="cls-2" cx="136.07" cy="155.03" r="17"/><circle class="cls-3" cx="142.07" cy="153.03" r="17"/><path class="cls-2" d="M251.61,129.29c11.74,40.69-13.21,89.87-28.54,89.87-21,0-72-16.78-83.73-57.46s3.86-80.92,34.86-89.87S239.86,88.61,251.61,129.29Z"/><path class="cls-4" d="M188.45,137.74c6.1,0,6.1,9.38,0,9.42h-.28c-6.1,0-6.1-9.37,0-9.42h.28Z"/><path class="cls-4" d="M238.71,133.9c5.66,0,5.66,8.7,0,8.75h-.26c-5.66-.05-5.66-8.7,0-8.75h.26Z"/><circle class="cls-5" cx="188.43" cy="142.53" r="19"/><circle class="cls-5" cx="241.57" cy="139.53" r="19"/><path class="cls-1" d="M212.9,75.2c-4.3,18.71-13.69,34.59-30.86,46.15-18.51,12.82-38.07,19-59.39,23.26.54-13.11-.9-31.55,5.86-43.25A79.48,79.48,0,0,1,160.82,71c14.8-7.65,37.71-15.15,54.35-9.84A112,112,0,0,1,212.9,75.2Z"/><path class="cls-6" d="M214.65,131.19c-.08.34,7.92,32.34,7.92,32.34h-12.5"/><path class="cls-6" d="M226.11,121A31.08,31.08,0,0,1,249,118.82"/><path class="cls-6" d="M171,124.67a36.7,36.7,0,0,1,31.22-1"/><line class="cls-5" x1="207.43" y1="142.53" x2="222.57" y2="141.24"/><path class="cls-7" d="M312.66,282.21a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,28.66,28.66,0,0,0,2.22,1.94,95.14,95.14,0,0,0,19.82,11.26,99,99,0,0,0,10.46,3.69,93.52,93.52,0,0,0,33,3.49c1.54-.12,3.09-.27,4.63-.38l.15,5.08V249l12.1,4.92Z"/><path class="cls-8" d="M188.66,174.82a1.86,1.86,0,0,1,2.68-.5c2.08,1.46,5.88,4.56,11.28,5.64,7.36,1.46,13.74-1.48,15.27.41.86,1.07-.19,2.38-2.2,4a19.69,19.69,0,0,1-14.86,3.69c-7.08-1.33-12.4-9.53-12.4-12.43A1.72,1.72,0,0,1,188.66,174.82Z"/></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#f2a196;}.cls-2{fill:#e88870;}.cls-3{fill:#ff2609;}.cls-4{fill:#845161;}.cls-5{fill:#69303a;}.cls-6{fill:#00214e;}.cls-7{fill:none;stroke:#00214e;stroke-miterlimit:10;}</style></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M296.41,291.18a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,67.91,67.91,0,0,0,.74-9.91c0-3.46-.09-6.92-.21-10.38-.07-2.26-.13-4.53-.16-6.79q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08V258l1,.42,11.07,4.5Z"/><path class="cls-2" d="M214.82,258c-3.7.43-10-1-13.48-2.89-13-7.18-19.49-13-26.38-18.08-8.2-6.06-29.8-25.5-29.8-25.5-.07-2.26-.21-3.76-.24-6q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08V258Z"/><path class="cls-3" d="M296.41,291.18a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38,23.55,16.76,55.69,27.33,83.49,14.82,6.62-3,12.7-7.84,16.3-14.06Z"/><path class="cls-4" d="M278.51,90.9c-.09.59-.2,1.17-.33,1.75a32.08,32.08,0,0,1-3.31,8.49l-.08.14c-.57,1-1.18,2-1.84,3a74.32,74.32,0,0,1-5.72,7.35L266,113c-.83.93-1.67,1.84-2.51,2.74,4.45-1,8.76,3.15,9.55,7.63s-1,9-3.21,13c-3.87,7.08-9.45,11.79-14.36,17.94-3.68,4.58-5.72,10-9.73,14.38l-.3.33c-10.59,11.12-27.31,13.72-41.23,18.47-5,1.72-59.22,17.12-59.22,20.48,0-.73-5.31-6-12-12.41-24-22.79-31.89-58-17.61-88.2,15.35-32.5,50.21-55.69,83.41-66.83,10.38-3.48,22.16-5.82,32-1s14.74,19.77,6.58,27.07a26.16,26.16,0,0,1,17.93-5.21,24.46,24.46,0,0,1,15.72,7.07,27,27,0,0,1,6.95,12.08A24.94,24.94,0,0,1,278.51,90.9Z"/><path class="cls-5" d="M278.51,90.9c-.09.59-.2,1.17-.33,1.75-.09.17-.18.35-.27.55-1.13,2.58-1.65,5.36-3,7.94l-.08.14c-.57,1-1.18,2-1.84,3a67.09,67.09,0,0,1-5.72,7.35L266,113c-.83.93-1.67,1.84-2.51,2.74,4.45-1,8.76,3.15,9.55,7.63s-1,9-3.21,13c-3.87,7.08-9.45,11.79-14.36,17.94-3.68,4.58-5.72,10-9.73,14.38a37.7,37.7,0,0,1-8.54-19.47c-1.64-13.26-.64-27.71-1.09-41.13-.28-8.44-3-10,2.06-16.83a74.3,74.3,0,0,1,14-13.29c4.08-2.69,9.33-3.11,14.2-2.42a23.5,23.5,0,0,1,11.58,5A24.94,24.94,0,0,1,278.51,90.9Z"/><circle class="cls-1" cx="134.98" cy="168" r="17"/><circle class="cls-2" cx="140.37" cy="168" r="15.22"/><path class="cls-1" d="M140.6,152l4.38,55,66.44,40.88A19.77,19.77,0,0,0,236.1,238a267.38,267.38,0,0,0,13.14-31.88c2.64-7.84,5.22-15.89,5.47-24.23s-2.12-17-5-24.7c-.3-.81-1.9-3.3-1.76-4.15q1.67-10,3.32-19.94c1.26-7.51,2.87-15.35,1-22.9-2.13-8.66-8.67-12.35-14.05-18.82-14.16,18.24-37.44,28.55-57.77,39C170,135.78,140.6,152,140.6,152Z"/><path class="cls-4" d="M251.07,200.5c-4.31,16.92-9.08,34.35-12.63,40.61-2.66,4.67-6.37,5.57-12.24,7a51.47,51.47,0,0,1-42.29-8.94l-39.09-31.48c-.6-5.89-1-6.79-1.29-12.71-.14-2.68-1-5.36-.36-8a6.9,6.9,0,0,0,1.7,3.73c4.73,6.42,10.25,13.67,18.11,16.31,8.2,2.75,17.53,3.18,25.45-.7,6.89-3.38,13.64-7.79,20.83-10.57a35.05,35.05,0,0,1,15.11-2.61c7.34.5,10.48,3.81,15.85,8.18,1.76,1.44,3.73,2.94,6,3C248.78,204.27,248.91,202.15,251.07,200.5Z"/><path class="cls-6" d="M189.72,149.8c6.1,0,6.1,9.38,0,9.43h-.28c-6.1,0-6.1-9.38,0-9.43h.28Z"/><path class="cls-6" d="M239.84,148.41c5.67.05,5.67,8.7,0,8.75h-.25c-5.66,0-5.66-8.7,0-8.75h.25Z"/><path class="cls-7" d="M215.13,147.09c-.08.35,13.36,36.13,13.36,36.13l-17.94.87"/><path class="cls-7" d="M172.65,140.17a80.57,80.57,0,0,1,28.13-.79"/><path class="cls-7" d="M231.7,140.28a55.34,55.34,0,0,1,17.45-1.21"/><path class="cls-1" d="M209.52,203a28.12,28.12,0,0,0,17.4.32c.61-.19.35-1.16-.26-1a27.17,27.17,0,0,1-16.87-.31c-.61-.21-.87.75-.27,1Z"/></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#f2d4cf;}.cls-2{fill:#f2a196;}.cls-3{fill:#e88870;}.cls-4{fill:url(#linear-gradient);}.cls-5{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-6{fill:#fff;}.cls-7{fill:#00214e;}</style><linearGradient id="linear-gradient" x1="69.93" y1="286.4" x2="296.41" y2="286.4" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#16243f"/><stop offset="1" stop-color="#6878b1"/></linearGradient></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M270.44,208.43S85.12,200,83.18,199.92c-5-6.76.42-22.1,4.31-28.06,6.74-10.32,18.92-17,22.94-28.66,4.63-13.45-3.12-24.06-4.33-36.78C105,94.35,109.87,82,117.85,73,134,55,160.79,46.08,186.66,46.28c13.5.09,26.74,2.67,38.08,7.7,1.38.61,2.72,1.25,4,1.93,1,.53,2,1.09,3,1.68a75.15,75.15,0,0,1,26.95,27.59c7.91,13.84,9.79,26.67,5.16,42-3,9.82-6.73,20-4.87,30,2,11.05,10.54,20,12.78,31C273.19,194.94,272.14,201.86,270.44,208.43Z"/><path class="cls-2" d="M296.41,281.75a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,67.91,67.91,0,0,0,.74-9.91c0-5.72-.31-11.44-.37-17.17q-.06-4.76-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08v.33l12.1,4.92Z"/><path class="cls-3" d="M214.71,246.19a16,16,0,0,1-10.07-1.56L145,195.85c-.07-2.26-.13.11-.16-2.15q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08v.33Z"/><path class="cls-4" d="M296.41,281.75a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38,23.55,16.76,55.69,27.33,83.49,14.82,6.62-3,12.7-7.84,16.3-14.06Z"/><circle class="cls-2" cx="132.97" cy="160.54" r="17"/><circle class="cls-3" cx="138.36" cy="160.29" r="15.22"/><path class="cls-2" d="M137.83,144.25,144.89,201c.18,1.46,11,5.74,12.27,6.41C171.66,215,186.59,225.1,203,227.7c7,1.11,14.35,1,21-1.57,11.72-4.5,13.3-13.32,17.32-23.7a184.21,184.21,0,0,0,8.52-28.81c2-9.4,3.78-22.33-3.12-30.39-.84-1-1.74-1.53-1.57-3,1.46-12.32,3.78-26.26-1.59-37.9-3.5-7.57-9.16-13.94-15.37-19.49,0,0-47.23,35.5-51.52,38C166.44,126.71,137.83,144.25,137.83,144.25Z"/><path class="cls-5" d="M215.17,141c0,.29,12.66,29.82,12.66,29.82l-15,1.45"/><path class="cls-5" d="M169.14,128.61a80.61,80.61,0,0,1,28.06-2.11"/><path class="cls-5" d="M228.28,128.3a55.39,55.39,0,0,1,17.38-2"/><path class="cls-6" d="M191.25,182.07a1.86,1.86,0,0,1,2.66-.62c2.14,1.37,6.08,4.3,11.52,5.13,7.41,1.14,13.67-2.08,15.27-.25.91,1-.08,2.38-2,4.14A19.72,19.72,0,0,1,204,194.81c-7.13-1-12.81-9-12.93-11.88A1.7,1.7,0,0,1,191.25,182.07Z"/><path class="cls-7" d="M186.58,139.76c6.09-.27,6.58,9.05.49,9.41h-.27c-6.1.27-6.59-9.05-.49-9.41h.27Z"/><path class="cls-7" d="M236.74,136.48c5.65-.25,6.11,8.39.45,8.73h-.25c-5.66.25-6.11-8.39-.46-8.73h.26Z"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:#845161;}.cls-3{fill:#69303a;}.cls-4{fill:#f2a196;}.cls-5{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-6{fill:#00214e;}</style><linearGradient id="linear-gradient" x1="151.79" y1="29.09" x2="319.78" y2="29.09" gradientTransform="matrix(1, -0.03, 0.03, 1, -41.38, 105.68)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#315676"/><stop offset="1" stop-color="#e1b9e0"/></linearGradient></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M130.85,182.4c-20.13-31.84-33.35-89.62,2.51-116.6a121.14,121.14,0,0,1,78.49-24c8,.43,16.29,1.77,23.07,6.11s11.73,12.28,10.55,20.24S242.88,78.27,250,81.63A53.36,53.36,0,0,1,266.67,94c5.41,6,9.22,13.85,8.66,21.89-.68,9.69-7.48,18.55-6.47,28.22.76,7.2,5.7,13.16,8.78,19.71a34,34,0,0,1,2.64,22.11c-4.92,20.37-24.62,18.07-41.3,19.7L204.52,209c-9.28.91-18.61.2-27.91,1.63-8.06,1.24-16.85,3.89-24.27-1.07a28.59,28.59,0,0,1-5.93-5.85A208.43,208.43,0,0,1,130.85,182.4Z"/><path class="cls-2" d="M296.41,286.43a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,67.91,67.91,0,0,0,.74-9.91c0-5.72-.31-11.44-.37-17.17q-.06-4.75-.1-9.51l2,1L152,195l2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08v.33l12.1,4.92Z"/><path class="cls-3" d="M214.71,250.87a16,16,0,0,1-10.07-1.56L145,200.54c-.07-2.26-.13.1-.16-2.16q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74L213.3,203l.94,32,.31,10.46.15,5.08v.33Z"/><path class="cls-4" d="M296.41,286.43a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38,23.55,16.76,55.69,27.33,83.49,14.82,6.62-3,12.7-7.84,16.3-14.06Z"/><circle class="cls-2" cx="133.71" cy="165.16" r="17"/><circle class="cls-3" cx="139.1" cy="164.98" r="15.22"/><path class="cls-2" d="M138.77,148.93l6.35,56.86c.16,1.47,10.91,5.89,12.19,6.57,14.4,7.77,29.2,18,45.6,20.84,7,1.19,14.33,1.14,21-1.31,11.77-4.35,13.46-13.16,17.61-23.49a183.23,183.23,0,0,0,8.88-28.7c1-4.53,2.16-9.24,2.32-13.89.19-5.52-1-11.94-4.9-16.05-.91-.95-1.87-2.09-1.69-3.5,1.62-12.3,4.11-26.21-1.12-37.92-3.39-7.61-9-14-15.12-19.68,0,0-47.66,34.9-52,37.33C167.6,131.75,138.77,148.93,138.77,148.93Z"/><path class="cls-5" d="M218.71,155.43a51.14,51.14,0,0,0,5.86,10c1.91,2.32,4.21,3.78,4.24,7.18.06,4.94-4.59,7.81-9.16,7.58"/><path class="cls-5" d="M191.75,193.15a29.8,29.8,0,0,0,18.87,9"/><path class="cls-5" d="M171.15,137.68a80.47,80.47,0,0,1,28.09-1.76"/><path class="cls-5" d="M230.17,135.75a55.49,55.49,0,0,1,17.4-1.81"/><path class="cls-5" d="M203.49,174.63a3.4,3.4,0,0,0,2.33,6.31"/><path class="cls-6" d="M186.9,144.78c6.1-.16,6.43,9.16.33,9.42H187c-6.1.16-6.43-9.16-.33-9.42h.27Z"/><path class="cls-6" d="M237.14,143c5.66-.14,6,8.5.3,8.75h-.26c-5.66.15-6-8.5-.3-8.74h.26Z"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#f2d4cf;}.cls-2{fill:#f2a196;}.cls-3{fill:#e88870;}.cls-4{fill:#00214e;}.cls-5{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-6{fill:#ff2609;}.cls-7{fill:#fff;}</style></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M204.81,257.42a387,387,0,0,1-55.49-9.31c-37-9.22-72.78-25.5-101-51.14,24.9-26,38.47-41,58-71.26,14.48-22.42,32.28-61.84,59.13-72,42.06-15.93,98.88-.45,110.83,46.87,5.06,20,5.25,40.92,2.38,61.26-1.29,9.17-10.57,98.69-15.9,98.61C243.43,260.12,224.05,259.33,204.81,257.42Z"/><path class="cls-2" d="M318,280.37a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34l1.12-.7c.4-.25.79-.51,1.18-.78a46.54,46.54,0,0,0,14.67-16.47c4-7.55,5.32-15.89,5.38-24.39,0-5.72-.31-11.44-.37-17.17q-.06-4.75-.1-9.51l2,1,5.2,2.69,30.29,5.15,31.12,5.3.94,32,.47,15.87,11.47,4.67,9,3.64Z"/><path class="cls-3" d="M235.84,223.23c-2.72,1.68-5.29,2.47-7.54,2.23-14.79-1.59-43.64-13.18-61.8-34.63q0-1.58-.06-3.15-.06-4.76-.1-9.51l2,1,5.2,2.69L203.81,187l31.12,5.3Z"/><circle class="cls-2" cx="141.42" cy="153.19" r="17"/><circle class="cls-3" cx="147.42" cy="151.19" r="17"/><path class="cls-2" d="M257,127.44c11.75,40.69-13.2,89.87-28.54,89.87-21,0-72-16.77-83.73-57.46S148.56,78.93,179.56,70,245.22,86.76,257,127.44Z"/><circle class="cls-4" cx="193.66" cy="140.38" r="15.16"/><circle class="cls-4" cx="245.02" cy="137.94" r="15.16"/><path class="cls-1" d="M225.66,73.05c-4.31,18.71-13.7,34.59-30.86,46.15C176.28,132,155,133.83,133.67,138.06c.54-13.11.83-27.15,7.59-38.85a79.54,79.54,0,0,1,32.31-30.36C188.38,61.2,211.29,53.7,227.92,59A112,112,0,0,1,225.66,73.05Z"/><path class="cls-5" d="M220,129.34c-.08.35,7.92,32.35,7.92,32.35h-12.5"/><path class="cls-5" d="M231.46,119.13A31.18,31.18,0,0,1,254.31,117"/><path class="cls-5" d="M176.35,122.83a36.72,36.72,0,0,1,31.23-1"/><line class="cls-5" x1="205.92" y1="141.27" x2="231.46" y2="139.09"/><path class="cls-6" d="M318,280.37a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,28.66,28.66,0,0,0,2.22,1.94A95.14,95.14,0,0,0,188.19,235a99,99,0,0,0,10.46,3.69,93.52,93.52,0,0,0,33,3.49c1.54-.12,3.09-.27,4.63-.38l.15,5.08v.33l12.1,4.92Z"/><path class="cls-7" d="M194,173a1.86,1.86,0,0,1,2.69-.51c2.07,1.47,5.87,4.56,11.27,5.64,7.36,1.46,13.75-1.48,15.27.42.86,1.07-.19,2.37-2.2,4.05a19.73,19.73,0,0,1-14.85,3.68c-7.09-1.32-12.4-9.53-12.4-12.43A1.65,1.65,0,0,1,194,173Z"/></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#de8276;}.cls-2{fill:#a76962;}.cls-3{fill:url(#linear-gradient);}.cls-4{fill:url(#linear-gradient-2);}.cls-5{fill:#e18477;}.cls-6{fill:none;stroke:#00214e;stroke-miterlimit:10;}.cls-7{fill:#00214e;}</style><linearGradient id="linear-gradient" x1="108.28" y1="122.42" x2="268.26" y2="122.42" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#16243f"/><stop offset="1" stop-color="#6878b1"/></linearGradient><linearGradient id="linear-gradient-2" x1="219.28" y1="72.92" x2="269.19" y2="152.46" xlink:href="#linear-gradient"/></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M296.41,282a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,67.91,67.91,0,0,0,.74-9.91c0-5.72-.31-11.44-.37-17.17q-.06-4.76-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08v.33l12.1,4.92Z"/><path class="cls-2" d="M214.63,248.85a16,16,0,0,1-10.07-1.56l-59.67-48.78c-.07-2.26-.13.11-.16-2.15q-.06-4.76-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32,.31,10.46.15,5.08v.33Z"/><path class="cls-3" d="M245.43,159.9a35.93,35.93,0,0,1-5.09,4.41c-10.4,7.53-24.28,10-36.14,14.06-5,1.71-59.22,17.12-59.22,20.47,0-.73-5.31-6-12-12.4a79.91,79.91,0,0,1-19.56-85.74c10.91-28.67,45.69-48.43,74.82-53,13.87-2.17,30.33-3.38,43.14,3.27,6.55,3.41,12,8.38,17,13.89q2.34,2.61,4.54,5.33c.63.76,1.25,1.52,1.86,2.29C277.55,101.08,269.48,134.63,245.43,159.9Z"/><path class="cls-4" d="M245.43,159.9a35.93,35.93,0,0,1-5.09,4.41,22.42,22.42,0,0,1-1.15-2.3c-2.64-6-4-12.51-5-19A275.93,275.93,0,0,1,231,114.49c-.91-15.34-7.46-22.95,5.57-34.91a43,43,0,0,1,16.35-9.38c.63.76,1.25,1.52,1.86,2.29C277.55,101.08,269.48,134.63,245.43,159.9Z"/><circle class="cls-5" cx="134.98" cy="158.85" r="17"/><circle class="cls-2" cx="140.38" cy="158.85" r="15.22"/><path class="cls-1" d="M141.65,142.73c.83,10.86.8,24.12,1.09,28q1.13,14.59,2.24,29.17l66.44,38.81a19.76,19.76,0,0,0,24.68-9.85c9.56-19.58,24.9-50.5,22.88-62-3-17-11-23-11-23l3.33-19.94c3.37-20.27-3.58-39.46-27.26-41.68-5-.46-10.57.49-13.54,4.48-8,10.76-3.39,24-15.4,34C180.53,132.75,148,138,140.38,128.29,140.38,128.29,141.08,135.16,141.65,142.73Z"/><path class="cls-6" d="M191.51,185.15a29.78,29.78,0,0,0,18.54,9.69"/><path class="cls-6" d="M215.13,137.94c-.08.35,13.36,36.13,13.36,36.13l-17.94.87"/><circle class="cls-7" cx="190.67" cy="150.58" r="15.16"/><circle class="cls-7" cx="242.03" cy="148.13" r="15.16"/><line class="cls-6" x1="202.93" y1="151.47" x2="228.46" y2="149.29"/><path class="cls-6" d="M172.65,131a80.58,80.58,0,0,1,28.13-.8"/><path class="cls-6" d="M231.7,131.13a55,55,0,0,1,17.45-1.21"/><path class="cls-7" d="M296.41,282a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,28.66,28.66,0,0,0,2.22,1.94,95.14,95.14,0,0,0,19.82,11.26,99,99,0,0,0,10.46,3.69,93.52,93.52,0,0,0,33,3.49c1.54-.12,3.09-.27,4.63-.38l.15,5.08v.33l12.1,4.92Z"/><path class="cls-7" d="M186.28,142.24c6.1,0,6.1,9.38,0,9.43H186c-6.11,0-6.11-9.38,0-9.43h.27Z"/><path class="cls-7" d="M236.41,140.85c5.66.05,5.66,8.7,0,8.75h-.26c-5.66,0-5.66-8.7,0-8.75h.26Z"/></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#00214e;}.cls-2{fill:#e18477;}.cls-3{fill:#a76962;}.cls-4,.cls-7{fill:none;stroke-miterlimit:10;}.cls-4{stroke:#00214e;}.cls-5{fill:url(#linear-gradient);}.cls-6{fill:#f2d4cf;}.cls-7{stroke:#f2d4cf;stroke-width:2px;}</style><linearGradient id="linear-gradient" x1="69.93" y1="299.08" x2="296.41" y2="299.08" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#315676"/><stop offset="1" stop-color="#e1b9e0"/></linearGradient></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M278.48,125.53c0,7.87-8.9,14.47-10.84,21.73-2,7.52,2.34,17.67-1.46,24.25s-14.87,8-20.28,13.37-6.71,16.42-13.38,20.28-16.73-.54-24.24,1.47c-7.26,1.94-13.86,10.84-21.74,10.84s-14.47-8.9-21.73-10.84c-7.51-2-17.67,2.34-24.24-1.47s-8-14.86-13.38-20.28-16.42-6.7-20.28-13.37.54-16.73-1.46-24.25c-1.94-7.26-10.84-13.86-10.84-21.73s8.9-14.47,10.84-21.73c2-7.52-2.34-17.67,1.46-24.25s14.87-8,20.28-13.37,6.7-16.42,13.38-20.28,16.73.54,24.24-1.47c7.26-1.94,13.86-10.84,21.73-10.84s14.48,8.9,21.74,10.84c7.51,2,17.66-2.34,24.24,1.47s8,14.86,13.38,20.28,16.42,6.7,20.28,13.37-.55,16.73,1.46,24.25C269.58,111.06,278.48,117.66,278.48,125.53Z"/><circle class="cls-2" cx="134.82" cy="171.25" r="17"/><circle class="cls-3" cx="140.68" cy="170.25" r="16"/><path class="cls-2" d="M296.41,294.43a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09c4-7.55,5.32-15.89,5.38-24.39,0-5.72-.31-11.44-.37-17.17q-.06-4.75-.1-9.51l2,1L152,203l2.41.41,27.88,4.74,31.12,5.3.94,32,.46,15.54v.33l12.1,4.92Z"/><path class="cls-3" d="M214.69,257.38l-1.54.16a51.49,51.49,0,0,1-40.67-14.65L145.1,211.48c-.09-2.9-.2-1.1-.23-4q-.06-4.75-.1-9.51l2,1,5.2,2.69,2.41.41,27.88,4.74,31.12,5.3.94,32Z"/><path class="cls-2" d="M139.93,136.65c-.79,1-1.49,2.95-2.24,6.11-1.73,7.33,5.85,55.46,7.3,69.62l36.42,26.86a51.51,51.51,0,0,0,42.29,8.94c5.87-1.39,9.59-2.29,12.24-7,5.12-9,17.69-39.79,18.51-61.51.23-6.16.08-15.56-3.72-20.82-1.85-2.55-2.8-2.6-2.13-6.21s1.68-7.47,2.51-11.21c2.29-10.33,4.12-22,.81-32.28-1.76-5.5-4.87-9.14-9.29-12.67-4.72-3.78-6.67-3.6-9.5,2-1.91,3.8-3.83,7-7.7,9.16-5.61,3.11-9.43,1.09-15,.66-4.88-.37-4.36,3.4-5.43,7a16.87,16.87,0,0,1-6.77,9.25,18.53,18.53,0,0,1-20,.11,4.75,4.75,0,0,0-2.85-.89c-3.34.18-3.49,4.19-4.25,7.07-1.61,6-8.62,9.32-14.85,8.84C146.12,138.92,142.5,133.26,139.93,136.65Z"/><path class="cls-4" d="M220.19,154.54a57.27,57.27,0,0,0,2,11.48c1,3.31,2.52,5.37,4.52,8.22a18.39,18.39,0,0,1,1.79,3c2.64,5.94-.87,12.53-7.55,12.53h-4.13"/><path class="cls-4" d="M191.16,199.57a29.83,29.83,0,0,0,18.54,9.69"/><path class="cls-4" d="M172.49,143.42a80.57,80.57,0,0,1,28.13-.79"/><path class="cls-4" d="M231.54,143.53A55,55,0,0,1,249,142.32"/><path class="cls-5" d="M296.41,294.43a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38,23.55,16.76,55.69,27.33,83.49,14.82,6.62-3,12.7-7.84,16.3-14.06Z"/><path class="cls-4" d="M203.49,182.73a3.41,3.41,0,0,0,2.11,6.39"/><path class="cls-1" d="M187.17,152.93c6.11,0,6.11,9.38,0,9.43h-.27c-6.1-.05-6.1-9.38,0-9.43h.27Z"/><path class="cls-1" d="M237.44,152.27c5.66,0,5.66,8.7,0,8.75h-.26c-5.66-.05-5.66-8.7,0-8.75h.26Z"/><circle class="cls-6" cx="134.78" cy="170.25" r="6.01"/><path class="cls-6" d="M123.39,184.72c-.38-.06-.76-.13-1.14-.22a14.55,14.55,0,0,1,3.3-28.73h0a.92.92,0,0,1,.42,1.74,14.56,14.56,0,0,0-1.59,24.62A1.43,1.43,0,0,1,123.39,184.72Z"/><path class="cls-7" d="M123.06,157.35a8.76,8.76,0,0,1,6.42.07,8.4,8.4,0,0,1,4.58,5.09,12.89,12.89,0,0,1,.72,5"/></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

@@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 366.34 366.34"><defs><style>.cls-1{fill:#00214e;}.cls-2{fill:#f2a196;}.cls-3{fill:#e88870;}.cls-4,.cls-6{fill:none;stroke-miterlimit:10;}.cls-4{stroke:#00214e;}.cls-5{fill:#f2d4cf;}.cls-6{stroke:#f2d4cf;stroke-width:2px;}.cls-7{fill:url(#linear-gradient);}</style><linearGradient id="linear-gradient" x1="109.87" y1="140.89" x2="166.58" y2="65.41" gradientUnits="userSpaceOnUse"><stop offset="0.29" stop-color="#00214e"/><stop offset="0.51" stop-color="#6878b1"/><stop offset="0.79" stop-color="#00214e"/></linearGradient></defs><title>Artboards_Diversity_Avatars_by_Netguru</title><path class="cls-1" d="M258.38,149.67c-.41-33.19-6.33-69.59-36.31-89.15C195,42.86,158.32,43.72,131.45,61a77.55,77.55,0,0,0-10.22,7.8,105.09,105.09,0,0,0-26.66,39,130.84,130.84,0,0,0-9,54.2c1.67,37.14-2.36,74.39-2.36,111.68,0,1.29,0,2.77,1,3.59a4.27,4.27,0,0,0,3,.59c15.62-.87,29.45-3.57,44.53-6.08,18.8-3.12,39.07-2.23,58.1-3.42,11.33-.66,23.24-2.49,34.57-2,3.61.16,35.22,4.85,35.36,6.8C256.75,231.8,258.89,191,258.38,149.67ZM148,145.49l-14.09-10a130.31,130.31,0,0,0,31.94-16,70.63,70.63,0,0,0,21.84-23l5.71,3.61Z"/><path class="cls-2" d="M296.41,280.37a184.56,184.56,0,0,1-226.48-1l48.66-22.81a47.68,47.68,0,0,0,4.35-2.34l1.12-.7c.4-.25.79-.51,1.18-.78a46.54,46.54,0,0,0,14.67-16.47c4-7.55,5.32-15.89,5.38-24.39,0-4.67-.19-9.34-.31-14q0-1.57-.06-3.15-.06-4.75-.1-9.51l.06,0,1.92,1,5.2,2.69,30.29,5.15,31.12,5.3.74,25,.17,5.9,0,1.07.47,15.87,11.47,4.67,9,3.64Z"/><path class="cls-3" d="M214.15,224.35a12.17,12.17,0,0,1-7.37,2.13C192,224.89,163.14,213.3,145,191.85q0-1.57-.06-3.15c0-1.16,0-2.32,0-3.48l1.92,1,5.2,2.69,30.29,5.15,31.12,5.3Z"/><circle class="cls-2" cx="116.82" cy="153.19" r="17"/><circle class="cls-3" cx="122.82" cy="151.19" r="17"/><path class="cls-2" d="M235.36,127.45c11.74,40.68-13.21,89.87-28.54,89.87-21,0-72-16.78-83.73-57.46S127,78.94,158,70,223.61,86.76,235.36,127.45Z"/><path class="cls-4" d="M177.3,176.87a29.76,29.76,0,0,0,18.54,9.69"/><path class="cls-4" d="M197.92,131.73c0,.2,4.79,8.56,7.32,17.59a57.77,57.77,0,0,1,1.61,14.76H193.34"/><path class="cls-4" d="M210.33,123.22a31.18,31.18,0,0,1,22.85-2.16"/><path class="cls-4" d="M151.19,127.2a36.75,36.75,0,0,1,31.23-1"/><path class="cls-1" d="M168.73,136.06c6.1.05,6.1,9.37,0,9.42h-.28c-6.1,0-6.1-9.37,0-9.42h.28Z"/><path class="cls-1" d="M218.85,134.67c5.67,0,5.67,8.7,0,8.74h-.25c-5.66,0-5.66-8.7,0-8.74h.25Z"/><path class="cls-1" d="M198.93,59.32a113.91,113.91,0,0,1-2.27,14,81,81,0,0,1-9,23.18,70.63,70.63,0,0,1-21.84,23,130.31,130.31,0,0,1-31.94,16c-8.84,3.08-18,3.35-27.46,5.23.31-7.63,0-15.07.94-23.93.7-6.36,2.1-12.43,4.92-17.32a79.54,79.54,0,0,1,32.19-30.3l.12-.06C159.38,61.51,182.29,54,198.93,59.32Z"/><circle class="cls-5" cx="119.32" cy="153.15" r="6.01"/><path class="cls-5" d="M107.92,167.62c-.37-.06-.75-.13-1.13-.22a14.55,14.55,0,0,1,3.29-28.73h0a.92.92,0,0,1,.42,1.74,14.55,14.55,0,0,0-1.6,24.62A1.43,1.43,0,0,1,107.92,167.62Z"/><path class="cls-6" d="M107.6,140.25a8.76,8.76,0,0,1,6.42.07,8.4,8.4,0,0,1,4.58,5.09,12.89,12.89,0,0,1,.72,5"/><path class="cls-5" d="M296.41,280.37a184.56,184.56,0,0,1-226.48-1l48.66-22.81a46.83,46.83,0,0,0,6.65-3.82c.64-.44,1.28-.9,1.89-1.38a46.35,46.35,0,0,0,12.78-15.09,44.69,44.69,0,0,0,4.64-14.48,28.66,28.66,0,0,0,2.22,1.94A95.14,95.14,0,0,0,166.59,235a99,99,0,0,0,10.46,3.69,93.52,93.52,0,0,0,33,3.49c1.54-.12,3.09-.27,4.63-.38l.15,5.08v.33l12.1,4.92Z"/><path class="cls-7" d="M187.64,96.54a70.63,70.63,0,0,1-21.84,23,130.31,130.31,0,0,1-31.94,16l-26.52-18.7-12.77-9a105.09,105.09,0,0,1,26.66-39A77.55,77.55,0,0,1,131.45,61l13,8.22Z"/></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

Some files were not shown because too many files have changed in this diff Show More